2006-04-28 05:04:46 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
target="$1"
|
|
|
|
loc="$2"
|
2006-04-28 05:04:46 +05:30
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
test "$target" || exit 1
|
2006-04-28 05:04:46 +05:30
|
|
|
test "$loc" || loc=.
|
2006-05-21 16:15:01 +05:30
|
|
|
test -x "$loc/usage" || exit 1
|
2006-10-05 15:47:08 +05:30
|
|
|
test "$SED" || SED=sed
|
2009-10-27 21:35:31 +05:30
|
|
|
test "$DD" || DD=dd
|
2006-10-05 15:47:08 +05:30
|
|
|
|
2010-07-05 03:04:02 +05:30
|
|
|
exec >"$target.$$"
|
2006-04-28 05:04:46 +05:30
|
|
|
|
2010-06-06 07:44:28 +05:30
|
|
|
echo '#define UNPACKED_USAGE "" \'
|
2010-06-06 02:41:07 +05:30
|
|
|
"$loc/usage" | od -v -t x1 \
|
|
|
|
| $SED -e 's/^[^ ]*//' \
|
|
|
|
-e 's/ //g' \
|
|
|
|
-e '/^$/d' \
|
|
|
|
-e 's/\(..\)/\\x\1/g' \
|
|
|
|
-e 's/^/"/' \
|
|
|
|
-e 's/$/" \\/'
|
|
|
|
echo ''
|
2008-02-09 14:56:43 +05:30
|
|
|
|
2010-06-06 02:41:07 +05:30
|
|
|
echo '#define PACKED_USAGE \'
|
2008-08-10 02:01:57 +05:30
|
|
|
## Breaks on big-endian systems!
|
|
|
|
## # Extra effort to avoid using "od -t x1": -t is not available
|
|
|
|
## # in non-CONFIG_DESKTOPed busybox od
|
2008-09-25 16:09:10 +05:30
|
|
|
##
|
2008-08-10 02:01:57 +05:30
|
|
|
## "$loc/usage" | bzip2 -1 | od -v -x \
|
|
|
|
## | $SED -e 's/^[^ ]*//' \
|
2010-01-25 18:09:24 +05:30
|
|
|
## -e 's/ //g' \
|
|
|
|
## -e '/^$/d' \
|
|
|
|
## -e 's/\(..\)\(..\)/0x\2,0x\1,/g'
|
2010-06-06 02:41:07 +05:30
|
|
|
## -e 's/$/ \\/'
|
2009-10-27 21:35:31 +05:30
|
|
|
"$loc/usage" | bzip2 -1 | $DD bs=2 skip=1 2>/dev/null | od -v -t x1 \
|
2008-02-09 14:56:43 +05:30
|
|
|
| $SED -e 's/^[^ ]*//' \
|
2009-10-27 21:35:31 +05:30
|
|
|
-e 's/ //g' \
|
|
|
|
-e '/^$/d' \
|
2010-06-06 02:41:07 +05:30
|
|
|
-e 's/\(..\)/0x\1,/g' \
|
|
|
|
-e 's/$/ \\/'
|
|
|
|
echo ''
|
2010-07-05 03:04:02 +05:30
|
|
|
|
2010-07-08 05:59:47 +05:30
|
|
|
mv -- "$target.$$" "$target"
|