From 6a1d2ed250763bf8b96afa26879cb1a90978ee91 Mon Sep 17 00:00:00 2001 From: Thomas Glanzmann Date: Wed, 14 Dec 2022 17:05:53 +0100 Subject: [PATCH] reenable crosscompile --- m1n1_uboot_kernel.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/m1n1_uboot_kernel.sh b/m1n1_uboot_kernel.sh index ace17ac..a3e381e 100644 --- a/m1n1_uboot_kernel.sh +++ b/m1n1_uboot_kernel.sh @@ -16,9 +16,19 @@ 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 @@ -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 -- 2.39.2