diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2014-12-15 08:51:14 +0000 |
---|---|---|
committer | Rafał Miłecki <zajec5@gmail.com> | 2014-12-15 08:51:14 +0000 |
commit | b5b4bdc066e047a2160bc4de7a0d952970153556 (patch) | |
tree | 6149f87a4445f78e958b07387b7f77a371c320dc /target/linux | |
parent | c927daaf760c4b11db799dd33f75b813c9a8657e (diff) | |
download | upstream-b5b4bdc066e047a2160bc4de7a0d952970153556.tar.gz upstream-b5b4bdc066e047a2160bc4de7a0d952970153556.tar.bz2 upstream-b5b4bdc066e047a2160bc4de7a0d952970153556.zip |
brcm47xx: use separated function in upgrade to detect file type
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 43708
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/brcm47xx/base-files/lib/upgrade/platform.sh | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/target/linux/brcm47xx/base-files/lib/upgrade/platform.sh b/target/linux/brcm47xx/base-files/lib/upgrade/platform.sh index 48885b1632..d216ca4d04 100644 --- a/target/linux/brcm47xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/brcm47xx/base-files/lib/upgrade/platform.sh @@ -1,11 +1,30 @@ PART_NAME=firmware +brcm47xx_identify() { + local magic + + magic=$(get_magic_long "$1") + case "$magic" in + "48445230") + echo "trx" + return + ;; + "2a23245e") + echo "chk" + return + ;; + esac + + echo "unknown" +} + platform_check_image() { [ "$#" -gt 1 ] && return 1 - case "$(get_magic_word "$1")" in - # .trx files - 4844) return 0;; + local file_type=$(brcm47xx_identify "$1") + + case "$file_type" in + "trx") return 0;; *) echo "Invalid image type. Please use only .trx files" return 1 |