make -j `nproc`
)
cat m1n1/build/m1n1.bin `find linux/arch/arm64/boot/dts/apple/ -name \*.dtb` <(gzip -c u-boot/u-boot-nodtb.bin) > u-boot.bin
- sudo cp /boot/efi/m1n1/boot.bin /boot/efi/m1n1/`date +%Y%m%d%H%M`.bin
- sudo cp u-boot.bin /boot/efi/m1n1/boot.bin
}
mkdir -p build
# This was taken from the linux-image-5.16.0-3-arm64-unsigned
# Than it was copied as .config in the asahi tree
# Than make olddefconfig was executed twice
-my @lines = `cat config`;
+my @lines = `cat .config`;
chomp @lines;
my %asahi_options = (
}
}
-open(CONFIG, '>', 'config.new') || die;
+open(CONFIG, '>', '.config') || die;
for (keys %debian_options) {
print CONFIG $_ . '=' . $debian_options{$_} . "\n";
}