6 test "$target" ||
exit 1
8 test -x "$loc/usage" ||
exit 1
11 sz
=`"$loc/usage" | wc -c` ||
exit 1
15 echo 'static const char packed_usage[] ALIGN1 = {'
17 ## Breaks on big-endian systems!
18 ## # Extra effort to avoid using "od -t x1": -t is not available
19 ## # in non-CONFIG_DESKTOPed busybox od
21 ## "$loc/usage" | bzip2 -1 | od -v -x \
22 ## | $SED -e 's/^[^ ]*//' \
23 ## | $SED -e 's/ //g' \
25 ## | $SED -e 's/\(..\)\(..\)/0x\2,0x\1,/g'
27 "$loc/usage" |
bzip2 -1 |
od -v -t x1 \
28 |
$SED -e 's/^[^ ]*//' \
31 |
$SED -e 's/\(..\)/0x\1,/g'
34 echo '#define SIZEOF_usage_messages' `expr 0 + $sz`