Don't build 32bit userland if BASE_ONLY is set.
This commit is contained in:
parent
270aa319d1
commit
d98ba1486a
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue