diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-08-21 08:32:12 +0000 |
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-08-21 08:32:12 +0000 |
| commit | 2957fc699207d8e855c7024f8f91c451cf018952 (patch) | |
| tree | ce3a887e3f426a23735a211a5a6aa26415fe422e /applets/usage_compressed | |
| parent | 6857e4e2f3ed59df9fe0d5ccbc518d126dd89dbc (diff) | |
| download | busybox-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/usage_compressed')
| -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` |
