diff options
author | gilles.talis@gmail.com <gilles.talis@gmail.com> | 2013-09-27 15:44:57 (GMT) |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-29 08:26:12 (GMT) |
commit | 867867bb1914ce4196d1e9f3fc64e806ea516bf1 (patch) | |
tree | 4dad27012036f57753ce64b658509adc4732beb3 | |
parent | df5f1b56e62d1d986b6d8bf5d0d987f813ee8f40 (diff) | |
download | buildroot-867867bb1914ce4196d1e9f3fc64e806ea516bf1.tar.gz buildroot-867867bb1914ce4196d1e9f3fc64e806ea516bf1.tar.bz2 |
configs: add Freescale SABRE-SD board support
SABRE Board for Smart Devices (SABRE-SD) is Freescale's evaluation board
based on the i.MX 6Quad ARM Cortex-A9 applications processor.
This defconfig is based off Freescale "official" git repo on git.freescale.com
and SW release 3.0.35_4.1.0.
[Peter: add comments to defconfig]
Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | configs/freescale_imx6sabresd_defconfig | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/configs/freescale_imx6sabresd_defconfig b/configs/freescale_imx6sabresd_defconfig new file mode 100644 index 0000000..b030eee --- /dev/null +++ b/configs/freescale_imx6sabresd_defconfig @@ -0,0 +1,23 @@ +# architecture +BR2_arm=y +BR2_cortex_a9=y + +# system +BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0" + +# kernel +BR2_LINUX_KERNEL=y +BR2_LINUX_KERNEL_CUSTOM_GIT=y +BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="git://git.freescale.com/imx/linux-2.6-imx.git" +BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="rel_imx_3.0.35_4.1.0" +BR2_LINUX_KERNEL_DEFCONFIG="imx6" + +# filesystem +BR2_TARGET_ROOTFS_EXT2=y + +# bootloader +BR2_TARGET_UBOOT=y +BR2_TARGET_UBOOT_BOARDNAME="mx6q_sabresd" +BR2_TARGET_UBOOT_CUSTOM_GIT=y +BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="git://git.freescale.com/imx/uboot-imx.git" +BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="rel_imx_3.0.35_4.1.0" |