summaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-08-21 08:32:12 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-08-21 08:32:12 +0000
commit2957fc699207d8e855c7024f8f91c451cf018952 (patch)
treece3a887e3f426a23735a211a5a6aa26415fe422e /applets
parent6857e4e2f3ed59df9fe0d5ccbc518d126dd89dbc (diff)
downloadbusybox-w32-1_11_2.tar.gz
busybox-w32-1_11_2.tar.bz2
busybox-w32-1_11_2.zip
apply post-1.11.1 patches, bump version to 1.11.21_11_2
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`