diff options
Diffstat (limited to 'applets')
-rwxr-xr-x | applets/usage_compressed | 17 |
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 | ||
15 | echo 'static const char packed_usage[] ALIGN1 = {' | 15 | echo '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 | ||
26 | echo '};' | 33 | echo '};' |
27 | echo '#define SIZEOF_usage_messages' `expr 0 + $sz` | 34 | echo '#define SIZEOF_usage_messages' `expr 0 + $sz` |