5f6b8f1df840c62aa228bfa8e17e86f89fd59adc
[openwrt/openwrt.git] / target / linux / ar7 / patches-2.6.25 / 110-flash.patch
1 --- a/drivers/mtd/Kconfig
2 +++ b/drivers/mtd/Kconfig
3 @@ -168,6 +168,12 @@
4 the partition map from the children of the flash node,
5 as described in Documentation/powerpc/booting-without-of.txt.
6
7 +config MTD_AR7_PARTS
8 + tristate "TI AR7 partitioning support"
9 + depends on MTD_PARTITIONS
10 + ---help---
11 + TI AR7 partitioning support
12 +
13 comment "User Modules And Translation Layers"
14
15 config MTD_CHAR
16 --- a/drivers/mtd/Makefile
17 +++ b/drivers/mtd/Makefile
18 @@ -12,6 +12,7 @@
19 obj-$(CONFIG_MTD_CMDLINE_PARTS) += cmdlinepart.o
20 obj-$(CONFIG_MTD_AFS_PARTS) += afs.o
21 obj-$(CONFIG_MTD_OF_PARTS) += ofpart.o
22 +obj-$(CONFIG_MTD_AR7_PARTS) += ar7part.o
23
24 # 'Users' - code which presents functionality to userspace.
25 obj-$(CONFIG_MTD_CHAR) += mtdchar.o
26 --- a/drivers/mtd/maps/physmap.c
27 +++ b/drivers/mtd/maps/physmap.c
28 @@ -87,7 +87,8 @@
29
30 static const char *rom_probe_types[] = { "cfi_probe", "jedec_probe", "map_rom", NULL };
31 #ifdef CONFIG_MTD_PARTITIONS
32 -static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", NULL };
33 +static const char *part_probe_types[] = {"cmdlinepart", "RedBoot",
34 + "ar7part", NULL };
35 #endif
36
37 static int physmap_flash_probe(struct platform_device *dev)