mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: image: Reformat comments.
I wrote these to fit on their lines, so the pointless widows bug me. * gnu/build/image.scm (make-iso9660-image): M-q comments.
This commit is contained in:
parent
3db653a2c2
commit
a97ca00a5d
1 changed files with 6 additions and 8 deletions
|
@ -328,18 +328,16 @@ (define grub-mkrescue-sed.sh
|
||||||
"-volume_date" "all_file_dates" "=1"
|
"-volume_date" "all_file_dates" "=1"
|
||||||
|
|
||||||
`(,@(if compression?
|
`(,@(if compression?
|
||||||
'(;; ‘zisofs’ compression reduces the total image size by
|
'(;; ‘zisofs’ compression reduces the total image size by ~60%.
|
||||||
;; ~60%.
|
|
||||||
"-zisofs" "level=9:block_size=128k" ; highest compression
|
"-zisofs" "level=9:block_size=128k" ; highest compression
|
||||||
;; It's transparent to our Linux-Libre kernel but not to
|
;; It's transparent to our Linux-Libre kernel but not to
|
||||||
;; GRUB. Don't compress the kernel, initrd, and other
|
;; GRUB. Don't compress the kernel, initrd, and other files
|
||||||
;; files read by grub.cfg, as well as common
|
;; read by grub.cfg, as well as common already-compressed
|
||||||
;; already-compressed file names.
|
;; file names.
|
||||||
"-find" "/" "-type" "f"
|
"-find" "/" "-type" "f"
|
||||||
;; XXX Even after "--" above, and despite documentation
|
;; XXX Even after "--" above, and despite documentation
|
||||||
;; claiming otherwise, "-or" is stolen by grub-mkrescue
|
;; claiming otherwise, "-or" is stolen by grub-mkrescue which
|
||||||
;; which then chokes on it (as ‘-o …’) and dies. Don't use
|
;; then chokes on it (as ‘-o …’) and dies. Don't use "-or".
|
||||||
;; "-or".
|
|
||||||
"-not" "-wholename" "/boot/*"
|
"-not" "-wholename" "/boot/*"
|
||||||
"-not" "-wholename" "/System/*"
|
"-not" "-wholename" "/System/*"
|
||||||
"-not" "-name" "unicode.pf2"
|
"-not" "-name" "unicode.pf2"
|
||||||
|
|
Loading…
Reference in a new issue