]>
Commit | Line | Data |
---|---|---|
9ac5deac TG |
1 | #!/usr/bin/env bash |
2 | ||
3 | # SPDX-License-Identifier: MIT | |
4 | ||
5 | set -o errexit | |
6 | set -o nounset | |
7 | set -o pipefail | |
8 | set -o xtrace | |
9 | ||
10 | cd "$(dirname "$0")" | |
11 | ||
9eed8ca6 TG |
12 | export CARGO_HOME="$(pwd)/build/cargo" |
13 | export RUSTUP_HOME="$(pwd)/build/rust" | |
14 | source "$(pwd)/build/cargo/env" | |
15 | ||
9ac5deac TG |
16 | unset LC_CTYPE |
17 | unset LANG | |
18 | ||
6a1d2ed2 TG |
19 | handle_crosscompile() |
20 | { | |
21 | if [ "`uname -m`" != 'aarch64' ]; then | |
22 | export ARCH=arm64 | |
23 | export CROSS_COMPILE=aarch64-linux-gnu- | |
24 | sudo apt install -y libc6-dev-arm64-cross | |
25 | fi | |
26 | } | |
27 | ||
9ac5deac TG |
28 | build_linux() |
29 | { | |
30 | ( | |
6a1d2ed2 | 31 | handle_crosscompile |
9ac5deac TG |
32 | test -d linux || git clone https://github.com/AsahiLinux/linux |
33 | cd linux | |
34 | git fetch -a -t | |
983712fb | 35 | git reset --hard asahi-6.4-6; |
b19a86ba | 36 | curl https://tg.st/u/0001-remove-debug-spam.patch | git am - |
7dcd418b | 37 | cat ../../config.txt > .config |
e7515ac0 TG |
38 | make LLVM=${CLANG_VERSION} rustavailable |
39 | make LLVM=${CLANG_VERSION} olddefconfig | |
40 | make -j `nproc` LLVM=${CLANG_VERSION} V=0 bindeb-pkg > /dev/null | |
9ac5deac TG |
41 | ) |
42 | } | |
43 | ||
44 | build_m1n1() | |
45 | { | |
46 | ( | |
47 | test -d m1n1 || git clone --recursive https://github.com/AsahiLinux/m1n1 | |
48 | cd m1n1 | |
49 | git fetch -a -t | |
983712fb | 50 | git reset --hard v1.3.2; |
9ac5deac TG |
51 | make -j `nproc` |
52 | ) | |
53 | } | |
54 | ||
55 | build_uboot() | |
56 | { | |
57 | ( | |
6a1d2ed2 | 58 | handle_crosscompile |
9ac5deac TG |
59 | test -d u-boot || git clone https://github.com/AsahiLinux/u-boot |
60 | cd u-boot | |
61 | git fetch -a -t | |
983712fb | 62 | git reset --hard asahi-v2023.07.02-2; |
9ac5deac TG |
63 | |
64 | make apple_m1_defconfig | |
65 | make -j `nproc` | |
66 | ) | |
67 | 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 | |
9ac5deac TG |
68 | } |
69 | ||
ce492006 TG |
70 | package_boot_bin() |
71 | { | |
72 | ( | |
983712fb | 73 | export M1N1_VERSION=1.3.2 |
59b40e06 TG |
74 | rm -rf m1n1_${M1N1_VERSION}_arm64 |
75 | mkdir -p m1n1_${M1N1_VERSION}_arm64/DEBIAN m1n1_${M1N1_VERSION}_arm64/usr/lib/m1n1/ | |
76 | cp u-boot.bin m1n1_${M1N1_VERSION}_arm64/usr/lib/m1n1/boot.bin | |
77 | cat <<EOF > m1n1_${M1N1_VERSION}_arm64/DEBIAN/control | |
ce492006 TG |
78 | Package: m1n1 |
79 | Version: $M1N1_VERSION | |
80 | Section: base | |
81 | Priority: optional | |
82 | Architecture: arm64 | |
83 | Maintainer: Thomas Glanzmann <thomas@glanzmann.de> | |
84 | Description: Apple silicon boot loader | |
85 | Next to m1n1 this also contains the device trees and u-boot. | |
86 | EOF | |
87 | ||
d201f029 | 88 | cat > m1n1_${M1N1_VERSION}_arm64/DEBIAN/postinst <<'EOF' |
ce492006 TG |
89 | #!/bin/bash |
90 | ||
91 | export PATH=/bin | |
b5a41dd1 TG |
92 | if [ -f /boot/efi/m1n1/boot.bin ]; then |
93 | cp /boot/efi/m1n1/boot.bin /boot/efi/m1n1/`date +%Y%m%d%H%M`.bin | |
94 | fi | |
95 | mkdir -p /boot/efi/m1n1/ | |
ce492006 TG |
96 | cp /usr/lib/m1n1/boot.bin /boot/efi/m1n1/ |
97 | EOF | |
98 | ||
59b40e06 TG |
99 | chmod 755 m1n1_${M1N1_VERSION}_arm64/DEBIAN/postinst |
100 | dpkg-deb --build m1n1_${M1N1_VERSION}_arm64 | |
cd6d1106 | 101 | ) |
ce492006 TG |
102 | } |
103 | ||
e7515ac0 TG |
104 | if type clang-15; then |
105 | export CLANG_VERSION=-15 | |
106 | elif type clang-11; then | |
107 | export CLANG_VERSION=-11 | |
108 | fi | |
109 | ||
9ac5deac TG |
110 | mkdir -p build |
111 | cd build | |
112 | ||
5a6d8c66 | 113 | build_linux |
029bb7dc TG |
114 | build_m1n1 |
115 | build_uboot | |
116 | package_boot_bin |