From e4d5f3b064d69eb51168c9341b38308b51a62cde Mon Sep 17 00:00:00 2001 From: Thomas Glanzmann Date: Thu, 8 Dec 2022 21:12:20 +0100 Subject: [PATCH] enable autofs in mps kernel config --- config-gpu.txt | 2 +- gpu.sh | 15 ++------------- 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/config-gpu.txt b/config-gpu.txt index 0a7a0d5..4a8dc0d 100644 --- a/config-gpu.txt +++ b/config-gpu.txt @@ -5543,7 +5543,7 @@ CONFIG_FANOTIFY=y CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y # CONFIG_QUOTA is not set # CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set +CONFIG_AUTOFS_FS=m CONFIG_FUSE_FS=m CONFIG_CUSE=m CONFIG_VIRTIO_FS=m diff --git a/gpu.sh b/gpu.sh index 4789b2c..51ac4de 100644 --- a/gpu.sh +++ b/gpu.sh @@ -12,16 +12,6 @@ cd "$(dirname "$0")" unset LC_CTYPE unset LANG -handle_crosscompile() -{ - if [ "`uname -m`" != 'aarch64' ]; then - export ARCH=arm64 - export CROSS_COMPILE=aarch64-linux-gnu- - export DEBOOTSTRAP=qemu-debootstrap - sudo apt install -y libc6-dev-arm64-cross - fi -} - build_linux() { ( @@ -31,8 +21,8 @@ build_linux() git reset --hard asahi-6.1-rc8-3; source "$HOME/.cargo/env" cat ../../config-gpu.txt > .config - make LLVM=-14 olddefconfig - make -j `nproc` LLVM=-14 V=0 bindeb-pkg > /dev/null + make LLVM=-15 olddefconfig + make -j `nproc` LLVM=-15 V=0 bindeb-pkg > /dev/null ) } @@ -64,7 +54,6 @@ build_uboot() mkdir -p build cd build -handle_crosscompile build_linux build_m1n1 build_uboot -- 2.39.2