summaryrefslogtreecommitdiffstats
path: root/scripts/lib/bsp/substrate/target/arch/arm/conf/machine/{{=machine}}.conf
diff options
context:
space:
mode:
authorTom Zanussi <tom.zanussi@linux.intel.com>2014-12-16 18:41:02 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-12-18 10:08:58 +0000
commit4b82dab822ebc33fc2e5228215511cc04b5abfea (patch)
tree0523479aab596839e54fbc0207d058dab93567dc /scripts/lib/bsp/substrate/target/arch/arm/conf/machine/{{=machine}}.conf
parent6a103322f8ad752daf628d72c9334f0bf6145122 (diff)
downloadpoky-4b82dab822ebc33fc2e5228215511cc04b5abfea.tar.gz
yocto-bsp: Get rid of 'strange' filenames in arm templates
For the arm templates, give all the 'strange' yocto-bsp template filenames 'normal' names, adding new yocto-bsp-filename and yocto-bsp-dirname tags for the new filename processing pass where needed. (From meta-yocto rev: fb533fd98678671d319e52fc288783bbd0368218) Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/bsp/substrate/target/arch/arm/conf/machine/{{=machine}}.conf')
-rw-r--r--scripts/lib/bsp/substrate/target/arch/arm/conf/machine/{{=machine}}.conf101
1 files changed, 0 insertions, 101 deletions
diff --git a/scripts/lib/bsp/substrate/target/arch/arm/conf/machine/{{=machine}}.conf b/scripts/lib/bsp/substrate/target/arch/arm/conf/machine/{{=machine}}.conf
deleted file mode 100644
index 4bbc96ec62..0000000000
--- a/scripts/lib/bsp/substrate/target/arch/arm/conf/machine/{{=machine}}.conf
+++ /dev/null
@@ -1,101 +0,0 @@
1#@TYPE: Machine
2#@NAME: {{=machine}}
3
4#@DESCRIPTION: Machine configuration for {{=machine}} systems
5
6{{ input type:"boolean" name:"xserver" prio:"50" msg:"Do you need support for X? (y/n)" default:"y" }}
7{{ if xserver == "y": }}
8PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg"
9XSERVER ?= "xserver-xorg \
10 xf86-input-evdev \
11 xf86-input-mouse \
12 xf86-video-fbdev \
13 xf86-input-keyboard"
14
15MACHINE_EXTRA_RRECOMMENDS = " kernel-modules kernel-devicetree"
16
17EXTRA_IMAGEDEPENDS += "u-boot"
18
19{{ input type:"choicelist" name:"tunefile" prio:"40" msg:"Which machine tuning would you like to use?" default:"tune_cortexa8" }}
20{{ input type:"choice" val:"tune_arm1136jf_s" msg:"arm1136jf-s tuning optimizations" }}
21{{ input type:"choice" val:"tune_arm920t" msg:"arm920t tuning optimizations" }}
22{{ input type:"choice" val:"tune_arm926ejs" msg:"arm926ejs tuning optimizations" }}
23{{ input type:"choice" val:"tune_arm9tdmi" msg:"arm9tdmi tuning optimizations" }}
24{{ input type:"choice" val:"tune_cortexa5" msg:"cortexa5 tuning optimizations" }}
25{{ input type:"choice" val:"tune_cortexa7" msg:"cortexa7 tuning optimizations" }}
26{{ input type:"choice" val:"tune_cortexa8" msg:"cortexa8 tuning optimizations" }}
27{{ input type:"choice" val:"tune_cortexa9" msg:"cortexa9 tuning optimizations" }}
28{{ input type:"choice" val:"tune_cortexa15" msg:"cortexa15 tuning optimizations" }}
29{{ input type:"choice" val:"tune_cortexm1" msg:"cortexm1 tuning optimizations" }}
30{{ input type:"choice" val:"tune_cortexm3" msg:"cortexm3 tuning optimizations" }}
31{{ input type:"choice" val:"tune_cortexr4" msg:"cortexr4 tuning optimizations" }}
32{{ input type:"choice" val:"tune_ep9312" msg:"ep9312 tuning optimizations" }}
33{{ input type:"choice" val:"tune_iwmmxt" msg:"iwmmxt tuning optimizations" }}
34{{ input type:"choice" val:"tune_strongarm1100" msg:"strongarm1100 tuning optimizations" }}
35{{ input type:"choice" val:"tune_xscale" msg:"xscale tuning optimizations" }}
36{{ if tunefile == "tune_arm1136jf_s": }}
37include conf/machine/include/tune-arm1136jf-s.inc
38{{ if tunefile == "tune_arm920t": }}
39include conf/machine/include/tune-arm920t.inc
40{{ if tunefile == "tune_arm926ejs": }}
41include conf/machine/include/tune-arm926ejs.inc
42{{ if tunefile == "tune_arm9tdmi": }}
43include conf/machine/include/tune-arm9tdmi.inc
44{{ if tunefile == "tune_cortexa5": }}
45include conf/machine/include/tune-cortexa5.inc
46{{ if tunefile == "tune_cortexa7": }}
47include conf/machine/include/tune-cortexa7.inc
48{{ if tunefile == "tune_cortexa8": }}
49DEFAULTTUNE ?= "cortexa8hf-neon"
50include conf/machine/include/tune-cortexa8.inc
51{{ if tunefile == "tune_cortexa9": }}
52include conf/machine/include/tune-cortexa9.inc
53{{ if tunefile == "tune_cortexa15": }}
54include conf/machine/include/tune-cortexa15.inc
55{{ if tunefile == "tune_cortexm1": }}
56include conf/machine/include/tune-cortexm1.inc
57{{ if tunefile == "tune_cortexm3": }}
58include conf/machine/include/tune-cortexm3.inc
59{{ if tunefile == "tune_cortexr4": }}
60include conf/machine/include/tune-cortexr4.inc
61{{ if tunefile == "tune_ep9312": }}
62include conf/machine/include/tune-ep9312.inc
63{{ if tunefile == "tune_iwmmxt": }}
64include conf/machine/include/tune-iwmmxt.inc
65{{ if tunefile == "tune_strongarm1100": }}
66include conf/machine/include/tune-strongarm1100.inc
67{{ if tunefile == "tune_xscale": }}
68include conf/machine/include/tune-xscale.inc
69
70IMAGE_FSTYPES += "tar.bz2 jffs2"
71EXTRA_IMAGECMD_jffs2 = "-lnp "
72
73SERIAL_CONSOLE = "115200 ttyO0"
74
75{{ if kernel_choice == "custom": preferred_kernel = "linux-yocto-custom" }}
76{{ if kernel_choice == "linux-yocto-dev": preferred_kernel = "linux-yocto-dev" }}
77{{ if kernel_choice == "custom" or kernel_choice == "linux-yocto-dev" : }}
78PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}"
79
80{{ if kernel_choice != "custom" and kernel_choice != "linux-yocto-dev": preferred_kernel = kernel_choice.split('_')[0] }}
81{{ if kernel_choice != "custom" and kernel_choice != "linux-yocto-dev": preferred_kernel_version = kernel_choice.split('_')[1] }}
82{{ if kernel_choice != "custom" and kernel_choice != "linux-yocto-dev": }}
83PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}"
84PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%"
85
86KERNEL_IMAGETYPE = "uImage"
87KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
88KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
89
90SPL_BINARY = "MLO"
91UBOOT_SUFFIX = "img"
92{{ input type:"edit" name:"uboot_machine" prio:"40" msg:"Please specify a value for UBOOT_MACHINE:" default:"am335x_evm_config" }}
93UBOOT_MACHINE = "{{=uboot_machine}}"
94{{ input type:"edit" name:"uboot_entrypoint" prio:"40" msg:"Please specify a value for UBOOT_ENTRYPOINT:" default:"0x80008000" }}
95UBOOT_ENTRYPOINT = "{{=uboot_entrypoint}}"
96{{ input type:"edit" name:"uboot_loadaddress" prio:"40" msg:"Please specify a value for UBOOT_LOADADDRESS:" default:"0x80008000" }}
97UBOOT_LOADADDRESS = "{{=uboot_loadaddress}}"
98
99MACHINE_FEATURES = "usbgadget usbhost vfat alsa"
100
101IMAGE_BOOT_FILES ?= "u-boot.${UBOOT_SUFFIX} MLO"