image: Enhance compatibility of the root ext4 partition.
Generating a raw-with-offset image would previously not be bootable with U-Boot. * gnu/system/image.scm (root-partition) [file-system-options]: New field.master
parent
7c476873e0
commit
60d4652c5d
|
@ -138,6 +138,9 @@ parent image record."
|
|||
(size 'guess)
|
||||
(label root-label)
|
||||
(file-system "ext4")
|
||||
;; Disable the metadata_csum and 64bit features of ext4, for compatibility
|
||||
;; with U-Boot.
|
||||
(file-system-options (list "-O" "^metadata_csum,^64bit"))
|
||||
(flags '(boot))
|
||||
(initializer (gexp initialize-root-partition))))
|
||||
|
||||
|
|
Reference in New Issue