From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Thomas Schmitt" Subject: bug#33639: ISO installer image is broken on i686 Date: Sat, 13 Apr 2019 18:20:57 +0200 Message-ID: <3867672606037906126@scdbackup.webframe.org> References: <20190413134609.kwmx53hyawgtaaza@pelzflorian.localdomain> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:53143) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hFLNr-0005sM-P1 for bug-guix@gnu.org; Sat, 13 Apr 2019 12:20:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hFLNq-0006Z5-Rb for bug-guix@gnu.org; Sat, 13 Apr 2019 12:20:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45425) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hFLNq-0006Z1-Nd for bug-guix@gnu.org; Sat, 13 Apr 2019 12:20:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20190413134609.kwmx53hyawgtaaza@pelzflorian.localdomain> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: bug-xorriso@gnu.org Cc: 33639@debbugs.gnu.org Hi, Florian Pelz wrote: > Yes, it seems fixed, I can confirm. Way back in december, Ludovic Court=C3=A8s wrote: >...> Based on this and on a suggestion Ricardo made on IRC, I passed >...> -padding 10m and that solved the problem. \o/ Please do not forget to remove this -padding command. Florian Pelz wrote: > The content is different at the beginning of the ISO image > (maybe padding or timestamps in the file system) That's to expect if not environment SOURCE_DATE_EPOCH is set and exported. SOURCE_DATE_EPOCH belongs to the specs of reproducible-builds.org. It is supposed to be either undefined or to contain a decimal number which tells the seconds since january 1st 1970. If it contains a number, then it is used for all timestamps and as seed of pseudo-random numbers like MBR id or GPT UUIDs. If all files and directories have the same names and the same content, then xorriso runs with the same arguments and the same SOURCE_DATE_EPOCH value are supposed to create byte-identical result ISOs. In december, i wrote: >...> > Creation Time: 1970010119010649 Ludovic Court=C3=A8s wrote: >...> For reproducibility purposes we set timestamps and related things >...> to the Epoch. Is this independent of SOURCE_DATE_EPOCH ? Have a nice day :) Thomas