3 # SPDX-License-Identifier: MIT
15 export DEBOOTSTRAP
=debootstrap
23 sudo eatmydata
${DEBOOTSTRAP} --cache-dir=`pwd`/cache
--arch=arm64
--include initramfs-tools
,pciutils
,wpasupplicant
,tcpdump
,vim
,tmux
,vlan
,ntpdate
,parted
,curl
,wget
,grub-efi-arm64
,mtr-tiny
,dbus
,ca-certificates
,sudo
,openssh-client
,mtools
,gdisk
,cryptsetup testing testing http
://deb.debian.org
/debian
27 sudo mkdir
-p boot
/efi
29 sudo bash
-c 'echo debian > etc/hostname'
31 sudo bash
-c 'echo > etc/motd'
33 sudo
cp ..
/..
/files
/sources.list etc
/apt
/sources.list
34 sudo
cp ..
/..
/files
/hosts etc
/hosts
35 sudo
cp ..
/..
/files
/resolv.conf etc
/resolv.conf
36 sudo
cp ..
/..
/files
/quickstart.txt root
/
37 sudo
cp ..
/..
/files
/interfaces etc
/network
/interfaces
38 sudo
cp ..
/..
/files
/wpa.conf etc
/wpa_supplicant
/wpa_supplicant.conf
39 sudo
cp ..
/..
/files
/rc.
local etc
/rc.
local
41 sudo bash
-c 'chroot . apt update'
42 sudo bash
-c 'chroot . apt install -y firmware-linux'
44 sudo
-- perl
-p -i -e 's/root:x:/root::/' etc
/passwd
46 sudo
-- ln -s lib
/systemd
/systemd init
48 sudo
cp ..
/${KERNEL} .
49 sudo chroot . dpkg
-i ${KERNEL}
52 sudo bash
-c 'chroot . apt-get clean'
60 mkdir
-p live-stick
/efi
/boot live-stick
/efi
/debian
/
61 sudo
cp ..
/files
/wifi.pl testing
/etc
/rc.
local
62 sudo bash
-c 'cd testing; find . | cpio --quiet -H newc -o | pigz -9 > ../live-stick/initrd.gz'
63 cp testing
/usr
/lib
/grub
/arm64-efi
/monolithic
/grubaa64.efi live-stick
/efi
/boot
/bootaa64.efi
64 cp testing
/boot
/vmlinuz
* live-stick
/vmlinuz
65 cp ..
/files
/grub.cfg live-stick
/efi
/debian
/grub.cfg
66 (cd live-stick
; tar cf ..
/asahi-debian-live.
tar .
)
74 mkdir
-p EFI
/boot EFI
/debian
75 cp testing
/usr
/lib
/grub
/arm64-efi
/monolithic
/grubaa64.efi EFI
/boot
/bootaa64.efi
77 export INITRD
=`ls -1 testing/boot/ | grep initrd`
78 export VMLINUZ
=`ls -1 testing/boot/ | grep vmlinuz`
79 export UUID
=`blkid -s UUID -o value media`
80 cat > EFI
/debian
/grub.cfg
<<EOF
81 search.fs_uuid ${UUID} root
82 linux (\$root)/boot/${VMLINUZ} root=UUID=${UUID} rw
83 initrd (\$root)/boot/${INITRD}
90 build_asahi_installer_image
()
96 cp u-boot.bin aii
/esp
/m1n
1/boot.bin
99 zip -r9 ..
/debian-base.
zip esp media
105 sudo
cp efi.tgz asahi-debian-live.
tar debian-base.
zip /u
/
111 sudo apt-get
install -y build-essential bash git locales gcc-aarch64-linux-gnu libc6-dev device-tree-compiler imagemagick ccache eatmydata debootstrap pigz libncurses-dev qemu-user-static binfmt-support rsync git flex bison
bc kmod
cpio libncurses5-dev libelf-dev
:native libssl-dev dwarves
118 build_asahi_installer_image