GNU bug report logs -
#31757
'guix system disk-image --format=iso9660' includes more than the OS closure
Previous Next
Reported by: ludo <at> gnu.org (Ludovic Courtès)
Date: Fri, 8 Jun 2018 13:24:01 UTC
Severity: important
Done: ludo <at> gnu.org (Ludovic Courtès)
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#31757: 'guix system disk-image --format=iso9660' includes more than the OS closure
which was filed against the guix package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 31757 <at> debbugs.gnu.org.
--
31757: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=31757
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
ludo <at> gnu.org (Ludovic Courtès) skribis:
> Turns out ‘guix system disk-image --format=iso9660’ includes not sure
> the closure of the given OS, but everything that’s in the build
> environment’s store. So typically, we end up with QEMU and all in
> addition to the store’s closure.
Fixed in 718d44cc9ff1a7e97b4e4ce028cc273c2e20cf93.
Ludo’.
[Message part 3 (message/rfc822, inline)]
Hey hey!
Turns out ‘guix system disk-image --format=iso9660’ includes not sure
the closure of the given OS, but everything that’s in the build
environment’s store. So typically, we end up with QEMU and all in
addition to the store’s closure.
This stems from the fact that ‘make-iso9660-image’ does:
--8<---------------cut here---------------start------------->8---
(apply invoke
`(,grub-mkrescue "-o" ,target
,(string-append "boot/grub/grub.cfg=" config-file)
,(string-append "gnu/store=" os-drv "/..")
"etc=/tmp/root/etc"
"var=/tmp/root/var"
"run=/tmp/root/run"
;; /mnt is used as part of the installation
;; process, as the mount point for the target
;; file system, so create it.
"mnt=/tmp/root/mnt"
"--"
"-volid" ,(string-upcase volume-id)
,@(if volume-uuid
`("-volume_date" "uuid"
,(string-filter (lambda (value)
(not (char=? #\- value)))
(iso9660-uuid->string
volume-uuid)))
`())))
--8<---------------cut here---------------end--------------->8---
The “gnu/store=…” argument means we’re adding the whole store to the ISO.
Ludo’.
This bug report was last modified 6 years and 334 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.