]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
img-lib: fix unpack_img()
authorWill Woods <wwoods@redhat.com>
Thu, 8 Mar 2012 23:02:29 +0000 (18:02 -0500)
committerHarald Hoyer <harald@redhat.com>
Fri, 9 Mar 2012 10:13:08 +0000 (11:13 +0100)
- det_img should have been det_archive
- for ft=xz|gzip|bzip2, decompr should be "$ft -dc"

modules.d/99img-lib/img-lib.sh

index f6be26d3493b60f560fcf23ec490d317e89c7ade..22507aa0339211575be22f0f0dcd01412e1c1b9a 100755 (executable)
@@ -1,12 +1,13 @@
 #!/bin/sh
 # img-lib.sh: utilities for dealing with archives and filesystem images.
 #
-# TODO: identify/unpack rpm, deb?
+# TODO: identify/unpack rpm, deb, maybe others?
 
 
 # super-simple "file" that only identifies archives.
 # works with stdin if $1 is not set.
 det_archive() {
+    # NOTE: echo -e works in ash and bash, but not dash
     local bz="BZh" xz="$(echo -e '\xfd7zXZ')" gz="$(echo -e '\x1f\x8b')"
     local headerblock="$(dd ${1:+if=$1} bs=262 count=1 2>/dev/null)"
     case "$headerblock" in
@@ -32,7 +33,7 @@ unpack_archive() {
     local img="$1" outdir="$2" archiver="" decompr=""
     local ft="$(det_archive $img)"
     case "$ft" in
-        xz|gzip|bzip2) decompr="$decompr -dc" ;;
+        xz|gzip|bzip2) decompr="$ft -dc" ;;
         cpio|tar) decompr="cat";;
         *) return 1 ;;
     esac
@@ -64,7 +65,7 @@ unpack_img() {
     [ -r "$img" ] || { warn "can't read img!"; return 1; }
     [ -n "$outdir" ] || { warn "unpack_img: no output dir given"; return 1; }
 
-    if [ "$(det_img $img)" ]; then
+    if [ "$(det_archive $img)" ]; then
         unpack_archive "$@" || { warn "can't unpack archive file!"; return 1; }
     else
         unpack_fs "$@" || { warn "can't unpack filesystem image!"; return 1; }