diff options
author | acoul <acoul@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-11-04 22:10:11 +0000 |
---|---|---|
committer | acoul <acoul@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-11-04 22:10:11 +0000 |
commit | 2923cd71cd14506050c171cdac678c4b5ef56cbf (patch) | |
tree | e2715128cb9e5a901c88775cf3fe371fbc0f8607 /target/linux/orion/base-files/lib/upgrade | |
parent | 21acc97c7e5defbf6634c2ea963749d467649583 (diff) |
target/linux/orion: create subtargets (closes #8154)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23883 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/orion/base-files/lib/upgrade')
-rw-r--r-- | target/linux/orion/base-files/lib/upgrade/platform.sh | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/orion/base-files/lib/upgrade/platform.sh b/target/linux/orion/base-files/lib/upgrade/platform.sh deleted file mode 100644 index fdd26c5176..0000000000 --- a/target/linux/orion/base-files/lib/upgrade/platform.sh +++ /dev/null @@ -1,31 +0,0 @@ -# use default "image" for PART_NAME -# use default for platform_do_upgrade() - -platform_check_image() { - [ "${ARGC}" -gt 1 ] && { echo 'Too many arguments. Only flash file expected.'; return 1; } - - local hardware=`sed -n /Hardware/s/.*:.//p /proc/cpuinfo` - local magic="$(get_magic_word "$1")" - - case "${hardware}" in - # hardware with padded uImage + padded rootfs - 'Linksys WRT350N v2') - [ "${magic}" != '2705' ] && { - echo "Invalid image type ${magic}." - return 1 - } - return 0 - ;; - # Netgear WNR854T has extra header before uImage - 'Netgear WNR854T') - [ "${magic}" != '8519' ] && { - echo "Invalid image type ${magic}." - return 1 - } - return 0 - ;; - esac - - echo "Sysupgrade is not yet supported on ${hardware}." - return 1 -} |