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