Re: [OpenWrt-Devel] [patch] target orion_generic: use magic_long in sysupgrade

2012-04-04 Thread Florian Fainelli



Le 12/04/11 20:21, Matthias Buecher / Germany a écrit :

Signed-off-by: Matthias Bücherm...@maddes.net


Applied in r31200, thanks Matthias!
--
Florian
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [patch] target orion_generic: use magic_long in sysupgrade

2011-12-16 Thread Matthias Buecher / Germany
Is anybody so kind and can commit this patch too.
http://patchwork.openwrt.org/patch/1645/

Thanks
Maddes


On 04.12.2011 20:21, Matthias Buecher / Germany wrote:
 Signed-off-by: Matthias Bücher m...@maddes.net
 
 
 Patch is attached and inline for comments
 
 Regards
 Maddes
 
 
 Index: target/linux/orion/generic/base-files/lib/upgrade/platform.sh
 ===
 --- target/linux/orion/generic/base-files/lib/upgrade/platform.sh
 (revision 29422)
 +++ target/linux/orion/generic/base-files/lib/upgrade/platform.sh
 (working copy)
 @@ -1,3 +1,7 @@
 +#
 +# Copyright (C) 2010-2011 OpenWrt.org
 +#
 +
  # use default image for PART_NAME
  # use default for platform_do_upgrade()
 
 @@ -6,17 +10,20 @@
 
   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 padded uImage + padded rootfs
 +  # 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} != '2705' ]  {
 - echo Invalid image type ${magic}.
 + [ ${magic_long} != '27051956' ]  {
 + echo Invalid image type ${magic_long}.
   return 1
   }
   return 0
   ;;
 -  # Netgear WNR854T has extra header before uImage
 +  # Netgear WNR854T (has uImage as file inside a JFFS2 partition)
'Netgear WNR854T')
   [ ${magic} != '8519' ]  {
   echo Invalid image type ${magic}.
 
 
 
 ___
 openwrt-devel mailing list
 openwrt-devel@lists.openwrt.org
 https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Matthias Maddes Bücher

-- 
http://www.maddes.net/
Home: Earth / Germany / Ruhr-Area
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [patch] target orion_generic: use magic_long in sysupgrade

2011-12-04 Thread Matthias Buecher / Germany
Signed-off-by: Matthias Bücher m...@maddes.net


Patch is attached and inline for comments

Regards
Maddes


Index: target/linux/orion/generic/base-files/lib/upgrade/platform.sh
===
--- target/linux/orion/generic/base-files/lib/upgrade/platform.sh
(revision 29422)
+++ target/linux/orion/generic/base-files/lib/upgrade/platform.sh
(working copy)
@@ -1,3 +1,7 @@
+#
+# Copyright (C) 2010-2011 OpenWrt.org
+#
+
 # use default image for PART_NAME
 # use default for platform_do_upgrade()

@@ -6,17 +10,20 @@

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 padded uImage + padded rootfs
+# 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} != '2705' ]  {
-   echo Invalid image type ${magic}.
+   [ ${magic_long} != '27051956' ]  {
+   echo Invalid image type ${magic_long}.
return 1
}
return 0
;;
-# Netgear WNR854T has extra header before uImage
+# Netgear WNR854T (has uImage as file inside a JFFS2 partition)
 'Netgear WNR854T')
[ ${magic} != '8519' ]  {
echo Invalid image type ${magic}.
Index: target/linux/orion/generic/base-files/lib/upgrade/platform.sh
===
--- target/linux/orion/generic/base-files/lib/upgrade/platform.sh	(revision 29422)
+++ target/linux/orion/generic/base-files/lib/upgrade/platform.sh	(working copy)
@@ -1,3 +1,7 @@
+#
+# Copyright (C) 2010-2011 OpenWrt.org
+#
+
 # use default image for PART_NAME
 # use default for platform_do_upgrade()
 
@@ -6,17 +10,20 @@
 
 	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 padded uImage + padded rootfs
+	 # 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} != '2705' ]  {
-			echo Invalid image type ${magic}.
+		[ ${magic_long} != '27051956' ]  {
+			echo Invalid image type ${magic_long}.
 			return 1
 		}
 		return 0
 		;;
-	 # Netgear WNR854T has extra header before uImage
+	 # Netgear WNR854T (has uImage as file inside a JFFS2 partition)
 	 'Netgear WNR854T')
 		[ ${magic} != '8519' ]  {
 			echo Invalid image type ${magic}.
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel