diff options
author | Denys Dmytriyenko <denys@ti.com> | 2013-03-05 16:27:26 -0500 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2013-03-08 16:15:35 -0500 |
commit | e37816400e0514c40c7065d4c18ac7eb80928854 (patch) | |
tree | c4d3d9fe0dad6afd68643b21fbf39b4ff4395805 /conf/machine/include/ti33x.inc | |
parent | 82a8d7c5f20b6b7c8a6291405177a4f7f92749d6 (diff) | |
download | meta-ti-e37816400e0514c40c7065d4c18ac7eb80928854.tar.gz |
ti33x, am335x, beaglebone: unify and cleanup configs
* Centralize common/SoC settings in ti33x.inc SOC_FAMILY config.
* Set/override uncommon specifics in machine configs.
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'conf/machine/include/ti33x.inc')
-rw-r--r-- | conf/machine/include/ti33x.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/conf/machine/include/ti33x.inc b/conf/machine/include/ti33x.inc index 93c50424..cf497219 100644 --- a/conf/machine/include/ti33x.inc +++ b/conf/machine/include/ti33x.inc | |||
@@ -3,15 +3,34 @@ require conf/machine/include/soc-family.inc | |||
3 | 3 | ||
4 | require conf/machine/include/tune-cortexa8.inc | 4 | require conf/machine/include/tune-cortexa8.inc |
5 | 5 | ||
6 | PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg" | ||
7 | |||
8 | # For built-in LCD, add xf86-input-tslib | ||
9 | XSERVER = "xserver-xorg \ | ||
10 | xf86-input-evdev \ | ||
11 | xf86-input-mouse \ | ||
12 | xf86-video-fbdev \ | ||
13 | xf86-input-keyboard" | ||
14 | |||
15 | # Default to external video, change to smallscreen for built-in LCD | ||
16 | GUI_MACHINE_CLASS = "bigscreen" | ||
17 | |||
6 | # Increase this everytime you change something in the kernel | 18 | # Increase this everytime you change something in the kernel |
7 | MACHINE_KERNEL_PR = "r17" | 19 | MACHINE_KERNEL_PR = "r17" |
8 | 20 | ||
21 | # Default providers, may need to override for specific machines | ||
9 | PREFERRED_PROVIDER_virtual/kernel = "linux-ti33x-psp" | 22 | PREFERRED_PROVIDER_virtual/kernel = "linux-ti33x-psp" |
10 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot" | 23 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot" |
11 | 24 | ||
12 | KERNEL_IMAGETYPE = "uImage" | 25 | KERNEL_IMAGETYPE = "uImage" |
13 | 26 | ||
27 | UBOOT_ARCH = "arm" | ||
28 | UBOOT_MACHINE = "am335x_evm_config" | ||
29 | |||
14 | UBOOT_ENTRYPOINT = "0x80008000" | 30 | UBOOT_ENTRYPOINT = "0x80008000" |
15 | UBOOT_LOADADDRESS = "0x80008000" | 31 | UBOOT_LOADADDRESS = "0x80008000" |
16 | 32 | ||
17 | EXTRA_IMAGEDEPENDS += "u-boot" | 33 | EXTRA_IMAGEDEPENDS += "u-boot" |
34 | |||
35 | # List common SoC features, may need to add touchscreen for specific machines | ||
36 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 screen alsa ethernet sgx" | ||