aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/orion/patches-2.6.32/050-wrt350nv2_cfi_workaround.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@openwrt.org>2010-06-06 10:51:52 +0000
committerHauke Mehrtens <hauke@openwrt.org>2010-06-06 10:51:52 +0000
commit9d9eb999e17f98809f2e698f01fa2acff87f83b0 (patch)
treecf19645de2e65983f53a1a959c8de8d43955763c /target/linux/orion/patches-2.6.32/050-wrt350nv2_cfi_workaround.patch
parente69562eb2892d3be7397a002fdbb74d71e66c673 (diff)
downloadupstream-9d9eb999e17f98809f2e698f01fa2acff87f83b0.tar.gz
upstream-9d9eb999e17f98809f2e698f01fa2acff87f83b0.tar.bz2
upstream-9d9eb999e17f98809f2e698f01fa2acff87f83b0.zip
orion: Update Orion in trunk to kernel 2.6.34.
Was flashed on WRT350Nv2, booted and is running for several days. Closes #7405 Thank you maddes for your patch. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21682 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/orion/patches-2.6.32/050-wrt350nv2_cfi_workaround.patch')
-rw-r--r--target/linux/orion/patches-2.6.32/050-wrt350nv2_cfi_workaround.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/target/linux/orion/patches-2.6.32/050-wrt350nv2_cfi_workaround.patch b/target/linux/orion/patches-2.6.32/050-wrt350nv2_cfi_workaround.patch
new file mode 100644
index 0000000000..f10f89e789
--- /dev/null
+++ b/target/linux/orion/patches-2.6.32/050-wrt350nv2_cfi_workaround.patch
@@ -0,0 +1,14 @@
+--- a/drivers/mtd/chips/cfi_cmdset_0002.c
++++ b/drivers/mtd/chips/cfi_cmdset_0002.c
+@@ -374,8 +374,9 @@ struct mtd_info *cfi_cmdset_0002(struct
+
+ cfi_fixup_major_minor(cfi, extp);
+
+- if (extp->MajorVersion < '0' || extp->MajorVersion > '3' ||
+- (extp->MinorVersion < '0' || extp->MinorVersion > '4')) {
++ if ((extp->MajorVersion != '0' && extp->MinorVersion != '0') &&
++ (extp->MajorVersion < '0' || extp->MajorVersion > '3' ||
++ (extp->MinorVersion < '0' || extp->MinorVersion > '4'))) {
+ if (cfi->mfr == MANUFACTURER_SAMSUNG &&
+ (extp->MajorVersion == '3' && extp->MinorVersion == '3')) {
+ printk(KERN_NOTICE " Newer Samsung flash detected, "