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