diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2007-02-06 16:18:12 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2007-02-06 16:18:12 +0000 |
commit | 7deacb0d2d03a1a1c2563cc84329bd0ce37bbcc4 (patch) | |
tree | 2c80426078ff0347a90f3f5a0316695f860ee5d2 /package/busybox/busybox-1.4.1-binhex.patch | |
parent | bbd6fcad745f7009b2e2389c3394eac20bf54e59 (diff) | |
download | buildroot-novena-7deacb0d2d03a1a1c2563cc84329bd0ce37bbcc4.tar.gz buildroot-novena-7deacb0d2d03a1a1c2563cc84329bd0ce37bbcc4.zip |
busybox 1.4.1 support
Diffstat (limited to 'package/busybox/busybox-1.4.1-binhex.patch')
-rw-r--r-- | package/busybox/busybox-1.4.1-binhex.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.4.1-binhex.patch b/package/busybox/busybox-1.4.1-binhex.patch new file mode 100644 index 000000000..dc2ab1adb --- /dev/null +++ b/package/busybox/busybox-1.4.1-binhex.patch @@ -0,0 +1,24 @@ +--- busybox-1.4.1/include/libbb.h Wed Jan 24 22:34:48 2007 ++++ busybox-1.4.1-binhex/include/libbb.h Sat Jan 27 00:32:01 2007 +@@ -690,7 +690,7 @@ + extern const char bb_msg_standard_output[]; + + extern const char bb_str_default[]; +-/* NB: (bb_hexdigits_upcase[i] | 0x10) -> lowercase hex digit */ ++/* NB: (bb_hexdigits_upcase[i] | 0x20) -> lowercase hex digit */ + extern const char bb_hexdigits_upcase[]; + + extern const char bb_path_mtab_file[]; +--- busybox-1.4.1/libbb/xfuncs.c Wed Jan 24 22:49:25 2007 ++++ busybox-1.4.1-binhex/libbb/xfuncs.c Sat Jan 27 00:32:01 2007 +@@ -340,8 +340,8 @@ + while (count) { + unsigned char c = *cp++; + /* put lowercase hex digits */ +- *p++ = 0x10 | bb_hexdigits_upcase[c >> 4]; +- *p++ = 0x10 | bb_hexdigits_upcase[c & 0xf]; ++ *p++ = 0x20 | bb_hexdigits_upcase[c >> 4]; ++ *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf]; + count--; + } + return p; |