]>
Commit | Line | Data |
---|---|---|
aae6cdc3 | 1 | #!/usr/bin/env bash |
2df410ee | 2 | |
605f3b2d TG |
3 | # SPDX-License-Identifier: MIT |
4 | ||
aae6cdc3 TG |
5 | set -o errexit |
6 | set -o nounset | |
7 | set -o pipefail | |
8 | set -o xtrace | |
9 | ||
10 | cd "$(dirname "$0")" | |
2df410ee TG |
11 | |
12 | unset LC_CTYPE | |
13 | unset LANG | |
14 | ||
0bffa1b0 TG |
15 | export DEBOOTSTRAP=debootstrap |
16 | ||
f325b48f | 17 | build_rootfs() |
ce8ebd75 TG |
18 | { |
19 | ( | |
350079f4 | 20 | sudo rm -rf testing |
ae43a6ec | 21 | mkdir -p cache |
1b1d2dae | 22 | 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,wireless-regdb testing testing http://deb.debian.org/debian |
ce8ebd75 TG |
23 | |
24 | cd testing | |
25 | ||
adfb7d3e | 26 | sudo mkdir -p boot/efi/m1n1 etc/X11/xorg.conf.d |
60b2ebc1 | 27 | |
16cad30f | 28 | sudo bash -c 'echo debian > etc/hostname' |
f325b48f | 29 | |
350079f4 | 30 | sudo bash -c 'echo > etc/motd' |
ce8ebd75 | 31 | |
08045305 | 32 | sudo cp ../../files/sources.list etc/apt/sources.list |
62ba1d23 TG |
33 | sudo cp ../../files/glanzmann.list etc/apt/sources.list.d/ |
34 | sudo cp ../../files/thomas-glanzmann.gpg etc/apt/trusted.gpg.d/ | |
08045305 | 35 | sudo cp ../../files/hosts etc/hosts |
8d82f6b0 | 36 | sudo cp ../../files/resolv.conf etc/resolv.conf |
08045305 | 37 | sudo cp ../../files/quickstart.txt root/ |
da7dd4b8 | 38 | sudo cp ../../files/interfaces etc/network/interfaces |
7a54df2e | 39 | sudo cp ../../files/wpa.conf etc/wpa_supplicant/wpa_supplicant.conf |
b96f460f | 40 | sudo cp ../../files/rc.local etc/rc.local |
adfb7d3e | 41 | sudo cp ../../files/30-modeset.conf etc/X11/xorg.conf.d/30-modeset.conf |
eeaa52fd | 42 | sudo cp ../../files/blacklist.conf etc/modprobe.d/ |
ce8ebd75 | 43 | |
8895ecac TG |
44 | sudo perl -p -i -e 's/"quiet"/"net.ifnames=0"/ if /^GRUB_CMDLINE_LINUX_DEFAULT=/' etc/default/grub |
45 | ||
f325b48f | 46 | sudo bash -c 'chroot . apt update' |
0bffa1b0 | 47 | sudo bash -c 'chroot . apt install -y firmware-linux' |
ce8ebd75 TG |
48 | |
49 | sudo -- perl -p -i -e 's/root:x:/root::/' etc/passwd | |
50 | ||
f325b48f | 51 | sudo -- ln -s lib/systemd/systemd init |
ce8ebd75 | 52 | |
62ba1d23 TG |
53 | sudo chroot . apt update |
54 | sudo chroot . apt install -y m1n1 linux-image-asahi | |
adfb7d3e | 55 | sudo chroot . apt clean |
cccfe6d5 | 56 | sudo rm var/lib/apt/lists/* || true |
ce8ebd75 TG |
57 | ) |
58 | } | |
5920ad39 | 59 | |
bca3e283 | 60 | build_live_stick() |
f325b48f TG |
61 | { |
62 | ( | |
bca3e283 TG |
63 | rm -rf live-stick |
64 | mkdir -p live-stick/efi/boot live-stick/efi/debian/ | |
f493aec2 | 65 | sudo cp ../files/wifi.pl testing/etc/rc.local |
7803524c | 66 | sudo bash -c 'cd testing; find . | cpio --quiet -H newc -o | zstd -T0 -16 > ../live-stick/initrd.zstd' |
bca3e283 TG |
67 | cp testing/usr/lib/grub/arm64-efi/monolithic/grubaa64.efi live-stick/efi/boot/bootaa64.efi |
68 | cp testing/boot/vmlinuz* live-stick/vmlinuz | |
69 | cp ../files/grub.cfg live-stick/efi/debian/grub.cfg | |
7a54df2e | 70 | (cd live-stick; tar cf ../asahi-debian-live.tar .) |
f325b48f TG |
71 | ) |
72 | } | |
5920ad39 | 73 | |
adfb7d3e TG |
74 | build_dd() |
75 | { | |
76 | ( | |
77 | rm -f media | |
78 | dd if=/dev/zero of=media bs=1 count=0 seek=2G | |
79 | mkdir -p mnt | |
80 | mkfs.ext4 media | |
81 | tune2fs -O extents,uninit_bg,dir_index -m 0 -c 0 -i 0 media | |
82 | sudo mount -o loop media mnt | |
83 | sudo cp -a testing/* mnt/ | |
84 | sudo rm -rf mnt/init mnt/boot/efi/m1n1 | |
85 | sudo umount mnt | |
86 | tar cf - media | pigz -9 > m1.tgz | |
87 | ) | |
88 | } | |
89 | ||
5d41b6d6 TG |
90 | build_asahi_installer_image() |
91 | { | |
304bd206 TG |
92 | ( |
93 | rm -rf aii | |
1cf0f22b | 94 | mkdir -p aii/esp/m1n1 |
304bd206 | 95 | cp -a EFI aii/esp/ |
adfb7d3e | 96 | cp testing/usr/lib/m1n1/boot.bin aii/esp/m1n1/boot.bin |
304bd206 TG |
97 | ln media aii/media |
98 | cd aii | |
1cf0f22b | 99 | zip -r9 ../debian-base.zip esp media |
304bd206 | 100 | ) |
5d41b6d6 TG |
101 | } |
102 | ||
3b4d866f | 103 | publish_artefacts() |
bb14d862 | 104 | { |
877db534 | 105 | echo upload build/asahi-debian-live.tar build/debian-base.zip |
bb14d862 TG |
106 | } |
107 | ||
08045305 TG |
108 | mkdir -p build |
109 | cd build | |
110 | ||
7803524c | 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 zstd |
0bffa1b0 | 112 | |
6859a054 | 113 | build_rootfs |
adfb7d3e | 114 | build_dd |
6859a054 TG |
115 | build_asahi_installer_image |
116 | build_live_stick | |
f77f8aca | 117 | publish_artefacts |