diff options
author | Jan (janneke) Nieuwenhuizen <janneke@gnu.org> | 2020-06-25 18:54:42 +0200 |
---|---|---|
committer | Jan (janneke) Nieuwenhuizen <janneke@gnu.org> | 2020-06-25 22:52:09 +0200 |
commit | fd932862ac4b464bd2642be114f73ee39c1ad64f (patch) | |
tree | f55c34f2d8e29de7e8b444495233c379568ae085 /gnu/system/images | |
parent | ffecb2396fb19f2dd27ac5850dbb8294eb637e55 (diff) |
image: hurd: Create hurd-compatible ext2 file-system.
This is a follow-up to commit b904b59ce592c89dfb4675a8c06757afed6738a0.
* gnu/system/images/hurd.scm (hurd-disk-image): Add file-system-options to
create an ext2 file-system that is compatible with the Hurd.
Diffstat (limited to 'gnu/system/images')
-rw-r--r-- | gnu/system/images/hurd.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/system/images/hurd.scm b/gnu/system/images/hurd.scm index 4417f03cc8..e5e120d49c 100644 --- a/gnu/system/images/hurd.scm +++ b/gnu/system/images/hurd.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com> +;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -66,6 +67,7 @@ (offset root-offset) (label root-label) (file-system "ext2") + (file-system-options '("-o" "hurd" "-O" "ext_attr")) (flags '(boot)) (initializer (gexp initialize-root-partition))))))) |