Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Fabio Estevam <festevam@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 2/2] configs: mx53loco: Bump U-Boot version to 2016.07
Date: Mon, 11 Jul 2016 22:12:32 -0300	[thread overview]
Message-ID: <1468285952-7497-2-git-send-email-festevam@gmail.com> (raw)
In-Reply-To: <1468285952-7497-1-git-send-email-festevam@gmail.com>

Bump U-Boot version to 2016.07 and also remove the extra patch
as it is already part of U-Boot mainline now.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 .../0001-video-ipu_common-fix-build-error.patch    | 47 ----------------------
 configs/mx53loco_defconfig                         |  5 +--
 2 files changed, 1 insertion(+), 51 deletions(-)
 delete mode 100644 board/freescale/imx53loco/patches/uboot/0001-video-ipu_common-fix-build-error.patch

diff --git a/board/freescale/imx53loco/patches/uboot/0001-video-ipu_common-fix-build-error.patch b/board/freescale/imx53loco/patches/uboot/0001-video-ipu_common-fix-build-error.patch
deleted file mode 100644
index 356d0b0..0000000
--- a/board/freescale/imx53loco/patches/uboot/0001-video-ipu_common-fix-build-error.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From c510f2e436008e55a50b063f2180cb1e63984224 Mon Sep 17 00:00:00 2001
-From: Peng Fan <van.freenix@gmail.com>
-Date: Thu, 28 Apr 2016 10:07:53 +0800
-Subject: [PATCH] video: ipu_common: fix build error
-
-Some toolchains fail to build
-"clk->rate = (u64)(clk->parent->rate * 16) / div;"
-And the cast usage is wrong.
-
-Use the following code to fix the issue,
-"
-  do_div(parent_rate, div);
-  clk->rate = parent_rate;
-"
-
-Reported-by: Peter Robinson <pbrobinson@gmail.com>
-Signed-off-by: Peng Fan <van.freenix@gmail.com>
-Cc: Stefano Babic <sbabic@denx.de>
-Cc: Fabio Estevam <fabio.estevam@nxp.com>
-Cc: Tom Rini <trini@konsulko.com>
-Cc: Anatolij Gustschin <agust@denx.de>
-Cc: Peter Robinson <pbrobinson@gmail.com>
-Reviewed-by: Tom Rini <trini@konsulko.com>
-Tested-by: Peter Robinson <pbrobinson@gmail.com>
-Signed-off-by: Fabio Estevam <festevam@gmail.com>
----
- drivers/video/ipu_common.c | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/drivers/video/ipu_common.c b/drivers/video/ipu_common.c
-index 36d4b23..5676a0f 100644
---- a/drivers/video/ipu_common.c
-+++ b/drivers/video/ipu_common.c
-@@ -352,7 +352,9 @@ static int ipu_pixel_clk_set_rate(struct clk *clk, unsigned long rate)
- 	 */
- 	__raw_writel((div / 16) << 16, DI_BS_CLKGEN1(clk->id));
- 
--	clk->rate = (u64)(clk->parent->rate * 16) / div;
-+	do_div(parent_rate, div);
-+
-+	clk->rate = parent_rate;
- 
- 	return 0;
- }
--- 
-1.9.1
-
diff --git a/configs/mx53loco_defconfig b/configs/mx53loco_defconfig
index 72389e4..286b719 100644
--- a/configs/mx53loco_defconfig
+++ b/configs/mx53loco_defconfig
@@ -8,9 +8,6 @@ BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_6=y
 # System
 BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
 
-# patches
-BR2_GLOBAL_PATCH_DIR="board/freescale/imx53loco/patches/"
-
 # required tools to create the SD card image
 BR2_PACKAGE_HOST_DOSFSTOOLS=y
 BR2_PACKAGE_HOST_GENIMAGE=y
@@ -25,7 +22,7 @@ BR2_TARGET_ROOTFS_EXT2_4=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="mx53loco"
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.05"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.07"
 BR2_TARGET_UBOOT_FORMAT_IMX=y
 
 # Kernel
-- 
1.9.1

  reply	other threads:[~2016-07-12  1:12 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-12  1:12 [Buildroot] [PATCH 1/2] configs: mx51evk: Bump U-Boot version to 2016.07 Fabio Estevam
2016-07-12  1:12 ` Fabio Estevam [this message]
2016-07-12 21:48   ` [Buildroot] [PATCH 2/2] configs: mx53loco: " Peter Korsgaard
2016-07-12 21:48 ` [Buildroot] [PATCH 1/2] configs: mx51evk: " Peter Korsgaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1468285952-7497-2-git-send-email-festevam@gmail.com \
    --to=festevam@gmail.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox