summaryrefslogtreecommitdiff
path: root/package/u-boot
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2016-07-16 00:19:49 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2016-07-16 00:19:49 +0200
commit120fbb33241516155aa9d724b76be36f2841bf6f (patch)
treea7cac659e1ba6af1d0581d3b4ead531f8627c14b /package/u-boot
parent609e2afaab7762058d0d0564503e24a31a38e68a (diff)
u-boot: update to 2016.07
Diffstat (limited to 'package/u-boot')
-rw-r--r--package/u-boot/Makefile4
-rw-r--r--package/u-boot/patches/patch-drivers_video_ipu_common_c11
2 files changed, 2 insertions, 13 deletions
diff --git a/package/u-boot/Makefile b/package/u-boot/Makefile
index 1b55adf64..3c2c26ae4 100644
--- a/package/u-boot/Makefile
+++ b/package/u-boot/Makefile
@@ -4,9 +4,9 @@
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= u-boot
-PKG_VERSION:= 2016.05
+PKG_VERSION:= 2016.07
PKG_RELEASE:= 1
-PKG_HASH:= 87d02275615aaf0cd007b54cbe9fbadceef2bee7c79e6c323ea1ae8956dcb171
+PKG_HASH:= 974fb7225c0af6a721307631f66b81e20dbda82a4d7cc32aba2a625727231253
PKG_DESCR:= portable bootloader
PKG_SECTION:= base/boot
HOST_BUILDDEP:= libressl-host device-tree-compiler-host
diff --git a/package/u-boot/patches/patch-drivers_video_ipu_common_c b/package/u-boot/patches/patch-drivers_video_ipu_common_c
deleted file mode 100644
index 003ef3c2d..000000000
--- a/package/u-boot/patches/patch-drivers_video_ipu_common_c
+++ /dev/null
@@ -1,11 +0,0 @@
---- u-boot-2016.05.orig/drivers/video/ipu_common.c 2016-05-16 16:40:32.000000000 +0200
-+++ u-boot-2016.05/drivers/video/ipu_common.c 2016-06-11 22:10:53.808259263 +0200
-@@ -352,7 +352,7 @@ static int ipu_pixel_clk_set_rate(struct
- */
- __raw_writel((div / 16) << 16, DI_BS_CLKGEN1(clk->id));
-
-- clk->rate = (u64)(clk->parent->rate * 16) / div;
-+ clk->rate = (u64)lldiv(clk->parent->rate * 16, div);
-
- return 0;
- }