diff options
author | Nicolas Dechesne <n-dechesne@ti.com> | 2012-03-18 23:04:52 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-05-05 23:51:34 +0200 |
commit | a23351e7be18650b54fe33ac1fef014a364a938a (patch) | |
tree | 82191b5c8518e7c2e3e8bd1a047491222ead8145 | |
parent | 81302ba68569ff62566fe463a4a8ac1a1d12baca (diff) | |
download | buildroot-novena-a23351e7be18650b54fe33ac1fef014a364a938a.tar.gz buildroot-novena-a23351e7be18650b54fe33ac1fef014a364a938a.zip |
configs: add support for PandaBoard and PandaBoard ES
This is a default configuration for Panda and PandaES, tested on both
platforms.
DEVTMPFS is enabled, to use static dev configuration one would need
to update the generic dev table for ttyO driver.
Panda is well supported in mainline kernel with omap2plus_defconfig,
so this should be safe.
U-boot SPL support is enabled by default as x-loader is now
deprecated.
With OMAP platforms u-boot,img format is prefered now, so it's enabled
by default as well. Also, on PandaBoard, the name of SPL target file
is MLO.
Signed-off-by: Nicolas Dechesne <n-dechesne@ti.com>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | configs/pandaboard_defconfig | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/configs/pandaboard_defconfig b/configs/pandaboard_defconfig new file mode 100644 index 000000000..9496b7f8e --- /dev/null +++ b/configs/pandaboard_defconfig @@ -0,0 +1,26 @@ +# Architecture +BR2_arm=y +BR2_cortex_a9=y + +# system +BR2_TARGET_GENERIC_GETTY=y +BR2_TARGET_GENERIC_GETTY_PORT="ttyO2" +BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS=y + +# filesystem +BR2_TARGET_ROOTFS_EXT2=y +# BR2_TARGET_ROOTFS_TAR is not set + +# Kernel +BR2_LINUX_KERNEL=y +BR2_LINUX_KERNEL_DEFCONFIG="omap2plus" + +# GCC +BR2_GCC_VERSION_4_6_X=y + +# Bootloaders +BR2_TARGET_UBOOT=y +BR2_TARGET_UBOOT_FORMAT_IMG=y +BR2_TARGET_UBOOT_BOARDNAME="omap4_panda" +BR2_TARGET_UBOOT_SPL=y +BR2_TARGET_UBOOT_SPL_NAME="MLO" |