From patchwork Mon Oct 20 12:46:15 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Eric Benard X-Patchwork-Id: 401094 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 9A873140085 for ; Mon, 20 Oct 2014 23:46:23 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id E400D32A47; Mon, 20 Oct 2014 12:46:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0wqz320LVV4X; Mon, 20 Oct 2014 12:46:19 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id A92EA32D05; Mon, 20 Oct 2014 12:46:17 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 764431BFA75 for ; Mon, 20 Oct 2014 12:46:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 719BD91882 for ; Mon, 20 Oct 2014 12:46:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oT+urLtFzkOT for ; Mon, 20 Oct 2014 12:46:14 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from smtp3-g21.free.fr (smtp3-g21.free.fr [212.27.42.3]) by whitealder.osuosl.org (Postfix) with ESMTPS id E9B2291884 for ; Mon, 20 Oct 2014 12:46:13 +0000 (UTC) Received: from e6540eb.local.eukrea.fr (unknown [88.170.243.169]) by smtp3-g21.free.fr (Postfix) with ESMTP id 92933A634C for ; Mon, 20 Oct 2014 14:44:49 +0200 (CEST) From: =?UTF-8?q?Eric=20B=C3=A9nard?= To: buildroot@busybox.net Date: Mon, 20 Oct 2014 14:46:15 +0200 Message-Id: <1413809176-5063-1-git-send-email-eric@eukrea.com> X-Mailer: git-send-email 2.1.1 MIME-Version: 1.0 Subject: [Buildroot] [PATCH v3] 1/2] mx53loco: update support X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" - update bootloader to 2014.07 with fslc patches - update kernel to 2.6.35_maintain branch which contains latest fixes - defconfig was then generated by savedefconfig which suppressed and reordered some items which explains the number of lines changed. Tested on an i.MX53 QSB and an i.MX53 QSB-R Signed-off-by: Eric Bénard --- v3: - keep section comments in the defconfig (PK) v2: - use git hash for u-boot & linux (PK) - use u-boot-fslc.git for u-boot (PK) - fix kernel headers to 2.6.35 (TP) configs/mx53loco_defconfig | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/configs/mx53loco_defconfig b/configs/mx53loco_defconfig index 8b12238..6bfc553 100644 --- a/configs/mx53loco_defconfig +++ b/configs/mx53loco_defconfig @@ -1,22 +1,23 @@ # Architecture BR2_arm=y BR2_cortex_a8=y -BR2_ARM_FPU_VFPV3D16=y - # System +BR2_KERNEL_HEADERS_VERSION=y +BR2_DEFAULT_KERNEL_VERSION="2.6.35" BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0" +# Filesystem +BR2_TARGET_ROOTFS_EXT2=y +# Bootloader BR2_TARGET_UBOOT=y -BR2_TARGET_UBOOT_BOARDNAME="mx53_loco" +BR2_TARGET_UBOOT_BOARDNAME="mx53loco" BR2_TARGET_UBOOT_CUSTOM_GIT=y -BR2_TARGET_UBOOT_CUSTOM_REPO_URL="git://git.freescale.com/imx/uboot-imx.git" -BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="rel_imx_2.6.35_11.09.01" - -# filesystem -BR2_TARGET_ROOTFS_EXT2=y - +BR2_TARGET_UBOOT_CUSTOM_REPO_URL="git://github.com/Freescale/u-boot-fslc.git" +BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="e36968af0a033e9d66535928886103370620cb4d" +BR2_TARGET_UBOOT_FORMAT_IMX=y # Kernel BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_GIT=y BR2_LINUX_KERNEL_CUSTOM_REPO_URL="git://git.freescale.com/imx/linux-2.6-imx.git" -BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="rel_imx_2.6.35_11.09.01" +BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="b3912bb8a4caf3ec50909135e88af959982c43ca" BR2_LINUX_KERNEL_DEFCONFIG="imx5" +BR2_LINUX_KERNEL_ZIMAGE=y