summaryrefslogtreecommitdiffstats
path: root/scripts/lib/bsp/substrate/target/arch/powerpc/conf/machine/{{=machine}}.conf
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/bsp/substrate/target/arch/powerpc/conf/machine/{{=machine}}.conf')
-rw-r--r--scripts/lib/bsp/substrate/target/arch/powerpc/conf/machine/{{=machine}}.conf9
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/lib/bsp/substrate/target/arch/powerpc/conf/machine/{{=machine}}.conf b/scripts/lib/bsp/substrate/target/arch/powerpc/conf/machine/{{=machine}}.conf
index 1d6143a00c..52a5a8abfb 100644
--- a/scripts/lib/bsp/substrate/target/arch/powerpc/conf/machine/{{=machine}}.conf
+++ b/scripts/lib/bsp/substrate/target/arch/powerpc/conf/machine/{{=machine}}.conf
@@ -34,8 +34,13 @@ SERIAL_CONSOLE = "115200 ttyS0"
34 34
35MACHINE_FEATURES = "keyboard pci ext2 ext3 serial" 35MACHINE_FEATURES = "keyboard pci ext2 ext3 serial"
36 36
37{{ preferred_kernel = kernel_choice.split('_')[0] }} 37{{ if kernel_choice == "custom": preferred_kernel = "linux-yocto-custom" }}
38{{ preferred_kernel_version = kernel_choice.split('_')[1] }} 38{{ if kernel_choice == "custom": }}
39PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}"
40
41{{ if kernel_choice != "custom": preferred_kernel = kernel_choice.split('_')[0] }}
42{{ if kernel_choice != "custom": preferred_kernel_version = kernel_choice.split('_')[1] }}
43{{ if kernel_choice != "custom": }}
39PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}" 44PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}"
40PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%" 45PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%"
41 46