X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/m1-debian/blobdiff_plain/029bb7dcd2710446ccc6f9c067e158173e05a4f4..877db5341dc9d71a55eacaf30e83b47459949ceb:/m1n1_uboot_kernel.sh diff --git a/m1n1_uboot_kernel.sh b/m1n1_uboot_kernel.sh index 2346db3..a3e381e 100644 --- a/m1n1_uboot_kernel.sh +++ b/m1n1_uboot_kernel.sh @@ -16,13 +16,23 @@ source "$(pwd)/build/cargo/env" unset LC_CTYPE unset LANG +handle_crosscompile() +{ + if [ "`uname -m`" != 'aarch64' ]; then + export ARCH=arm64 + export CROSS_COMPILE=aarch64-linux-gnu- + sudo apt install -y libc6-dev-arm64-cross + fi +} + build_linux() { ( + handle_crosscompile test -d linux || git clone https://github.com/AsahiLinux/linux cd linux git fetch -a -t - git reset --hard asahi-6.1-rc8-3; + git reset --hard asahi-6.1-2; cat ../../config.txt > .config make LLVM=-15 rustavailable make LLVM=-15 olddefconfig @@ -44,6 +54,7 @@ build_m1n1() build_uboot() { ( + handle_crosscompile test -d u-boot || git clone https://github.com/AsahiLinux/u-boot cd u-boot git fetch -a -t