diff options
author | Roger Monk <r-monk@ti.com> | 2010-06-30 18:02:18 +0100 |
---|---|---|
committer | Koen Kooi <k-kooi@ti.com> | 2010-07-01 08:55:19 +0200 |
commit | 3446a880af568eeda32c2f27faf0501f6c689251 (patch) | |
tree | 6543ffcc2f07fa5e551e4c548537faf5343c819b | |
parent | cfd97bfc32fad5a81f179e5d44a790ca7a41cd6b (diff) |
omap3evm: Cleanup machine config
* Set uboot preferred provider
* Set VT
* Set x-loader machine
* Align jffs2 params with other ti targets
Signed-off-by: Roger Monk <r-monk@ti.com>
Signed-off-by: Koen Kooi <k-kooi@ti.com>
-rw-r--r-- | conf/machine/omap3evm.conf | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/conf/machine/omap3evm.conf b/conf/machine/omap3evm.conf index 097904d886..7bbc8217d6 100644 --- a/conf/machine/omap3evm.conf +++ b/conf/machine/omap3evm.conf @@ -1,6 +1,6 @@ #@TYPE: Machine -#@NAME: omap3 EVM -#@DESCRIPTION: Machine configuration for the TI omap3 EVM +#@NAME: OMAP3 EVM +#@DESCRIPTION: Machine configuration for the TI OMAP3 EVM TARGET_ARCH = "arm" PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg" @@ -18,14 +18,19 @@ require conf/machine/include/omap3.inc # Ship all kernel modules IMAGE_FSTYPES ?= "jffs2 tar.bz2" -EXTRA_IMAGECMD_jffs2 = "-lnp " +EXTRA_IMAGECMD_jffs2 = "-lnp -e 0x20000 -s 2048" SERIAL_CONSOLE = "115200 ttyS0" +USE_VT = "0" PREFERRED_PROVIDER_virtual/kernel = "linux-omap-psp" +PREFERRED_PROVIDER_virtual/bootloader = "u-boot" +PREFERRED_VERSION_u-boot = "git" + UBOOT_ARCH = "arm" UBOOT_MACHINE = "omap3_evm_config" +XLOAD_MACHINE = "omap3evm_config" MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 screen touchscreen" |