image: hurd: Create hurd-compatible ext2 file-system.
This is a follow-up to commit b904b59ce5
.
* gnu/system/images/hurd.scm (hurd-disk-image): Add file-system-options to
create an ext2 file-system that is compatible with the Hurd.
master
parent
ffecb2396f
commit
fd932862ac
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com>
|
;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||||
|
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -66,6 +67,7 @@
|
||||||
(offset root-offset)
|
(offset root-offset)
|
||||||
(label root-label)
|
(label root-label)
|
||||||
(file-system "ext2")
|
(file-system "ext2")
|
||||||
|
(file-system-options '("-o" "hurd" "-O" "ext_attr"))
|
||||||
(flags '(boot))
|
(flags '(boot))
|
||||||
(initializer (gexp initialize-root-partition)))))))
|
(initializer (gexp initialize-root-partition)))))))
|
||||||
|
|
||||||
|
|
Reference in New Issue