projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
generic: rtl8366rb: use correct bitmasks in sanity checks
[openwrt.git]
/
target
/
linux
/
rdc
/
base-files
/
lib
/
upgrade
/
platform.sh
diff --git
a/target/linux/rdc/base-files/lib/upgrade/platform.sh
b/target/linux/rdc/base-files/lib/upgrade/platform.sh
index
6e4a7df
..
6348a69
100644
(file)
--- a/
target/linux/rdc/base-files/lib/upgrade/platform.sh
+++ b/
target/linux/rdc/base-files/lib/upgrade/platform.sh
@@
-1,16
+1,10
@@
-PART_NAME=
linux
+PART_NAME=
firmware
platform_check_image() {
platform_check_image() {
- [ "$
ARGC" -gt 1 ] && return 1
+ [ "$
(get_magic_word $(find_mtd_part firmware))" -eq "$(get_magic_word "$1")" ] && return 0
- case "$(get_magic_word "$1")" in
- # rdc .bin files for ar360w3g
- 474d) return 0;;
- *)
- echo "Invalid image type. Please use an appropriate .bin file"
- return 1
- ;;
- esac
+ echo "Invalid image type. Please use an appropriate .bin file"
+ return 1
}
# use default for platform_do_upgrade()
}
# use default for platform_do_upgrade()
This page took
0.024122 seconds
and
4
git commands to generate.