summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorthepeople <thepeople@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-07-22 01:11:30 +0000
committerthepeople <thepeople@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-07-22 01:11:30 +0000
commit727db54052cb31cafb13a2b39d441045bc716b44 (patch)
treee38440ebc3d385e8bfd48495c6ca1692fe09576b /target
parentda1c9cf11b74c1b2bcff38cbe11579abfe79f24c (diff)
fix sysupgrade endian issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11900 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/x86/base-files/lib/upgrade/platform.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/x86/base-files/lib/upgrade/platform.sh b/target/linux/x86/base-files/lib/upgrade/platform.sh
index ffd0b93ab..f4c8334f3 100644
--- a/target/linux/x86/base-files/lib/upgrade/platform.sh
+++ b/target/linux/x86/base-files/lib/upgrade/platform.sh
@@ -2,7 +2,7 @@ platform_check_image() {
[ "$ARGC" -gt 1 ] && return 1
case "$(get_magic_word "$1")" in
- 48eb) return 0;;
+ eb48) return 0;;
*)
echo "Invalid image type"
return 1