summaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/files/drivers
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-01-23 11:54:44 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-01-23 11:54:44 +0000
commit404fa6621550be0caf9a989f67517d97ef1f9ec2 (patch)
treee4fc6bd1545bea5db935ab5ec6472e4280b5ba74 /target/linux/generic-2.6/files/drivers
parentd2100254066a577a2f495731d21c12375f350137 (diff)
downloadmaster-31e0f0ae-404fa6621550be0caf9a989f67517d97ef1f9ec2.tar.gz
master-31e0f0ae-404fa6621550be0caf9a989f67517d97ef1f9ec2.tar.bz2
master-31e0f0ae-404fa6621550be0caf9a989f67517d97ef1f9ec2.zip
generic-2.6: make MyLoader parser compatible with the old partition tables
SVN-Revision: 14155
Diffstat (limited to 'target/linux/generic-2.6/files/drivers')
-rw-r--r--target/linux/generic-2.6/files/drivers/mtd/myloader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic-2.6/files/drivers/mtd/myloader.c b/target/linux/generic-2.6/files/drivers/mtd/myloader.c
index 60ebe22056..51c037459f 100644
--- a/target/linux/generic-2.6/files/drivers/mtd/myloader.c
+++ b/target/linux/generic-2.6/files/drivers/mtd/myloader.c
@@ -2,7 +2,7 @@
* Parse MyLoader-style flash partition tables and produce a Linux partition
* array to match.
*
- * Copyright (C) 2007-2008 Gabor Juhos <juhosg@openwrt.org>
+ * Copyright (C) 2007-2009 Gabor Juhos <juhosg@openwrt.org>
*
* This file was based on drivers/mtd/redboot.c
* Author: Red Hat, Inc. - David Woodhouse <dwmw2@cambridge.redhat.com>
@@ -133,7 +133,7 @@ int myloader_parse_partitions(struct mtd_info *master,
if (le16_to_cpu(part->type) == PARTITION_TYPE_FREE)
continue;
- if (buf->names[i][0])
+ if ((buf->names[i][0]) && (buf->names[i][0] != '\xff'))
strncpy(names, buf->names[i], PART_NAME_LEN);
else
snprintf(names, PART_NAME_LEN, "partition%d", i);