]>
Commit | Line | Data |
---|---|---|
2df410ee TG |
1 | #!/bin/bash |
2 | ||
605f3b2d TG |
3 | # SPDX-License-Identifier: MIT |
4 | ||
2df410ee TG |
5 | set -x |
6 | set -e | |
7 | ||
8 | unset LC_CTYPE | |
9 | unset LANG | |
10 | ||
0bffa1b0 TG |
11 | export DEBOOTSTRAP=debootstrap |
12 | ||
13 | handle_crosscompile() | |
14 | { | |
15 | if [ "`uname -m`" != 'aarch64' ]; then | |
16 | export ARCH=arm64 | |
17 | export CROSS_COMPILE=aarch64-linux-gnu- | |
18 | export DEBOOTSTRAP=qemu-debootstrap | |
19 | fi | |
20 | } | |
21 | ||
e4c546cc TG |
22 | build_linux() |
23 | { | |
24 | ( | |
0bffa1b0 | 25 | handle_crosscompile |
8bc111cf | 26 | test -d linux || git clone --depth 1 https://github.com/AsahiLinux/linux -b asahi |
e4c546cc TG |
27 | cd linux |
28 | git fetch | |
8bc111cf | 29 | git reset --hard origin/asahi; git clean -f -x -d &> /dev/null |
6620d516 | 30 | curl -s https://tg.st/u/40c9642c7569c52189f84621316fc9149979ee65.patch | git am - |
9da10e82 | 31 | curl -s https://tg.st/u/0001-4k-iommu-patch-2022-03-11.patch | git am - |
847e4ed8 | 32 | curl -s https://tg.st/u/WQRL.patch | git am - |
6e2c4207 | 33 | curl -s https://tg.st/u/config-2022-03-17-distro-sven-jannau.txt > .config |
e4c546cc | 34 | make olddefconfig |
4f1af1fb | 35 | make -j `nproc` V=0 bindeb-pkg > /dev/null |
e4c546cc TG |
36 | ) |
37 | } | |
38 | ||
5920ad39 TG |
39 | build_m1n1() |
40 | { | |
41 | ( | |
42 | test -d m1n1 || git clone --recursive https://github.com/AsahiLinux/m1n1.git | |
43 | cd m1n1 | |
44 | git fetch | |
240d7e8b | 45 | git reset --hard origin/main; git clean -f -x -d &> /dev/null |
9d00677c | 46 | make -j `nproc` |
5920ad39 TG |
47 | ) |
48 | } | |
49 | ||
50 | build_uboot() | |
51 | { | |
52 | ( | |
0bffa1b0 | 53 | handle_crosscompile |
0c225228 | 54 | test -d u-boot || git clone --depth 1 https://github.com/AsahiLinux/u-boot |
5920ad39 | 55 | cd u-boot |
d0071c0b | 56 | git fetch |
d024d4c7 | 57 | git reset --hard origin/asahi; git clean -f -x -d &> /dev/null |
4f72d3c7 | 58 | curl -s https://tg.st/u/102777230b057efa00fe39c7e545e13ddead1177.patch | git am - |
5920ad39 | 59 | make apple_m1_defconfig |
9d00677c | 60 | make -j `nproc` |
5920ad39 TG |
61 | ) |
62 | ||
2726c310 TG |
63 | 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 |
64 | cat m1n1/build/m1n1.macho `find linux/arch/arm64/boot/dts/apple/ -name \*.dtb` <(gzip -c u-boot/u-boot-nodtb.bin) > u-boot.macho | |
5920ad39 TG |
65 | } |
66 | ||
f325b48f | 67 | build_rootfs() |
ce8ebd75 TG |
68 | { |
69 | ( | |
0bffa1b0 | 70 | handle_crosscompile |
350079f4 | 71 | sudo rm -rf testing |
ae43a6ec | 72 | mkdir -p cache |
a636dc48 | 73 | 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 testing testing http://deb.debian.org/debian |
ce8ebd75 | 74 | |
08045305 TG |
75 | export KERNEL=`ls -1rt linux-image*.deb | grep -v dbg | tail -1` |
76 | ||
ce8ebd75 TG |
77 | cd testing |
78 | ||
a6fc4794 | 79 | sudo mkdir -p boot/efi |
60b2ebc1 | 80 | |
16cad30f | 81 | sudo bash -c 'echo debian > etc/hostname' |
f325b48f | 82 | |
350079f4 | 83 | sudo bash -c 'echo > etc/motd' |
ce8ebd75 | 84 | |
08045305 TG |
85 | sudo cp ../../files/sources.list etc/apt/sources.list |
86 | sudo cp ../../files/hosts etc/hosts | |
8d82f6b0 | 87 | sudo cp ../../files/resolv.conf etc/resolv.conf |
08045305 | 88 | sudo cp ../../files/quickstart.txt root/ |
da7dd4b8 | 89 | sudo cp ../../files/interfaces etc/network/interfaces |
7a54df2e | 90 | sudo cp ../../files/wpa.conf etc/wpa_supplicant/wpa_supplicant.conf |
b96f460f | 91 | sudo cp ../../files/rc.local etc/rc.local |
ce8ebd75 | 92 | |
f325b48f | 93 | sudo bash -c 'chroot . apt update' |
0bffa1b0 | 94 | sudo bash -c 'chroot . apt install -y firmware-linux' |
ce8ebd75 TG |
95 | |
96 | sudo -- perl -p -i -e 's/root:x:/root::/' etc/passwd | |
97 | ||
f325b48f | 98 | sudo -- ln -s lib/systemd/systemd init |
ce8ebd75 | 99 | |
08045305 TG |
100 | sudo cp ../${KERNEL} . |
101 | sudo chroot . dpkg -i ${KERNEL} | |
102 | sudo rm ${KERNEL} | |
ce8ebd75 | 103 | |
60cb512a | 104 | sudo bash -c 'chroot . apt-get clean' |
ce8ebd75 TG |
105 | ) |
106 | } | |
5920ad39 | 107 | |
bca3e283 | 108 | build_live_stick() |
f325b48f TG |
109 | { |
110 | ( | |
bca3e283 TG |
111 | rm -rf live-stick |
112 | mkdir -p live-stick/efi/boot live-stick/efi/debian/ | |
f493aec2 TG |
113 | sudo cp ../files/wifi.pl testing/etc/rc.local |
114 | sudo bash -c 'cd testing; find . | cpio --quiet -H newc -o | pigz -9 > ../live-stick/initrd.gz' | |
bca3e283 TG |
115 | cp testing/usr/lib/grub/arm64-efi/monolithic/grubaa64.efi live-stick/efi/boot/bootaa64.efi |
116 | cp testing/boot/vmlinuz* live-stick/vmlinuz | |
117 | cp ../files/grub.cfg live-stick/efi/debian/grub.cfg | |
7a54df2e | 118 | (cd live-stick; tar cf ../asahi-debian-live.tar .) |
f325b48f TG |
119 | ) |
120 | } | |
5920ad39 | 121 | |
50ef4b20 | 122 | build_dd() |
088368ea TG |
123 | { |
124 | ( | |
125 | rm -f media | |
19e0ac3c | 126 | dd if=/dev/zero of=media bs=1 count=0 seek=2G |
088368ea | 127 | mkdir -p mnt |
743b1c81 | 128 | mkfs.ext4 media |
088368ea TG |
129 | tune2fs -O extents,uninit_bg,dir_index -m 0 -c 0 -i 0 media |
130 | sudo mount -o loop media mnt | |
131 | sudo cp -a testing/* mnt/ | |
132 | sudo rm mnt/init | |
133 | sudo umount mnt | |
f493aec2 | 134 | tar cf - media | pigz -9 > m1.tgz |
088368ea TG |
135 | ) |
136 | } | |
137 | ||
0ffed154 TG |
138 | build_efi() |
139 | { | |
140 | ( | |
7da211a3 | 141 | rm -rf EFI |
60b2ebc1 | 142 | mkdir -p EFI/boot EFI/debian |
0ffed154 TG |
143 | cp testing/usr/lib/grub/arm64-efi/monolithic/grubaa64.efi EFI/boot/bootaa64.efi |
144 | ||
145 | export INITRD=`ls -1 testing/boot/ | grep initrd` | |
146 | export VMLINUZ=`ls -1 testing/boot/ | grep vmlinuz` | |
eb57d280 | 147 | export UUID=`blkid -s UUID -o value media` |
60b2ebc1 | 148 | cat > EFI/debian/grub.cfg <<EOF |
0ffed154 | 149 | search.fs_uuid ${UUID} root |
60b2ebc1 TG |
150 | linux (\$root)/boot/${VMLINUZ} root=UUID=${UUID} rw |
151 | initrd (\$root)/boot/${INITRD} | |
0ffed154 TG |
152 | boot |
153 | EOF | |
154 | tar czf efi.tgz EFI | |
155 | ) | |
156 | } | |
157 | ||
5d41b6d6 TG |
158 | build_asahi_installer_image() |
159 | { | |
304bd206 TG |
160 | ( |
161 | rm -rf aii | |
1cf0f22b | 162 | mkdir -p aii/esp/m1n1 |
304bd206 | 163 | cp -a EFI aii/esp/ |
1cf0f22b | 164 | cp u-boot.bin aii/esp/m1n1/boot.bin |
304bd206 TG |
165 | ln media aii/media |
166 | cd aii | |
1cf0f22b | 167 | zip -r9 ../debian-base.zip esp media |
304bd206 | 168 | ) |
5d41b6d6 TG |
169 | } |
170 | ||
569d551a TG |
171 | build_di_stick() |
172 | { | |
173 | rm -rf di-stick | |
03d47296 | 174 | mkdir -p di-stick/efi/boot di-stick/efi/debian/ |
de907bb6 TG |
175 | rm -f initrd.gz |
176 | wget https://d-i.debian.org/daily-images/arm64/daily/netboot/debian-installer/arm64/initrd.gz | |
03d47296 TG |
177 | sudo rm -rf initrd; mkdir initrd; (cd initrd; gzip -cd ../initrd.gz | sudo cpio -imd --quiet) |
178 | sudo rm -rf initrd/lib/modules/* | |
179 | sudo cp -a testing/lib/modules/* initrd/lib/modules/ | |
4acf5b00 TG |
180 | sudo cp ../files/wifi.sh initrd/ |
181 | sudo cp ../files/boot.sh initrd/ | |
f493aec2 | 182 | (cd initrd; find . | cpio --quiet -H newc -o | pigz -9 > ../di-stick/initrd.gz) |
03d47296 TG |
183 | sudo rm -rf initrd |
184 | cp testing/usr/lib/grub/arm64-efi/monolithic/grubaa64.efi di-stick/efi/boot/bootaa64.efi | |
185 | cp testing/boot/vmlinuz* di-stick/vmlinuz | |
186 | cp ../files/grub.cfg di-stick/efi/debian/grub.cfg | |
7a54df2e TG |
187 | export KERNEL=`ls -1rt linux-image*.deb | grep -v dbg | tail -1` |
188 | cp ${KERNEL} di-stick/ | |
189 | (cd di-stick; tar cf ../m1-d-i.tar .) | |
569d551a TG |
190 | } |
191 | ||
3b4d866f | 192 | publish_artefacts() |
bb14d862 TG |
193 | { |
194 | export KERNEL=`ls -1rt linux-image*.deb | grep -v dbg | tail -1` | |
195 | cp ${KERNEL} k.deb | |
6e2c4207 | 196 | sudo cp m1-d-i.tar m1.tgz efi.tgz asahi-debian-live.tar u-boot.bin u-boot.macho k.deb m1n1/build/m1n1.bin m1n1/build/m1n1.macho testing/usr/lib/grub/arm64-efi/monolithic/grubaa64.efi debian-base.zip /u/ |
bb14d862 TG |
197 | } |
198 | ||
08045305 TG |
199 | mkdir -p build |
200 | cd build | |
201 | ||
7cf1e21d | 202 | sudo apt-get install -y build-essential bash git locales gcc-aarch64-linux-gnu libc6-dev-arm64-cross 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 |
0bffa1b0 | 203 | |
bc45a4cc | 204 | build_linux |
6859a054 TG |
205 | build_m1n1 |
206 | build_uboot | |
207 | build_rootfs | |
793f7339 | 208 | #build_di_stick |
6859a054 TG |
209 | build_dd |
210 | build_efi | |
211 | build_asahi_installer_image | |
212 | build_live_stick | |
213 | publish_artefacts |