X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/m1-debian/blobdiff_plain/af1fbe8f7a68d726d1b929f3bc38ed80dc5d85f3..e5a3ffbe79597596cf5987286a0711c00d65a047:/m1n1_uboot_kernel.sh diff --git a/m1n1_uboot_kernel.sh b/m1n1_uboot_kernel.sh index 9e9b90b..5536715 100644 --- a/m1n1_uboot_kernel.sh +++ b/m1n1_uboot_kernel.sh @@ -24,11 +24,12 @@ build_linux() test -d linux || git clone https://github.com/AsahiLinux/linux cd linux git fetch -a -t - git reset --hard asahi-6.5-13 + git reset --hard asahi-6.5-15 + git clean -f -x -d > /dev/null cat ../../config.txt > .config - make LLVM=${CLANG_VERSION} rustavailable - make LLVM=${CLANG_VERSION} olddefconfig - make -j `nproc` LLVM=${CLANG_VERSION} V=0 bindeb-pkg > /dev/null + make LLVM=-15 rustavailable + make LLVM=-15 olddefconfig + make -j `nproc` LLVM=-15 V=0 bindeb-pkg > /dev/null ) } @@ -49,7 +50,7 @@ build_uboot() test -d u-boot || git clone https://github.com/AsahiLinux/u-boot cd u-boot git fetch -a -t - git reset --hard asahi-v2023.07.02-2; + git reset --hard asahi-v2023.07.02-3 make apple_m1_defconfig make -j `nproc` @@ -90,12 +91,6 @@ EOF ) } -if type clang-15; then - export CLANG_VERSION=-15 -elif type clang-11; then - export CLANG_VERSION=-11 -fi - mkdir -p build cd build