From 28df1bc780c17f5fb340665ff89f05c9030b8b6f Mon Sep 17 00:00:00 2001 From: Mathieu Briand Date: Mon, 13 Feb 2012 10:43:46 +0100 Subject: configs: Add Freescale MX53 support Buildroot config and Linux Kernel config. Freescale binaries (xf86 video driver and multimedia codecs) not supported yet. Signed-off-by: Mathieu Briand Acked-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Peter Korsgaard --- configs/mx53loco_defconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 configs/mx53loco_defconfig (limited to 'configs/mx53loco_defconfig') diff --git a/configs/mx53loco_defconfig b/configs/mx53loco_defconfig new file mode 100644 index 000000000..eab5b1869 --- /dev/null +++ b/configs/mx53loco_defconfig @@ -0,0 +1,18 @@ +# Architecture +BR2_arm=y +BR2_cortex_a8=y + +# System +BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0" +BR2_TARGET_UBOOT=y +BR2_TARGET_UBOOT_BOARDNAME="mx53_loco" +BR2_TARGET_UBOOT_CUSTOM_GIT=y +BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="http://opensource.freescale.com/pub/scm/imx/uboot-imx.git" +BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="rel_imx_2.6.35_11.09.01" + +# Kernel +BR2_LINUX_KERNEL=y +BR2_LINUX_KERNEL_CUSTOM_GIT=y +BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="http://opensource.freescale.com/pub/scm/imx/linux-2.6-imx.git" +BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="rel_imx_2.6.35_11.09.01" +BR2_LINUX_KERNEL_DEFCONFIG="imx5" -- cgit v1.2.3 From 6fdc1c3b55cbdf04502ca99986c13a0d3c80f6c9 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Sun, 19 Feb 2012 22:54:17 +0100 Subject: defconfigs: mx53loco_defconfig: misc tweaks - Use git:// URLs for freescale git trees - Enable hard fpu for A8 - Board uses uSD cards, so enable ext2 filesystem Signed-off-by: Peter Korsgaard --- configs/mx53loco_defconfig | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'configs/mx53loco_defconfig') diff --git a/configs/mx53loco_defconfig b/configs/mx53loco_defconfig index eab5b1869..ff3948b27 100644 --- a/configs/mx53loco_defconfig +++ b/configs/mx53loco_defconfig @@ -1,18 +1,23 @@ # Architecture BR2_arm=y BR2_cortex_a8=y +# BR2_SOFT_FLOAT is not set +BR2_VFP_FLOAT=y # System BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0" BR2_TARGET_UBOOT=y BR2_TARGET_UBOOT_BOARDNAME="mx53_loco" BR2_TARGET_UBOOT_CUSTOM_GIT=y -BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="http://opensource.freescale.com/pub/scm/imx/uboot-imx.git" +BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="git://git.freescale.com/imx/uboot-imx.git" BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="rel_imx_2.6.35_11.09.01" +# filesystem +BR2_TARGET_ROOTFS_EXT2=y + # Kernel BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_GIT=y -BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="http://opensource.freescale.com/pub/scm/imx/linux-2.6-imx.git" +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_2.6.35_11.09.01" BR2_LINUX_KERNEL_DEFCONFIG="imx5" -- cgit v1.2.3