aboutsummaryrefslogtreecommitdiff
path: root/platforms/common
diff options
context:
space:
mode:
authorChris Redpath <chris.redpath@arm.com>2016-01-18 18:12:38 +0000
committerRyan Harkin <ryan.harkin@linaro.org>2016-09-02 16:02:41 +0100
commita02fb97a5ea9a135778d9118221af28fc72a9419 (patch)
treed2310be834d9c17892d7a77f3e536af1db4e00c4 /platforms/common
parentb5dba2250e6e3b9d64934063ec9e53bef4b059c0 (diff)
This patch is for the ARMLT tree only. If the linux kernel config fragments for EAS are present, use them. Also let the user provide BL_SUPPORT=EAS or BL_SUPPORT=big-LITTLE-MP variable to the build scripts if desired. Will warn and try to provide help if your chosen config does not exist in the kernel source. Change-Id: I9a850d03f00741219fb1b45e2e743b6098ec4669 Signed-off-by: Chris Redpath <chris.redpath@arm.com> Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
Diffstat (limited to 'platforms/common')
-rw-r--r--platforms/common/common.base7
1 files changed, 4 insertions, 3 deletions
diff --git a/platforms/common/common.base b/platforms/common/common.base
index 48a9416..ca105bf 100644
--- a/platforms/common/common.base
+++ b/platforms/common/common.base
@@ -74,15 +74,16 @@ LINUX_defconfig[defconfig]=defconfig
declare -A LINUX_mobile_oe
LINUX_mobile_oe[path]="linux"
LINUX_mobile_oe[outpath]="linux"
-LINUX_mobile_oe[config]="linaro-base EAS distribution vexpress64"
+source $DIR/big-LITTLE-conf.sh
+LINUX_mobile_oe[config]="linaro-base $BL_SUPPORT distribution vexpress64"
declare -A LINUX_mobile_bb
LINUX_mobile_bb[path]="linux"
LINUX_mobile_bb[outpath]="linux"
-LINUX_mobile_bb[config]="linaro-base vexpress64 EAS"
+LINUX_mobile_bb[config]="linaro-base vexpress64 $BL_SUPPORT"
declare -A LINUX_android
LINUX_android[path]="linux"
LINUX_android[outpath]="linux"
-LINUX_android[config]="linaro-base EAS android vexpress64"
+LINUX_android[config]="linaro-base $BL_SUPPORT android vexpress64"
#Default linux configs per OS - These can be overridden.
BUSYBOX_LINUX_CONFIG_LIST=mobile_bb
OE_LINUX_CONFIG_LIST=mobile_oe