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, 5 insertions, 4 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 52a5a8abfb..0456dcd6f2 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
@@ -35,12 +35,13 @@ SERIAL_CONSOLE = "115200 ttyS0"
35MACHINE_FEATURES = "keyboard pci ext2 ext3 serial" 35MACHINE_FEATURES = "keyboard pci ext2 ext3 serial"
36 36
37{{ if kernel_choice == "custom": preferred_kernel = "linux-yocto-custom" }} 37{{ if kernel_choice == "custom": preferred_kernel = "linux-yocto-custom" }}
38{{ if kernel_choice == "custom": }} 38{{ if kernel_choice == "linux-yocto-dev": preferred_kernel = "linux-yocto-dev" }}
39{{ if kernel_choice == "custom" or kernel_choice == "linux-yocto-dev" : }}
39PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}" 40PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}"
40 41
41{{ if kernel_choice != "custom": preferred_kernel = kernel_choice.split('_')[0] }} 42{{ if kernel_choice != "custom" and kernel_choice != "linux-yocto-dev": preferred_kernel = kernel_choice.split('_')[0] }}
42{{ if kernel_choice != "custom": preferred_kernel_version = kernel_choice.split('_')[1] }} 43{{ if kernel_choice != "custom" and kernel_choice != "linux-yocto-dev": preferred_kernel_version = kernel_choice.split('_')[1] }}
43{{ if kernel_choice != "custom": }} 44{{ if kernel_choice != "custom" and kernel_choice != "linux-yocto-dev": }}
44PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}" 45PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}"
45PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%" 46PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%"
46 47