Fix initrd breaking by recent repeatable-builds changes

See the comments at f67015cae4
for more information.

Please note: this makes initrd unrepeatable again, but most people will prefer that above an unbootable system.
This commit is contained in:
Mathijs Kwik 2014-04-11 23:20:49 +02:00
parent 5a3fa7f88f
commit b21853f255

View file

@ -11,9 +11,6 @@ my $IN = \*STDIN;
my $ino = 1;
$cpio->read_with_handler($IN, sub {
my ($e) = @_;
$e->{inode} = $ino;
$ino++;
$e->{nlink} = 1;
$e->{mtime} = 1;
$cpio->write_one(\*STDOUT, $e);
});