Browse Source

generic-2.6: make MyLoader parser compatible with the old partition tables

SVN-Revision: 14155
Gabor Juhos 17 years ago
parent
commit
404fa66215
1 changed files with 2 additions and 2 deletions
  1. 2 2
      target/linux/generic-2.6/files/drivers/mtd/myloader.c

+ 2 - 2
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 <[email protected]>
+ *  Copyright (C) 2007-2009 Gabor Juhos <[email protected]>
  *
  *  This file was based on drivers/mtd/redboot.c
  *  Author: Red Hat, Inc. - David Woodhouse <[email protected]>
@@ -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);