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
|
|
|
|
|
|
|
|
sz=`"$loc/usage" | wc -c` || exit 1
|
|
|
|
|
|
|
|
exec >"$target"
|
2006-04-28 05:04:46 +05:30
|
|
|
|
2008-02-09 14:56:43 +05:30
|
|
|
echo 'static const char packed_usage[] ALIGN1 = {'
|
|
|
|
|
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/^[^ ]*//' \
|
|
|
|
## | $SED -e 's/ //g' \
|
|
|
|
## | grep -v '^$' \
|
|
|
|
## | $SED -e 's/\(..\)\(..\)/0x\2,0x\1,/g'
|
|
|
|
|
2009-08-21 03:04:01 +05:30
|
|
|
"$loc/usage" | bzip2 -1 | dd bs=2 skip=1 | od -v -t x1 \
|
2008-02-09 14:56:43 +05:30
|
|
|
| $SED -e 's/^[^ ]*//' \
|
|
|
|
| $SED -e 's/ //g' \
|
|
|
|
| grep -v '^$' \
|
2008-08-10 02:01:57 +05:30
|
|
|
| $SED -e 's/\(..\)/0x\1,/g'
|
2008-02-09 14:56:43 +05:30
|
|
|
|
|
|
|
echo '};'
|
2006-05-26 18:58:39 +05:30
|
|
|
echo '#define SIZEOF_usage_messages' `expr 0 + $sz`
|