diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2016-02-06 16:29:12 +0000 |
---|---|---|
committer | Rafał Miłecki <zajec5@gmail.com> | 2016-02-06 16:29:12 +0000 |
commit | b5c41ad28c31d61d6eb9a0c0f3550e75ea74e09f (patch) | |
tree | 4a27986c99e9dee059bf4ceeb83349dcf4fa7e59 /package/system/mtd/src/mtd.h | |
parent | 18bcbbfd457462d92bbb0a1854d468834c131f51 (diff) | |
download | upstream-b5c41ad28c31d61d6eb9a0c0f3550e75ea74e09f.tar.gz upstream-b5c41ad28c31d61d6eb9a0c0f3550e75ea74e09f.tar.bz2 upstream-b5c41ad28c31d61d6eb9a0c0f3550e75ea74e09f.zip |
mtd: detect image format when writing
Recently TRX checking code was changed to detect Seama format and don't
abort whole writing operation because of it. This isn't a good long-term
solution. It's a poor idea to teach every format handler recognizing all
possible formats. Instead it should be handled in a generic code which
should run check depending on the detected format.
This will also allow further improvements like fixing formats other than
TRX after replacing JFFS2.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 48639
Diffstat (limited to 'package/system/mtd/src/mtd.h')
-rw-r--r-- | package/system/mtd/src/mtd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/system/mtd/src/mtd.h b/package/system/mtd/src/mtd.h index fb37b8b9fa..751b0d09f6 100644 --- a/package/system/mtd/src/mtd.h +++ b/package/system/mtd/src/mtd.h @@ -3,7 +3,7 @@ #include <stdbool.h> -#ifdef target_brcm47xx +#if defined(target_brcm47xx) || defined(target_bcm53xx) #define target_brcm 1 #endif |