mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 22:24:39 +02:00
[package] base-files: Add support for bzipped images in sysupgrade
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16408 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
4f43c816a4
commit
337bcd03ce
@ -45,7 +45,7 @@ pivot() { # <new_root> <old_root>
|
|||||||
}
|
}
|
||||||
|
|
||||||
run_ramfs() { # <command> [...]
|
run_ramfs() { # <command> [...]
|
||||||
install_bin /bin/busybox /bin/ash /bin/sh /bin/mount /bin/umount /sbin/pivot_root /usr/bin/wget /sbin/reboot /bin/sync /bin/dd /bin/grep /bin/cp /bin/mv /bin/tar /usr/bin/md5sum "/usr/bin/[" /bin/vi /bin/ls /bin/cat /usr/bin/awk /usr/bin/hexdump /bin/sleep /bin/zcat
|
install_bin /bin/busybox /bin/ash /bin/sh /bin/mount /bin/umount /sbin/pivot_root /usr/bin/wget /sbin/reboot /bin/sync /bin/dd /bin/grep /bin/cp /bin/mv /bin/tar /usr/bin/md5sum "/usr/bin/[" /bin/vi /bin/ls /bin/cat /usr/bin/awk /usr/bin/hexdump /bin/sleep /bin/zcat /usr/bin/bzcat
|
||||||
install_bin /sbin/mtd
|
install_bin /sbin/mtd
|
||||||
for file in $RAMFS_COPY_BIN; do
|
for file in $RAMFS_COPY_BIN; do
|
||||||
install_bin $file
|
install_bin $file
|
||||||
@ -116,6 +116,7 @@ get_image() { # <source> [ <command> ]
|
|||||||
local magic="$(eval $cmd $from | dd bs=2 count=1 2>/dev/null | hexdump -n 2 -e '1/1 "%02x"')"
|
local magic="$(eval $cmd $from | dd bs=2 count=1 2>/dev/null | hexdump -n 2 -e '1/1 "%02x"')"
|
||||||
case "$magic" in
|
case "$magic" in
|
||||||
1f8b) conc="| zcat";;
|
1f8b) conc="| zcat";;
|
||||||
|
425a) conc="| bzcat";;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user