summaryrefslogtreecommitdiff
path: root/gnu/build
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2023-08-20 02:00:00 +0200
committerChristopher Baines <mail@cbaines.net>2024-06-29 12:01:55 +0100
commitbf8b71eda40b6b1d90752b487b35bb1cde3a13d7 (patch)
tree33f4ec07a8424e05e97cc276c0b475b36b289737 /gnu/build
parent5249e3e20e78ef8da7630cd8da7ffc4cee9efeef (diff)
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.
Diffstat (limited to 'gnu/build')
-rw-r--r--gnu/build/image.scm14
1 files changed, 6 insertions, 8 deletions
diff --git a/gnu/build/image.scm b/gnu/build/image.scm
index 49dc01c0d1..6ca0a428e0 100644
--- a/gnu/build/image.scm
+++ b/gnu/build/image.scm
@@ -328,18 +328,16 @@ GRUB configuration and OS-DRV as the stuff in it."
"-volume_date" "all_file_dates" "=1"
`(,@(if compression?
- '(;; ‘zisofs’ compression reduces the total image size by
- ;; ~60%.
+ '(;; ‘zisofs’ compression reduces the total image size by ~60%.
"-zisofs" "level=9:block_size=128k" ; highest compression
;; It's transparent to our Linux-Libre kernel but not to
- ;; GRUB. Don't compress the kernel, initrd, and other
- ;; files read by grub.cfg, as well as common
- ;; already-compressed file names.
+ ;; GRUB. Don't compress the kernel, initrd, and other files
+ ;; read by grub.cfg, as well as common already-compressed
+ ;; file names.
"-find" "/" "-type" "f"
;; XXX Even after "--" above, and despite documentation
- ;; claiming otherwise, "-or" is stolen by grub-mkrescue
- ;; which then chokes on it (as ‘-o …’) and dies. Don't use
- ;; "-or".
+ ;; claiming otherwise, "-or" is stolen by grub-mkrescue which
+ ;; then chokes on it (as ‘-o …’) and dies. Don't use "-or".
"-not" "-wholename" "/boot/*"
"-not" "-wholename" "/System/*"
"-not" "-name" "unicode.pf2"