Merge "ipq807x: tiny:Enable THUMB2 interwork in u-boot"

This commit is contained in:
Linux Build Service Account 2019-11-06 12:37:33 -08:00 committed by Gerrit - the friendly Code Review server
commit f159367dd0
2 changed files with 10 additions and 0 deletions

View file

@ -4,6 +4,14 @@ menu "ARM architecture"
config SYS_ARCH
default "arm"
config SYS_THUMB_BUILD
bool "Build U-Boot using the Thumb instruction set"
help
Use this flag to build U-Boot using the Thumb instruction set for
ARM architectures. Thumb instruction set provides better code
density. For ARM architectures that support Thumb2 this flag will
result in Thumb2 code generated by GCC.
config ARM64
bool

View file

@ -314,3 +314,5 @@ CONFIG_SYS_HZ=1000
# CONFIG_LZ4 is not set
# CONFIG_ERRNO_STR is not set
# CONFIG_UNIT_TEST is not set
CONFIG_HAS_THUMB2=y
CONFIG_SYS_THUMB_BUILD=y