diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-03-07 17:56:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-03-07 17:56:53 +0000 |
commit | 3abf5ce6564e24a388b86caf1a00f91f4262b312 (patch) | |
tree | 77c12b89874795e1d0627b9106d526a6660e4cc1 /target/linux/ramips/patches-4.3/0101-mtd-add-rtn56u-support.patch | |
parent | f73d8fb81bd847c61cd3fba2a8b1240619009aff (diff) | |
download | mtk-20170518-3abf5ce6564e24a388b86caf1a00f91f4262b312.zip mtk-20170518-3abf5ce6564e24a388b86caf1a00f91f4262b312.tar.gz mtk-20170518-3abf5ce6564e24a388b86caf1a00f91f4262b312.tar.bz2 |
ramips: convert the remaining subtargets to 4.4
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48954
Diffstat (limited to 'target/linux/ramips/patches-4.3/0101-mtd-add-rtn56u-support.patch')
-rw-r--r-- | target/linux/ramips/patches-4.3/0101-mtd-add-rtn56u-support.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/target/linux/ramips/patches-4.3/0101-mtd-add-rtn56u-support.patch b/target/linux/ramips/patches-4.3/0101-mtd-add-rtn56u-support.patch deleted file mode 100644 index 483c161..0000000 --- a/target/linux/ramips/patches-4.3/0101-mtd-add-rtn56u-support.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- a/drivers/mtd/mtdpart.c -+++ b/drivers/mtd/mtdpart.c -@@ -780,8 +780,11 @@ static void split_uimage(struct mtd_info - { - struct { - __be32 magic; -- __be32 pad[2]; -+ __be32 pad0[2]; - __be32 size; -+ __be32 pad1[4]; -+ __be32 name[7]; -+ __be32 kern_size; - } hdr; - size_t len; - -@@ -791,7 +794,10 @@ static void split_uimage(struct mtd_info - if (len != sizeof(hdr) || hdr.magic != cpu_to_be32(UBOOT_MAGIC)) - return; - -- len = be32_to_cpu(hdr.size) + 0x40; -+ if (hdr.kern_size != 0 && hdr.name[0] == 0) -+ len = be32_to_cpu(hdr.kern_size); -+ else -+ len = be32_to_cpu(hdr.size) + 0x40; - - if (config_enabled(CONFIG_MTD_SPLIT_UIMAGE_FW)) - pr_err("Dedicated partitioner didn't split firmware partition, please fill a bug report!\n"); |