diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2016-01-27 10:40:58 +0000 |
---|---|---|
committer | Rafał Miłecki <zajec5@gmail.com> | 2016-01-27 10:40:58 +0000 |
commit | 1dfa8f37db2a4778bf664b32c05e1630bb281699 (patch) | |
tree | 4c2b0d8cedf202f0be8e75b576f146f31f3b919f /target/linux/bcm53xx | |
parent | 81e8e02289ef8ffd8c061524e4310f700177e732 (diff) | |
download | upstream-1dfa8f37db2a4778bf664b32c05e1630bb281699.tar.gz upstream-1dfa8f37db2a4778bf664b32c05e1630bb281699.tar.bz2 upstream-1dfa8f37db2a4778bf664b32c05e1630bb281699.zip |
bcm53xx: detect Seama sysupgrade format
It's used e.g. by D-Link devices. We don't support it yet.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 48509
Diffstat (limited to 'target/linux/bcm53xx')
-rw-r--r-- | target/linux/bcm53xx/base-files/lib/upgrade/platform.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/target/linux/bcm53xx/base-files/lib/upgrade/platform.sh b/target/linux/bcm53xx/base-files/lib/upgrade/platform.sh index eff7affe04..e9a3dc4950 100644 --- a/target/linux/bcm53xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/bcm53xx/base-files/lib/upgrade/platform.sh @@ -44,6 +44,10 @@ platform_identify() { echo "chk" return ;; + "5ea3a417") + echo "seama" + return + ;; esac magic=$(get_magic_long_at "$1" 14) @@ -95,6 +99,10 @@ platform_check_image() { error=1 fi ;; + "seama") + echo "Seama firmware format is unsupported" + error=1 + ;; "trx") if ! otrx check "$1"; then echo "Invalid (corrupted?) TRX firmware" |