diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2017-09-22 04:01:41 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2017-09-22 04:03:52 +0200 |
commit | b43b9acf15ae06e15ee581927056952c7c88c193 (patch) | |
tree | 765bdaadd5a84a2f12a7f01a2d3a8cadbc367075 /gnu/build | |
parent | 0920205391133463329406cbbb2782774a95a08b (diff) | |
download | patches-b43b9acf15ae06e15ee581927056952c7c88c193.tar patches-b43b9acf15ae06e15ee581927056952c7c88c193.tar.gz |
build: Do not store two copies of the ISO-9660 superblock anymore.
* gnu/build/vm.scm (make-iso9660-image): Do not store two copies of the
ISO-9660 superblock anymore.
Diffstat (limited to 'gnu/build')
-rw-r--r-- | gnu/build/vm.scm | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm index 6da4fa654e..7537f81509 100644 --- a/gnu/build/vm.scm +++ b/gnu/build/vm.scm @@ -406,19 +406,6 @@ GRUB configuration and OS-DRV as the stuff in it." ;; filesystem, so create it. "mnt=/tmp/root/mnt" "--" - ;; Store two copies of the headers. - ;; The resulting ISO-9660 image has a DOS MBR and - ;; one protective partition (with type 0xCD). - ;; Because GuixSD only uses actual partitions - ;; rather than what /proc/partitions returns, work - ;; around it by storing the primary volume - ;; descriptor twice, once where it should be and - ;; once in the partition. - ;; Allegedly, otherwise, many other GNU tools - ;; (automounters etc) would also be confused by - ;; the extra partition so it makes sense to - ;; store two copies in any case. - "-boot_image" "any" "partition_offset=16" "-volid" ,(string-upcase volume-id) ,@(if volume-uuid `("-volume_date" "uuid" |