summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorhauke <hauke@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-05-23 17:02:43 +0000
committerhauke <hauke@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-05-23 17:02:43 +0000
commita325f45fb4a2b8b5df5d4758b97c38f6ea79bf69 (patch)
tree7ae4d43535a38393080520aade9d3f395da23e4f /target
parentde5e66066d939a574e3b014ff659de54f3b51e1c (diff)
orion: fix build
This patch does not apply any more because of changes in target/linux/generic-2.6/patches-2.6.32/089-mtd-samsung-flash.patch TODO: find out if this patch is still needed. Fixes build problem decsripted in #7348. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21551 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/orion/patches/050-wrt350nv2_cfi_workaround.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/orion/patches/050-wrt350nv2_cfi_workaround.patch b/target/linux/orion/patches/050-wrt350nv2_cfi_workaround.patch
index 246276d1f..f10f89e78 100644
--- a/target/linux/orion/patches/050-wrt350nv2_cfi_workaround.patch
+++ b/target/linux/orion/patches/050-wrt350nv2_cfi_workaround.patch
@@ -4,10 +4,10 @@
cfi_fixup_major_minor(cfi, extp);
-- if (extp->MajorVersion != '1' ||
+- if (extp->MajorVersion < '0' || extp->MajorVersion > '3' ||
- (extp->MinorVersion < '0' || extp->MinorVersion > '4')) {
+ if ((extp->MajorVersion != '0' && extp->MinorVersion != '0') &&
-+ (extp->MajorVersion != '1' ||
++ (extp->MajorVersion < '0' || extp->MajorVersion > '3' ||
+ (extp->MinorVersion < '0' || extp->MinorVersion > '4'))) {
if (cfi->mfr == MANUFACTURER_SAMSUNG &&
(extp->MajorVersion == '3' && extp->MinorVersion == '3')) {