Don't build 32bit userland if BASE_ONLY is set.

This commit is contained in:
fewtarius 2022-04-10 07:27:57 -04:00
parent 270aa319d1
commit d98ba1486a
No known key found for this signature in database
GPG key ID: F4AE55305D1B8C1A

View file

@ -40,6 +40,11 @@ then
make image
elif [ "${ARCH}" == "arm" ]
then
if [ "${BASE_ONLY}" = true ]
then
echo "Skipping 32bit."
exit 0
fi
scripts/build_compat
scripts/install arm32
fi