diff options
author | John Crispin <john@openwrt.org> | 2015-03-11 15:56:34 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-03-11 15:56:34 +0000 |
commit | a0c4419b0d8e2dfa7491e67e055388e898dbb1db (patch) | |
tree | 795527dbcc681703458018fcdd9844aea37bc114 /target/linux/ar71xx/files/arch/mips | |
parent | 69955cf733736cf1b6916213b9263150963073fb (diff) | |
download | mtk-20170518-a0c4419b0d8e2dfa7491e67e055388e898dbb1db.zip mtk-20170518-a0c4419b0d8e2dfa7491e67e055388e898dbb1db.tar.gz mtk-20170518-a0c4419b0d8e2dfa7491e67e055388e898dbb1db.tar.bz2 |
ar71xx: improve WD's My Net Wi-fi Range Extender image creation
Previously, the generated images for the My Net Wi-fi Range Extender
wouldn't always work (and panic) due to the fixed mtd offsets and
sizes for the kernel and rootfs. This patch fixes the problem by
utilizing the shared Cybertan's partition parser to recalculate
the mtd partitions for every image dynamically everytime.
Reported-by: Pascal Paradis <peparadis@yahoo.com>
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
SVN-Revision: 44665
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-mynet-rext.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-mynet-rext.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-mynet-rext.c index a3deed5..02d168e 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-mynet-rext.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-mynet-rext.c @@ -55,6 +55,16 @@ #define MYNET_REXT_ART_ADDR 0x1f7f0000 +static const char *mynet_rext_part_probes[] = { + "cybertan", + NULL, +}; + +static struct flash_platform_data mynet_rext_flash_data = { + .type = "s25fl064k", + .part_probes = mynet_rext_part_probes, +}; + static struct gpio_led mynet_rext_leds_gpio[] __initdata = { { .name = "wd:blue:power", @@ -130,7 +140,7 @@ static void __init mynet_rext_setup(void) u8 *art = (u8 *) KSEG1ADDR(MYNET_REXT_ART_ADDR); u8 tmpmac[ETH_ALEN]; - ath79_register_m25p80(NULL); + ath79_register_m25p80(&mynet_rext_flash_data); /* GPIO configuration from drivers/char/GPIO8.c */ |