We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d17230 commit 43f4498Copy full SHA for 43f4498
1 file changed
scripts/build-linux-deb.sh
@@ -72,11 +72,13 @@ touch kernel/configs/local.config
72
for c in ${EXTRA_CONFIGS}; do
73
echo "${c}" >>kernel/configs/local.config
74
done
75
-ARCH=arm64 make "${CONFIG}" local.config
+make ARCH=arm64 "${CONFIG}" local.config
76
77
log_i "Building Linux deb"
78
# TODO: build other packages?
79
-ARCH=arm64 make -j$(nproc) bindeb-pkg
+make -j$(nproc) \
80
+ ARCH=arm64 DEB_HOST_ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- \
81
+ bindeb-pkg
82
83
ls
84
ls ..
0 commit comments