ipq807x: tiny:Enable THUMB2 interwork in u-boot

Change-Id: I45fcd0c11c365c2df5abc8fda979ed9df5537acb
Signed-off-by: sameeruddin shaik <samesh@codeaurora.org>
This commit is contained in:
sameeruddin shaik 2019-11-01 16:13:30 +05:30
parent fd7d21dd13
commit ed24a4448f
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