From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33648) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dmoDu-0006Kk-UT for guix-patches@gnu.org; Tue, 29 Aug 2017 17:39:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dmoDu-0004XT-4m for guix-patches@gnu.org; Tue, 29 Aug 2017 17:39:02 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:52517) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dmoDu-0004XN-14 for guix-patches@gnu.org; Tue, 29 Aug 2017 17:39:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dmoDt-0005Te-OO for guix-patches@gnu.org; Tue, 29 Aug 2017 17:39:01 -0400 Subject: [bug#28145] [PATCH] build: Do not store two copies of the ISO-9660 superblock anymore. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170819024656.17036-1-dannym@scratchpost.org> <877exv699r.fsf@gnu.org> <20170829074902.1688b3c5@scratchpost.org> Date: Tue, 29 Aug 2017 23:38:02 +0200 In-Reply-To: <20170829074902.1688b3c5@scratchpost.org> (Danny Milosavljevic's message of "Tue, 29 Aug 2017 07:49:02 +0200") Message-ID: <87val6qclh.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Danny Milosavljevic Cc: 28145@debbugs.gnu.org Danny Milosavljevic skribis: > Hi Ludo, > > On Tue, 22 Aug 2017 15:07:28 +0200 > ludo@gnu.org (Ludovic Court=C3=A8s) wrote: >> Danny Milosavljevic skribis: >>=20 >> > * gnu/build/vm.scm (make-iso9660-image): Do not store two copies of the >> > ISO-9660 superblock anymore.=20=20 >>=20 >> Why is it no longer needed? Otherwise fine with me. :-) > > Because we went ahead and now we just read it from the whole disk on boot= (previously, it only accepted superblocks on partitions, remember?). > > Previously on master: > > - DVD > + ISO9660 superblock > + partition table > + partition > + ISO9660 superblock copy <--- GuixSD sees this > > Now on master: > > - DVD > + ISO9660 superblock <--- GuixSD sees this > + partition table > + partition > + ISO9660 superblock copy <--- what's this for now? > > With the patch: > > - DVD > + ISO9660 superblock <--- GuixSD sees this > + partition table > + partition Thanks for the explanation, got it now. Ludo=E2=80=99.