summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2023-08-20 02:00:00 +0200
committerLudovic Courtès <ludo@gnu.org>2024-08-31 10:42:46 +0200
commita97ca00a5dcf7bcce6e9ec04557d02d65d80732f (patch)
tree8d17f6a986619c97f9b68db53cdb07a3d8a87265
parent3db653a2c235207b347849200eeb3f89bb4ba513 (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.
-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 49dc01c0d18..6ca0a428e0a 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."
328 "-volume_date" "all_file_dates" "=1" 328 "-volume_date" "all_file_dates" "=1"
329 329
330 `(,@(if compression? 330 `(,@(if compression?
331 '(;; ‘zisofs’ compression reduces the total image size by 331 '(;; ‘zisofs’ compression reduces the total image size by ~60%.
332 ;; ~60%.
333 "-zisofs" "level=9:block_size=128k" ; highest compression 332 "-zisofs" "level=9:block_size=128k" ; highest compression
334 ;; It's transparent to our Linux-Libre kernel but not to 333 ;; It's transparent to our Linux-Libre kernel but not to
335 ;; GRUB. Don't compress the kernel, initrd, and other 334 ;; GRUB. Don't compress the kernel, initrd, and other files
336 ;; files read by grub.cfg, as well as common 335 ;; read by grub.cfg, as well as common already-compressed
337 ;; already-compressed file names. 336 ;; file names.
338 "-find" "/" "-type" "f" 337 "-find" "/" "-type" "f"
339 ;; XXX Even after "--" above, and despite documentation 338 ;; XXX Even after "--" above, and despite documentation
340 ;; claiming otherwise, "-or" is stolen by grub-mkrescue 339 ;; claiming otherwise, "-or" is stolen by grub-mkrescue which
341 ;; which then chokes on it (as ‘-o …’) and dies. Don't use 340 ;; then chokes on it (as ‘-o …’) and dies. Don't use "-or".
342 ;; "-or".
343 "-not" "-wholename" "/boot/*" 341 "-not" "-wholename" "/boot/*"
344 "-not" "-wholename" "/System/*" 342 "-not" "-wholename" "/System/*"
345 "-not" "-name" "unicode.pf2" 343 "-not" "-name" "unicode.pf2"