diff options
| author | acinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-06-10 22:22:48 +0000 | 
|---|---|---|
| committer | acinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-06-10 22:22:48 +0000 | 
| commit | 4f43c816a4ca405bedadc0f62ef109d210c02054 (patch) | |
| tree | 71b3dfa11315dc3c8f5f1c094a9a14cd7cf1a287 /package/base-files/files/lib | |
| parent | 638d4ea3a76ce102bbe0327c5aafb2d836d04996 (diff) | |
[package] base-files: Detect and decompressed gzipped images automatically when flashing with sysupgrade
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16407 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/lib')
| -rw-r--r-- | package/base-files/files/lib/upgrade/common.sh | 21 | 
1 files changed, 14 insertions, 7 deletions
| diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh index ef7ce57e7..018cc72f4 100644 --- a/package/base-files/files/lib/upgrade/common.sh +++ b/package/base-files/files/lib/upgrade/common.sh @@ -103,16 +103,23 @@ rootfs_type() {  	mount | awk '($3 ~ /^\/$/) && ($5 !~ /rootfs/) { print $5 }'  } -get_image() { +get_image() { # <source> [ <command> ]  	local from="$1" -	local conc="cat" +	local cmd="$2" +	local conc -	[ "$GZIPED" -eq 1 ] && conc="zcat" +	if [ -z "$cmd" ]; then +		case "$from" in +			http://*|ftp://*) cmd="wget -O- -q";; +			*) cmd="cat";; +		esac +		local magic="$(eval $cmd $from | dd bs=2 count=1 2>/dev/null | hexdump -n 2 -e '1/1 "%02x"')" +		case "$magic" in +			1f8b) conc="| zcat";; +		esac +	fi -	case "$from" in -		http://*|ftp://*) wget -O- -q "$from" | "$conc";; -		*) cat "$from" | "$conc";; -	esac +	eval "$cmd $from $conc"  }  get_magic_word() { | 
