aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/orion/generic/base-files/lib/upgrade/platform.sh
diff options
context:
space:
mode:
authorAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-01-05 14:06:30 +0100
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-01-08 16:45:08 +0100
commit89f2deb372b74f9d4bb030c31b4ec28d579ee41f (patch)
tree4479c2d816d1804a02dc88e17159e5bb232708ca /target/linux/orion/generic/base-files/lib/upgrade/platform.sh
parent4bc92c1e7526ee48e04c25ec4b468e7527e18b6e (diff)
downloadupstream-89f2deb372b74f9d4bb030c31b4ec28d579ee41f.tar.gz
upstream-89f2deb372b74f9d4bb030c31b4ec28d579ee41f.tar.bz2
upstream-89f2deb372b74f9d4bb030c31b4ec28d579ee41f.zip
orion: remove unmaintained target
This target seems to have been unmaintained for quite a while, and not a single tester for the (now outdated) kernel 4.14 patches has been found. Remove the code and all the packages which are only used by this target. To add this target to OpenWrt again port it to a recent and supported kernel version. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/orion/generic/base-files/lib/upgrade/platform.sh')
-rw-r--r--target/linux/orion/generic/base-files/lib/upgrade/platform.sh38
1 files changed, 0 insertions, 38 deletions
diff --git a/target/linux/orion/generic/base-files/lib/upgrade/platform.sh b/target/linux/orion/generic/base-files/lib/upgrade/platform.sh
deleted file mode 100644
index cf1fad83a8..0000000000
--- a/target/linux/orion/generic/base-files/lib/upgrade/platform.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# Copyright (C) 2010-2011 OpenWrt.org
-#
-
-# use default "image" for PART_NAME
-# use default for platform_do_upgrade()
-
-platform_check_image() {
- [ "$#" -gt 1 ] && { echo 'Too many arguments. Only flash file expected.'; return 1; }
-
- local hardware="$(board_name)"
- local magic="$(get_magic_word "$1")"
- local magic_long="$(get_magic_long "$1")"
-
- case "${hardware}" in
- # hardware with a direct uImage partition
- # image header format as described in U-Boot's include/image.h
- # see http://git.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=blob;f=include/image.h
- 'Linksys WRT350N v2')
- [ "${magic_long}" != '27051956' ] && {
- echo "Invalid image type ${magic_long}."
- return 1
- }
- return 0
- ;;
- # Netgear WNR854T (has uImage as file inside a JFFS2 partition)
- 'Netgear WNR854T')
- [ "${magic}" != '8519' ] && {
- echo "Invalid image type ${magic}."
- return 1
- }
- return 0
- ;;
- esac
-
- echo "Sysupgrade is not yet supported on ${hardware}."
- return 1
-}