summaryrefslogtreecommitdiffstats
path: root/scripts/lib/bsp/substrate/target/arch/mips/conf/machine/{{=machine}}.conf
diff options
context:
space:
mode:
authorTom Zanussi <tom.zanussi@intel.com>2012-12-12 22:56:32 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-12-13 16:54:32 +0000
commit254bf8c5d9135185c7f8cbb27496056be589b4ff (patch)
treedd1a7a463180722800d627d3e4a262c77b4443bb /scripts/lib/bsp/substrate/target/arch/mips/conf/machine/{{=machine}}.conf
parent4dc96e3629f3bb6e8478b95b9f4613a467c2f6bb (diff)
downloadpoky-254bf8c5d9135185c7f8cbb27496056be589b4ff.tar.gz
yocto-bsp: update existing templates for linux-yocto-custom
Update existing templates to integrate with linux-yocto-custom. (From meta-yocto rev: 7a8b55bdf499d001b77bb87345eb4eeab6013b2e) Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/bsp/substrate/target/arch/mips/conf/machine/{{=machine}}.conf')
-rw-r--r--scripts/lib/bsp/substrate/target/arch/mips/conf/machine/{{=machine}}.conf9
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/lib/bsp/substrate/target/arch/mips/conf/machine/{{=machine}}.conf b/scripts/lib/bsp/substrate/target/arch/mips/conf/machine/{{=machine}}.conf
index b7c86e8821..4dd5940188 100644
--- a/scripts/lib/bsp/substrate/target/arch/mips/conf/machine/{{=machine}}.conf
+++ b/scripts/lib/bsp/substrate/target/arch/mips/conf/machine/{{=machine}}.conf
@@ -10,8 +10,13 @@ MACHINE_FEATURES = "screen keyboard pci usbhost ext2 ext3 serial"
10KERNEL_IMAGETYPE = "vmlinux" 10KERNEL_IMAGETYPE = "vmlinux"
11KERNEL_ALT_IMAGETYPE = "vmlinux.bin" 11KERNEL_ALT_IMAGETYPE = "vmlinux.bin"
12 12
13{{ preferred_kernel = kernel_choice.split('_')[0] }} 13{{ if kernel_choice == "custom": preferred_kernel = "linux-yocto-custom" }}
14{{ preferred_kernel_version = kernel_choice.split('_')[1] }} 14{{ if kernel_choice == "custom": }}
15PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}"
16
17{{ if kernel_choice != "custom": preferred_kernel = kernel_choice.split('_')[0] }}
18{{ if kernel_choice != "custom": preferred_kernel_version = kernel_choice.split('_')[1] }}
19{{ if kernel_choice != "custom": }}
15PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}" 20PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}"
16PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%" 21PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%"
17 22