diff options
author | Xo Wang <xow@google.com> | 2018-01-17 12:32:19 -0800 |
---|---|---|
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2018-01-23 17:03:15 +0000 |
commit | 7cf253a60315e854662d2d60cf863410fdfc50a0 (patch) | |
tree | dd2e3460a5662ce039241330b771c9883aa3ee63 /meta-openbmc-bsp | |
parent | b43a0a8888189acaac67e09b28aabfa338041a84 (diff) | |
download | talos-openbmc-7cf253a60315e854662d2d60cf863410fdfc50a0.tar.gz talos-openbmc-7cf253a60315e854662d2d60cf863410fdfc50a0.zip |
meta-ast2500: Tune for ARM1176JZ-S
Include tune-arm1176jz-s.inc in the ast2500 SoC include file and set its
default tune to the core-specific variable. This enables Thumb package
builds and adds a compiler tune for the ARM1176 core.
AST2500 BMC developers won't likely observed any differences other than
seeing in the build log:
TUNE_FEATURES = "arm armv6 thumb arm1176jzs"
Tested: Inspected some packages with the bb utility that
TUNE_PKGARCH="armv6" and verified booting Zaius BMC.
Signed-off-by: Xo Wang <xow@google.com>
Change-Id: I70beab3d4e930b22dd4dd7b42e56971448396a7b
Diffstat (limited to 'meta-openbmc-bsp')
-rw-r--r-- | meta-openbmc-bsp/meta-aspeed/meta-ast2500/conf/machine/include/ast2500.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-openbmc-bsp/meta-aspeed/meta-ast2500/conf/machine/include/ast2500.inc b/meta-openbmc-bsp/meta-aspeed/meta-ast2500/conf/machine/include/ast2500.inc index 2805ea079..be753324c 100644 --- a/meta-openbmc-bsp/meta-aspeed/meta-ast2500/conf/machine/include/ast2500.inc +++ b/meta-openbmc-bsp/meta-aspeed/meta-ast2500/conf/machine/include/ast2500.inc @@ -10,7 +10,7 @@ UBOOT_LOADADDRESS ?= "0x80001000" MACHINE_EXTRA_RDEPENDS += "udev-aspeed-vuart" -DEFAULTTUNE = "armv6-novfp" +DEFAULTTUNE ?= "arm1176jzs" SERIAL_CONSOLES = "115200;ttyS4" @@ -18,4 +18,4 @@ SOC_FAMILY = "aspeed-g5" include conf/machine/include/soc-family.inc MACHINEOVERRIDES .= ":ast2500" -require conf/machine/include/arm/arch-armv6.inc +require conf/machine/include/tune-arm1176jz-s.inc |