From 2fba5719512a4de7363a7cb2fac8fbdbf6805bfd Mon Sep 17 00:00:00 2001 From: juhosg Date: Thu, 18 Sep 2008 12:38:53 +0000 Subject: [ar71xx] WP543: add static mtd partitions git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12624 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../ar71xx/files/arch/mips/ar71xx/mach-wp543.c | 26 +++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) (limited to 'target/linux/ar71xx/files') diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c index 9044011ed..4abecd8a0 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c @@ -10,6 +10,8 @@ */ #include +#include +#include #include #include #include @@ -29,8 +31,30 @@ #define WP543_BUTTONS_POLL_INTERVAL 20 +#ifdef CONFIG_MTD_PARTITIONS +static struct mtd_partition wp543_partitions[] = { + { + .name = "myloader", + .offset = 0, + .size = 0x20000, + .mask_flags = MTD_WRITEABLE, + } , { + .name = "kernel", + .offset = 0x30000, + .size = 0xd0000, + } , { + .name = "rootfs", + .offset = 0x100000, + .size = 0x100000, + } +}; +#endif /* CONFIG_MTD_PARTITIONS */ + static struct flash_platform_data wp543_flash_data = { - /* TODO: add partition map */ +#ifdef CONFIG_MTD_PARTITIONS + .parts = wp543_partitions, + .nr_parts = ARRAY_SIZE(wp543_partitions), +#endif }; static struct spi_board_info wp543_spi_info[] = { -- cgit v1.2.3