fix ar2315 rootfs mount

SVN-Revision: 6325
v19.07.3_mercusys_ac12_duma
Felix Fietkau 18 years ago
parent 32ac162630
commit e10c97c2ca

@ -396,7 +396,7 @@ static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", NULL };
static int spiflash_probe(struct platform_device *pdev) static int spiflash_probe(struct platform_device *pdev)
{ {
int result = -1; int i, result = -1;
int index, num_parts; int index, num_parts;
struct mtd_info *mtd; struct mtd_info *mtd;
@ -472,6 +472,12 @@ static int spiflash_probe(struct platform_device *pdev)
#endif #endif
/* parse redboot partitions */ /* parse redboot partitions */
num_parts = parse_mtd_partitions(mtd, part_probe_types, &spidata->parsed_parts, 0); num_parts = parse_mtd_partitions(mtd, part_probe_types, &spidata->parsed_parts, 0);
for (i = 0; i < num_parts; i++) {
if (!strcmp(spidata->parsed_parts[i].name, ROOTFS_NAME)) {
/* create the root device */
ROOT_DEV = MKDEV(MTD_BLOCK_MAJOR, i);
}
}
#ifdef SPIFLASH_DEBUG #ifdef SPIFLASH_DEBUG
printk (KERN_DEBUG "Found %d partitions\n", num_parts); printk (KERN_DEBUG "Found %d partitions\n", num_parts);

Loading…
Cancel
Save