From f325b48f70743dd460120126d2c56a1a9a5f0195 Mon Sep 17 00:00:00 2001 From: Thomas Glanzmann Date: Tue, 25 Jan 2022 13:46:04 +0100 Subject: [PATCH] working on the stick --- bootstrap.sh | 52 ++++++++++++++++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 20 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 6c4d615..36347b6 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -48,46 +48,58 @@ build_linux() ) } -build_initrd() +build_rootfs() { ( - - rm -rf testing - sudo eatmydata debootstrap --arch=arm64 --include iwd,tcpdump,vim,tmux,vlan,firmware-linux,ntpdate,bridge-utils,parted,curl,wget,grub-efi-arm64 testing testing http://ftp.fau.de/debian + sudo rm -rf testing + sudo eatmydata debootstrap --arch=arm64 --include iwd,tcpdump,vim,tmux,vlan,ntpdate,bridge-utils,parted,curl,wget,grub-efi-arm64,mtr-tiny testing testing http://ftp.fau.de/debian cd testing - sudo -c 'echo live > etc/hostname' + sudo bash -c 'echo live > etc/hostname' + + sudo bash -c 'echo > etc/motd' - sudo -c 'echo > etc/motd' + sudo bash -c 'echo "deb http://deb.debian.org/debian testing main contrib non-free" > etc/apt/sources.list' + sudo bash -c 'echo "deb-src http://deb.debian.org/debian testing main contrib non-free" >> etc/apt/sources.list' - sudo -c 'echo "deb http://deb.debian.org/debian testing main contrib non-free" > /etc/apt/sources.list' - sudo -c 'echo "deb-src http://deb.debian.org/debian testing main contrib non-free" > /etc/apt/sources.list' + sudo bash -c 'chroot . apt update' + sudo bash -c 'chroot . apt install -y firmware-linux' sudo -- perl -p -i -e 's/root:x:/root::/' etc/passwd - sudo ln -s lib/systemd/systemd init + sudo -- ln -s lib/systemd/systemd init sudo cp ../linux-image-5.16.0-asahi-next-20220118-gdcd14bb2ec40_5.16.0-asahi-next-20220118-gdcd14bb2ec40-1_arm64.deb . sudo chroot . dpkg -i linux-image-5.16.0-asahi-next-20220118-gdcd14bb2ec40_5.16.0-asahi-next-20220118-gdcd14bb2ec40-1_arm64.deb sudo rm linux-image-5.16.0-asahi-next-20220118-gdcd14bb2ec40_5.16.0-asahi-next-20220118-gdcd14bb2ec40-1_arm64.deb - ) } -# build_stick() -# { -# ( -# # find . | cpio --quiet -H newc -o | pigz > ../stick/initrd.gz -# # cp /boot/efi/EFI/BOOT/BOOTAA64.EFI efi/boot/ -# # cp /boot/vmlinuz-5.16.0-asahi-next-20220118-14779-ga4d177b3ad21-dirty vmlinuz -# ) -# } +build_stick() +{ +( + rm -rf stick + mkdir -p stick/efi/boot + sudo bash -c 'cd testing; find . | cpio --quiet -H newc -o | pigz > ../stick/initrd.gz' + cp testing/usr/lib/grub/arm64-efi/monolithic/grubaa64.efi stick/efi/boot/bootaa64.efi + cp testing/boot/vmlinuz* stick/vmlinuz + + cat > stick/efi/boot/grub.cfg <