diff options
author | Luka Perkov <luka@openwrt.org> | 2014-11-29 22:43:59 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2014-11-29 22:43:59 +0000 |
commit | 25d8cb275e1f16bb80c6d05dcf6d73d8d6882053 (patch) | |
tree | 7f6d41071498538edf4f3927515e4d84e65f66eb /tools/mkimage/patches | |
parent | 070d3b27c223f23a4793667264441f8c2f008755 (diff) | |
download | mtk-20170518-25d8cb275e1f16bb80c6d05dcf6d73d8d6882053.zip mtk-20170518-25d8cb275e1f16bb80c6d05dcf6d73d8d6882053.tar.gz mtk-20170518-25d8cb275e1f16bb80c6d05dcf6d73d8d6882053.tar.bz2 |
mkimage: update to 2014.10
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 43428
Diffstat (limited to 'tools/mkimage/patches')
5 files changed, 15 insertions, 23 deletions
diff --git a/tools/mkimage/patches/020-include_compile_fix.patch b/tools/mkimage/patches/020-include_compile_fix.patch new file mode 100644 index 0000000..276cae0 --- /dev/null +++ b/tools/mkimage/patches/020-include_compile_fix.patch @@ -0,0 +1,10 @@ +--- a/include/u-boot/rsa-checksum.h ++++ b/include/u-boot/rsa-checksum.h +@@ -7,7 +7,6 @@ + #ifndef _RSA_CHECKSUM_H + #define _RSA_CHECKSUM_H + +-#include <errno.h> + #include <image.h> + #include <u-boot/sha1.h> + #include <u-boot/sha256.h> diff --git a/tools/mkimage/patches/020-openbsd_fixes.patch b/tools/mkimage/patches/020-openbsd_fixes.patch deleted file mode 100644 index 7a762d9..0000000 --- a/tools/mkimage/patches/020-openbsd_fixes.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- a/tools/mkimage.c -+++ b/tools/mkimage.c -@@ -458,6 +458,7 @@ - #if defined(_POSIX_SYNCHRONIZED_IO) && \ - !defined(__sun__) && \ - !defined(__FreeBSD__) && \ -+ !defined(__OpenBSD__) && \ - !defined(__APPLE__) - (void) fdatasync (ifd); - #else -@@ -501,6 +502,7 @@ - #if defined(_POSIX_SYNCHRONIZED_IO) && \ - !defined(__sun__) && \ - !defined(__FreeBSD__) && \ -+ !defined(__OpenBSD__) && \ - !defined(__APPLE__) - (void) fdatasync (ifd); - #else diff --git a/tools/mkimage/patches/040-include_order.patch b/tools/mkimage/patches/040-include_order.patch index 66f703c..3b9ecc6 100644 --- a/tools/mkimage/patches/040-include_order.patch +++ b/tools/mkimage/patches/040-include_order.patch @@ -1,10 +1,10 @@ --- a/tools/Makefile +++ b/tools/Makefile -@@ -193,7 +193,7 @@ +@@ -194,7 +194,7 @@ endif # !LOGO_BMP # Define _GNU_SOURCE to obtain the getline prototype from stdio.h # HOST_EXTRACFLAGS += -include $(srctree)/include/libfdt_env.h \ -- $(patsubst -I%,-idirafter%, $(UBOOTINCLUDE)) \ +- $(patsubst -I%,-idirafter%, $(filter -I%, $(UBOOTINCLUDE))) \ + -I$(srctree)/include \ -I$(srctree)/lib/libfdt \ -I$(srctree)/tools \ diff --git a/tools/mkimage/patches/050-image_h_portability.patch b/tools/mkimage/patches/050-image_h_portability.patch index 304a7aa..b3ad273 100644 --- a/tools/mkimage/patches/050-image_h_portability.patch +++ b/tools/mkimage/patches/050-image_h_portability.patch @@ -8,7 +8,7 @@ /* Define this to avoid #ifdefs later on */ struct lmb; -@@ -257,13 +256,13 @@ +@@ -258,13 +257,13 @@ struct lmb; * all data in network byte order (aka natural aka bigendian). */ typedef struct image_header { diff --git a/tools/mkimage/patches/060-remove_kernel_includes.patch b/tools/mkimage/patches/060-remove_kernel_includes.patch index 9462ca6..fa533cd 100644 --- a/tools/mkimage/patches/060-remove_kernel_includes.patch +++ b/tools/mkimage/patches/060-remove_kernel_includes.patch @@ -1,6 +1,6 @@ --- a/include/compiler.h +++ b/include/compiler.h -@@ -53,6 +53,11 @@ +@@ -58,6 +58,11 @@ typedef uint8_t __u8; typedef uint16_t __u16; typedef uint32_t __u32; typedef unsigned int uint; @@ -14,7 +14,7 @@ ((((x) & 0xff00) >> 8) | \ --- a/include/linux/posix_types.h +++ b/include/linux/posix_types.h -@@ -43,6 +43,8 @@ +@@ -43,6 +43,8 @@ typedef void (*__kernel_sighandler_t)(in /* Type of a SYSV IPC key. */ typedef int __kernel_key_t; |