2006-04-27 23:34:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
target="$1"
|
|
|
|
loc="$2"
|
2006-04-27 23:34:46 +00:00
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
test "$target" || exit 1
|
2006-04-27 23:34:46 +00:00
|
|
|
test "$loc" || loc=.
|
2006-05-21 10:45:01 +00:00
|
|
|
test -x "$loc/usage" || exit 1
|
2006-10-05 10:17:08 +00:00
|
|
|
test "$SED" || SED=sed
|
2009-10-27 16:05:31 +00:00
|
|
|
test "$DD" || DD=dd
|
2006-10-05 10:17:08 +00:00
|
|
|
|
2010-09-16 13:46:20 +00:00
|
|
|
# Some people were bitten by their system lacking a (proper) od
|
|
|
|
od -v -t x1 </dev/null >/dev/null
|
2010-09-16 11:23:15 +00:00
|
|
|
if test $? != 0; then
|
|
|
|
echo 'od tool is not installed or cannot accept "-v -t x1" options'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2010-07-04 21:34:02 +00:00
|
|
|
exec >"$target.$$"
|
2006-04-27 23:34:46 +00:00
|
|
|
|
2010-06-06 02:14:28 +00:00
|
|
|
echo '#define UNPACKED_USAGE "" \'
|
2010-06-05 21:11:07 +00:00
|
|
|
"$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 09:26:43 +00:00
|
|
|
|
2010-06-05 21:11:07 +00:00
|
|
|
echo '#define PACKED_USAGE \'
|
2008-08-09 20:31:57 +00:00
|
|
|
## 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 10:39:10 +00:00
|
|
|
##
|
2008-08-09 20:31:57 +00:00
|
|
|
## "$loc/usage" | bzip2 -1 | od -v -x \
|
|
|
|
## | $SED -e 's/^[^ ]*//' \
|
2010-01-25 12:39:24 +00:00
|
|
|
## -e 's/ //g' \
|
|
|
|
## -e '/^$/d' \
|
|
|
|
## -e 's/\(..\)\(..\)/0x\2,0x\1,/g'
|
2010-06-05 21:11:07 +00:00
|
|
|
## -e 's/$/ \\/'
|
2009-10-27 16:05:31 +00:00
|
|
|
"$loc/usage" | bzip2 -1 | $DD bs=2 skip=1 2>/dev/null | od -v -t x1 \
|
2008-02-09 09:26:43 +00:00
|
|
|
| $SED -e 's/^[^ ]*//' \
|
2009-10-27 16:05:31 +00:00
|
|
|
-e 's/ //g' \
|
|
|
|
-e '/^$/d' \
|
2010-06-05 21:11:07 +00:00
|
|
|
-e 's/\(..\)/0x\1,/g' \
|
|
|
|
-e 's/$/ \\/'
|
|
|
|
echo ''
|
2010-07-04 21:34:02 +00:00
|
|
|
|
2010-07-08 00:29:47 +00:00
|
|
|
mv -- "$target.$$" "$target"
|