diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-08-20 02:00:00 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:46 +0200 |
commit | a97ca00a5dcf7bcce6e9ec04557d02d65d80732f (patch) | |
tree | 8d17f6a986619c97f9b68db53cdb07a3d8a87265 /gnu/build/image.scm | |
parent | 3db653a2c235207b347849200eeb3f89bb4ba513 (diff) | |
download | guix-a97ca00a5dcf7bcce6e9ec04557d02d65d80732f.tar.gz guix-a97ca00a5dcf7bcce6e9ec04557d02d65d80732f.zip |
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/image.scm')
-rw-r--r-- | gnu/build/image.scm | 14 |
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" |