summaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
Diffstat (limited to 'applets')
-rwxr-xr-xapplets/usage_compressed17
1 files changed, 12 insertions, 5 deletions
diff --git a/applets/usage_compressed b/applets/usage_compressed
index 551b4b4ba..05ceafd4a 100755
--- a/applets/usage_compressed
+++ b/applets/usage_compressed
@@ -14,14 +14,21 @@ exec >"$target"
14 14
15echo 'static const char packed_usage[] ALIGN1 = {' 15echo 'static const char packed_usage[] ALIGN1 = {'
16 16
17# Extra effort to avoid using "od -t x1": -t is not available 17## Breaks on big-endian systems!
18# in non-CONFIG_DESKTOPed busybox od 18## # Extra effort to avoid using "od -t x1": -t is not available
19 19## # in non-CONFIG_DESKTOPed busybox od
20"$loc/usage" | bzip2 -1 | od -v -x \ 20##
21## "$loc/usage" | bzip2 -1 | od -v -x \
22## | $SED -e 's/^[^ ]*//' \
23## | $SED -e 's/ //g' \
24## | grep -v '^$' \
25## | $SED -e 's/\(..\)\(..\)/0x\2,0x\1,/g'
26
27"$loc/usage" | bzip2 -1 | od -v -t x1 \
21| $SED -e 's/^[^ ]*//' \ 28| $SED -e 's/^[^ ]*//' \
22| $SED -e 's/ //g' \ 29| $SED -e 's/ //g' \
23| grep -v '^$' \ 30| grep -v '^$' \
24| $SED -e 's/\(..\)\(..\)/0x\2,0x\1,/g' 31| $SED -e 's/\(..\)/0x\1,/g'
25 32
26echo '};' 33echo '};'
27echo '#define SIZEOF_usage_messages' `expr 0 + $sz` 34echo '#define SIZEOF_usage_messages' `expr 0 + $sz`