diff -r dec7ed8e8eaf -r 061d2617f42f openpkg/etc.wrapbin.sh --- a/openpkg/etc.wrapbin.sh Thu Aug 02 22:07:29 2012 +0200 +++ b/openpkg/etc.wrapbin.sh Thu Aug 02 22:11:13 2012 +0200 @@ -95,7 +95,7 @@ if [ ".$o_tar" = .yes ]; then tmpdir="${TMPDIR-/tmp}/openpkg.$$" ( umask 077 && mkdir $tmpdir) || exit 1 - dd if=$l_me bs=8192 skip=8 2>/dev/null |\ + dd if=$l_me bs=8192 skip=10 2>/dev/null |\ ( cd $tmpdir || exit 1 tar xf - 2>/dev/null || exit 1 ./openpkg.bzip2 -d -c openpkg.tar.bz2 @@ -166,7 +166,7 @@ # extract and install binary distribution files echo "++ extracting OpenPKG binary distribution" -dd if=$l_me bs=8192 skip=8 2>/dev/null |\ +dd if=$l_me bs=8192 skip=10 2>/dev/null |\ (cd $l_prefix; tar xf - 2>/dev/null) echo "++ installing OpenPKG binary distribution" ( cd $l_prefix || exit 1 @@ -261,7 +261,7 @@ # the distribution tarball is appended in raw format directly to the # end of this script, just leaded by padding whitespaces which make -# sure that the tarball data starts at the predefined offset of 64KB. +# sure that the tarball data starts at the predefined offset of 80KB. # This allows us to unpack the tarball by just skipping the leading -# 64KB (= 8192*8, see above). +# 80KB (= 8192*10, see above).