aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2010-03-27 17:38:36 +0000
committerGabor Juhos <juhosg@openwrt.org>2010-03-27 17:38:36 +0000
commit79c06a8dc90054dfc1a54f9aabbf164d5f8ffacc (patch)
tree81cb463a8c8d13b1f52ad668c26bdf043d0be785 /target/linux/ar71xx/files
parent05fcd39f479e295cbfd9fe413c752691c21d524d (diff)
downloadupstream-79c06a8dc90054dfc1a54f9aabbf164d5f8ffacc.tar.gz
upstream-79c06a8dc90054dfc1a54f9aabbf164d5f8ffacc.tar.bz2
upstream-79c06a8dc90054dfc1a54f9aabbf164d5f8ffacc.zip
ar71xx: update image generation and trx header parsing for the WRT160NL
* patch by Bernhard Loos * note: trailing whitespaces has been removed git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20525 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files')
-rw-r--r--target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c b/target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c
index da54e0ff49..e42b3d4019 100644
--- a/target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c
+++ b/target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c
@@ -123,12 +123,7 @@ static int wrt160nl_parse_partitions(struct mtd_info *master,
goto free_hdr;
}
- kernel_len = uheader->ih_size / master->erasesize;
- if (uheader->ih_size % master->erasesize)
- kernel_len++;
-
- kernel_len++;
- kernel_len *= master->erasesize;
+ kernel_len = le32_to_cpu(theader->offsets[1]) + sizeof(struct cybertan_header);
trx_parts[0].name = "u-boot";
trx_parts[0].offset = 0;