aboutsummaryrefslogtreecommitdiff
path: root/libbb/compare_string_array.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2006-06-01Shaun Jackman pointed out that KERNEL_VERSION() is used without guards, solandley1-2/+0
defining it in a guard is silly. git-svn-id: svn://busybox.net/trunk/busybox@15258 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-01The common case APPLET() macro only needs three arguments.landley1-232/+232
git-svn-id: svn://busybox.net/trunk/busybox@15257 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31Bugfix from Shaun Jackman: don't attempt to write 64 bytes and then fail iflandley1-1/+4
the write wasn't 192 bytes long. git-svn-id: svn://busybox.net/trunk/busybox@15256 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31Add CONFIG_NITPICK. (And tweak a couple other help entries while I'm there.)landley1-15/+37
Nothing's actually using it yet, but we need it. git-svn-id: svn://busybox.net/trunk/busybox@15255 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31Patch from Tito to remove long options from hdparm.landley3-28/+14
git-svn-id: svn://busybox.net/trunk/busybox@15254 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31Use BB endianness macro.landley1-2/+1
git-svn-id: svn://busybox.net/trunk/busybox@15253 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31Header file cleanup. platform.h apparently needs to be included early on so itlandley2-36/+21
can figure out what header files to include, and override stuff that comes later. But applets shouldn't include platform.h directly, they should include busybox.h or libbb.h. Since busybox.h already includes libbb.h, move libbb.h to the top of busybox.h and platform.h near the top of libbb.h (right after bbconfig.h, which is something platform.h also needs access to). While we're at it, move some stuff from busybox.h to libbb.h so we have one big file to audit/clean up/try to make sense of instead of many. git-svn-id: svn://busybox.net/trunk/busybox@15252 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31Add catv (separate applet instead of cat -v). Also cleanup cat.c comments,landley6-29/+82
the following of which (from cat.c) belongs in svn history instead of the source code: /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) * * This is a new implementation of 'cat' which aims to be SUSv3 compliant. * * Changes from the previous implementation include: * 1) Multiple '-' args are accepted as required by SUSv3. The previous * implementation would close stdin and segfault on a subsequent '-'. * 2) The '-u' options is required by SUSv3. Note that the specified * behavior for '-u' is done by default, so all we need do is accept * the option. */ git-svn-id: svn://busybox.net/trunk/busybox@15251 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31- fix IMA compile error i introduced when adding this untested snippet.aldot2-1/+2
git-svn-id: svn://busybox.net/trunk/busybox@15250 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31ha! a scratch-buffer! ;)aldot1-0/+25
put the isdigit hack into it to help landley out.. git-svn-id: svn://busybox.net/trunk/busybox@15249 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31- make getopt_ulflags aware of CONFIG_GETOPT_LONGaldot1-1/+10
git-svn-id: svn://busybox.net/trunk/busybox@15248 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31- add CONFIG_FEATURE_WGET_LONG_OPTIONSaldot2-0/+11
git-svn-id: svn://busybox.net/trunk/busybox@15247 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31- convert xcalloc(1,x) to xzallocaldot1-3/+3
git-svn-id: svn://busybox.net/trunk/busybox@15246 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31- shrink klogd a bitaldot1-35/+37
text data bss dec hex filename 569 0 0 569 239 sysklogd/klogd.o.orig 537 0 0 537 219 sysklogd/klogd.o git-svn-id: svn://busybox.net/trunk/busybox@15245 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31- s/defined(__uClinux__)/BB_NOMMU/aldot7-19/+19
This needs a second pass to: + add bb_daemon(unsigned char no_chdir, unsigned char no_close, const char*flag) + eventually globally export argc and argv, so we don't need to pass it to bb_daemon(). git-svn-id: svn://busybox.net/trunk/busybox@15244 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-31- conditionally define BB_NOMMUaldot1-4/+14
git-svn-id: svn://busybox.net/trunk/busybox@15243 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-05-30Since we have less than 100k of usage.h data anyway, using bzip -9 is silly.landley1-1/+1
That says use 900k chunks when compressing, which needs about 4 megs of data structures to undo the Burrows-Wheeler transform. Switching it down to bzip -1 (100k chunks) should have no impact on the compression (since it still all fits in one chunk) but should reduce runtime decompression memory requirements to something like 500k. Still larger than gunzip, but not egregiously so. git-svn-id: svn://busybox.net/trunk/busybox@15242 69ca8d6d-28ef-0310-b511-8ec308f3f277