make.sh: add rk3326 aarch32 build support

Change-Id: Ibfc6a40b5d0decbffdbf4e797459da189484ce88
Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
This commit is contained in:
Joseph Chen 2019-05-23 10:21:11 +08:00 committed by Jianhong Chen
parent 5202fe1fb4
commit 039bc38d48
1 changed files with 5 additions and 2 deletions

View File

@ -413,10 +413,13 @@ fixup_platform_configure()
fi
# <*> Fixup AARCH32 for ARM64 cpu platforms
if [ $RKCHIP = "RK3308" ]; then
if grep -q '^CONFIG_ARM64_BOOT_AARCH32=y' ${OUTDIR}/.config ; then
if grep -q '^CONFIG_ARM64_BOOT_AARCH32=y' ${OUTDIR}/.config ; then
if [ $RKCHIP = "RK3308" ]; then
RKCHIP_LABEL=${RKCHIP_LABEL}"AARCH32"
RKCHIP_TRUST=${RKCHIP_TRUST}"AARCH32"
elif [ $RKCHIP = "RK3326" ]; then
RKCHIP_LABEL=${RKCHIP_LABEL}"AARCH32"
RKCHIP_LOADER=${RKCHIP_LOADER}"AARCH32"
fi
fi
}