]>
Commit | Line | Data |
---|---|---|
aa226713 TG |
1 | #!/bin/bash |
2 | ||
3 | set -x | |
4 | set -e | |
5 | ||
6 | unset LC_CTYPE | |
7 | unset LANG | |
8 | ||
9 | build_linux() | |
10 | { | |
11 | ( | |
12 | test -d linux || git clone https://github.com/jannau/linux -b asahi-dcp | |
13 | cd linux | |
14 | git fetch | |
15 | git reset --hard asahi-dcp; git clean -f -x -d | |
16 | curl -s https://tg.st/u/5nly | git am - | |
17 | curl -s https://tg.st/u/0wM8 | git am - | |
18 | curl -s https://tg.st/u/m1-dcp-2022-01-30-config > .config | |
19 | make olddefconfig | |
20 | make -j 16 bindeb-pkg | |
21 | ) | |
22 | } | |
23 | ||
24 | mkdir -p build/dcp | |
25 | cd build/dcp | |
26 | ||
27 | build_linux |