aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/orion/generic/base-files/lib
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/orion/generic/base-files/lib')
-rw-r--r--target/linux/orion/generic/base-files/lib/.svn/entries31
-rw-r--r--target/linux/orion/generic/base-files/lib/upgrade/.svn/entries62
-rw-r--r--target/linux/orion/generic/base-files/lib/upgrade/.svn/text-base/platform.sh.svn-base38
-rw-r--r--target/linux/orion/generic/base-files/lib/upgrade/platform.sh38
4 files changed, 169 insertions, 0 deletions
diff --git a/target/linux/orion/generic/base-files/lib/.svn/entries b/target/linux/orion/generic/base-files/lib/.svn/entries
new file mode 100644
index 0000000..25f356c
--- /dev/null
+++ b/target/linux/orion/generic/base-files/lib/.svn/entries
@@ -0,0 +1,31 @@
+10
+
+dir
+36060
+svn://svn.openwrt.org/openwrt/trunk/target/linux/orion/generic/base-files/lib
+svn://svn.openwrt.org/openwrt
+
+
+
+2012-04-04T16:06:29.295841Z
+31200
+florian
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+3c298f89-4303-0410-b956-a3cf2f4a3e73
+
+upgrade
+dir
+
diff --git a/target/linux/orion/generic/base-files/lib/upgrade/.svn/entries b/target/linux/orion/generic/base-files/lib/upgrade/.svn/entries
new file mode 100644
index 0000000..249b15f
--- /dev/null
+++ b/target/linux/orion/generic/base-files/lib/upgrade/.svn/entries
@@ -0,0 +1,62 @@
+10
+
+dir
+36060
+svn://svn.openwrt.org/openwrt/trunk/target/linux/orion/generic/base-files/lib/upgrade
+svn://svn.openwrt.org/openwrt
+
+
+
+2012-04-04T16:06:29.295841Z
+31200
+florian
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+3c298f89-4303-0410-b956-a3cf2f4a3e73
+
+platform.sh
+file
+
+
+
+
+2013-03-17T12:12:16.000000Z
+a05181f24c1341206a7504c029cd4851
+2012-04-04T16:06:29.295841Z
+31200
+florian
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+1001
+
diff --git a/target/linux/orion/generic/base-files/lib/upgrade/.svn/text-base/platform.sh.svn-base b/target/linux/orion/generic/base-files/lib/upgrade/.svn/text-base/platform.sh.svn-base
new file mode 100644
index 0000000..9c9967e
--- /dev/null
+++ b/target/linux/orion/generic/base-files/lib/upgrade/.svn/text-base/platform.sh.svn-base
@@ -0,0 +1,38 @@
+#
+# Copyright (C) 2010-2011 OpenWrt.org
+#
+
+# 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")"
+ 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
+}
diff --git a/target/linux/orion/generic/base-files/lib/upgrade/platform.sh b/target/linux/orion/generic/base-files/lib/upgrade/platform.sh
new file mode 100644
index 0000000..9c9967e
--- /dev/null
+++ b/target/linux/orion/generic/base-files/lib/upgrade/platform.sh
@@ -0,0 +1,38 @@
+#
+# Copyright (C) 2010-2011 OpenWrt.org
+#
+
+# 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")"
+ 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
+}