+ sudo chroot . apt update
+ sudo chroot . apt install -y m1n1 linux-image-asahi
+ sudo chroot . apt clean
+ sudo rm var/lib/apt/lists/* || true
+)
+}
+
+build_live_stick()
+{
+(
+ rm -rf live-stick
+ mkdir -p live-stick/efi/boot live-stick/efi/debian/
+ sudo cp ../files/wifi.pl testing/etc/rc.local
+ sudo bash -c 'cd testing; find . | cpio --quiet -H newc -o | pigz -9 > ../live-stick/initrd.gz'
+ cp testing/usr/lib/grub/arm64-efi/monolithic/grubaa64.efi live-stick/efi/boot/bootaa64.efi
+ cp testing/boot/vmlinuz* live-stick/vmlinuz
+ cp ../files/grub.cfg live-stick/efi/debian/grub.cfg
+ (cd live-stick; tar cf ../asahi-debian-live.tar .)
+)
+}