aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/patches-3.3/408-mtd-redboot_partition_scan.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-12-17 22:28:09 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-12-17 22:28:09 +0000
commit89cd0b0fde11d77bfc284e21933bab6a8890d3de (patch)
tree07b5b46c556522f650191ac9e652c6d137175ab8 /target/linux/ar71xx/patches-3.3/408-mtd-redboot_partition_scan.patch
parentbe621b6356cd3fac9503135a5f292ed8478865db (diff)
downloadmaster-187ad058-89cd0b0fde11d77bfc284e21933bab6a8890d3de.tar.gz
master-187ad058-89cd0b0fde11d77bfc284e21933bab6a8890d3de.tar.bz2
master-187ad058-89cd0b0fde11d77bfc284e21933bab6a8890d3de.zip
ar71xx: nuke 3.3 support
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34743 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/patches-3.3/408-mtd-redboot_partition_scan.patch')
-rw-r--r--target/linux/ar71xx/patches-3.3/408-mtd-redboot_partition_scan.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/target/linux/ar71xx/patches-3.3/408-mtd-redboot_partition_scan.patch b/target/linux/ar71xx/patches-3.3/408-mtd-redboot_partition_scan.patch
deleted file mode 100644
index 59c0b08783..0000000000
--- a/target/linux/ar71xx/patches-3.3/408-mtd-redboot_partition_scan.patch
+++ /dev/null
@@ -1,45 +0,0 @@
---- a/drivers/mtd/redboot.c
-+++ b/drivers/mtd/redboot.c
-@@ -76,6 +76,11 @@ static int parse_redboot_partitions(stru
- static char nullstring[] = "unallocated";
- #endif
-
-+ buf = vmalloc(master->erasesize);
-+ if (!buf)
-+ return -ENOMEM;
-+
-+ restart:
- if ( directory < 0 ) {
- offset = master->size + directory * master->erasesize;
- while (mtd_can_have_bb(master) &&
-@@ -83,6 +88,7 @@ static int parse_redboot_partitions(stru
- if (!offset) {
- nogood:
- printk(KERN_NOTICE "Failed to find a non-bad block to check for RedBoot partition table\n");
-+ vfree(buf);
- return -EIO;
- }
- offset -= master->erasesize;
-@@ -96,10 +102,6 @@ static int parse_redboot_partitions(stru
- goto nogood;
- }
- }
-- buf = vmalloc(master->erasesize);
--
-- if (!buf)
-- return -ENOMEM;
-
- printk(KERN_NOTICE "Searching for RedBoot partition table in %s at offset 0x%lx\n",
- master->name, offset);
-@@ -172,6 +174,11 @@ static int parse_redboot_partitions(stru
- }
- if (i == numslots) {
- /* Didn't find it */
-+ if (offset + master->erasesize < master->size) {
-+ /* not at the end of the flash yet, maybe next block :) */
-+ directory++;
-+ goto restart;
-+ }
- printk(KERN_NOTICE "No RedBoot partition table detected in %s\n",
- master->name);
- ret = 0;