Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | New version of nohup that's much smaller, less paranoid, consistent, | Rob Landley | 2006-05-21 | 1 | -15/+0 |
| | | | | vaguely portable, and licensed GPLv2 "or later". | ||||
* | - silence warning about no return in function returning non-void | Bernhard Reutner-Fischer | 2006-05-20 | 2 | -25/+29 |
| | | | | | - put CONFIG_DEBUG_CROND_OPTION into config no changes in size when debugging is disabled. | ||||
* | - remove emacs layout block as suggested by Robert P.J. Day | Bernhard Reutner-Fischer | 2006-05-19 | 1 | -8/+0 |
| | | | | - use shorter boilerplate while at it | ||||
* | Patch from tito to replace shared memory usage with mlock(), slightly tweaked | Rob Landley | 2006-05-19 | 1 | -24/+10 |
| | | | | by me. | ||||
* | - fix invalid mode | Bernhard Reutner-Fischer | 2006-05-19 | 1 | -1/+1 |
| | |||||
* | Largeish cleanup patch from Tito, mostly if statement therapy. | Rob Landley | 2006-05-16 | 1 | -534/+350 |
| | |||||
* | pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the ↵ | Mike Frysinger | 2006-05-13 | 1 | -1/+1 |
| | | | | mailing list | ||||
* | typecast bbig to kill format warnings | Mike Frysinger | 2006-05-11 | 1 | -3/+3 |
| | |||||
* | The if() is cheaper than the extra function parameter. According to make | Rob Landley | 2006-05-08 | 1 | -26/+26 |
| | | | | bloatcheck, this saves 112 bytes on x86... | ||||
* | Cleanup patch from tito. | Rob Landley | 2006-05-07 | 1 | -379/+158 |
| | |||||
* | Patch from Dennis Vlasenko resetting values that get reused. | Rob Landley | 2006-05-05 | 1 | -5/+18 |
| | |||||
* | Remove HDIO_GETGEO_BIG which is dead (removed from 2.6) and was pointless back | Rob Landley | 2006-05-03 | 1 | -12/+4 |
| | | | | | | | | | in 2.4 (it fetched the same hd_geometry struct only with uint cylinders instead of ushort cylinders: nothing that big has ever accurately reported gemoetry, it's all LBA. Also stop declaring the hd_geometry struct static: it's two chars, a short, and a long for a grand total of 8 bytes. That can go on the stack. | ||||
* | Use ATTRIBUTE_NORETURN as suggested by tito, plus a few in-passing cleanups. | Rob Landley | 2006-05-03 | 1 | -16/+13 |
| | |||||
* | Patch from tito removing obsolete code. | Rob Landley | 2006-05-01 | 1 | -142/+11 |
| | |||||
* | Remove some unused code pointed out by Tito, plus a slightly more graceful | Rob Landley | 2006-04-29 | 1 | -35/+7 |
| | | | | way of handling endianness. | ||||
* | Style fixes from Denis Vlasenko. | Rob Landley | 2006-04-29 | 1 | -147/+146 |
| | |||||
* | Another patch from Denis Vlasenko: | Rob Landley | 2006-04-29 | 1 | -48/+42 |
| | | | | | | | | | Make hdparm smaller: * Make bb_ioctl return the status * Replace ioctl with bb_ioctl in a few places * Add bb_ioctl_alt, use where appropriate (four places) * unsigned char args1[4+512] = {WIN_IDENTIFY,0,0,1,}; ate 0.5k of rodata, fix that | ||||
* | From Dennis Vlasenko, Make hdparm smaller: | Rob Landley | 2006-04-29 | 1 | -73/+49 |
| | | | | | * Use combined no_scsi_no_xt() * Have common unsigned char args[4] = {WIN_SETFEATURES,0,0,0}; | ||||
* | Cleanup to hdparm by tito. | Rob Landley | 2006-04-29 | 1 | -12/+11 |
| | |||||
* | just include fcntl.h not sys/fcntl.h | Mike Frysinger | 2006-04-29 | 1 | -1/+1 |
| | |||||
* | Rob Sullivan writes: rewrite the regex handling to improve stability | Mike Frysinger | 2006-04-29 | 1 | -58/+51 |
| | |||||
* | Patch from tito to update output of hdparm. | Rob Landley | 2006-04-28 | 1 | -12/+22 |
| | |||||
* | - return ret so we return something meaningful. | Bernhard Reutner-Fischer | 2006-04-24 | 1 | -1/+1 |
| | |||||
* | From Rob Sullivan: Fix a segfault with searching, plus some cleanups. | Rob Landley | 2006-04-18 | 1 | -58/+49 |
| | |||||
* | Patch from Tito to fix printing null and make output look like hdparm 6.3. | Rob Landley | 2006-04-17 | 1 | -5/+5 |
| | |||||
* | just use the stack to kill memleak and return if user didnt give us anything ↵ | Mike Frysinger | 2006-04-16 | 1 | -7/+5 |
| | | | | to match | ||||
* | use xmalloc, dont hardcode length of string, and get rid of pointless call ↵ | Mike Frysinger | 2006-04-16 | 1 | -3/+2 |
| | | | | to memset | ||||
* | uncuddle if statements | Mike Frysinger | 2006-04-16 | 1 | -5/+5 |
| | |||||
* | use more boiler plate GPL notices | Mike Frysinger | 2006-04-16 | 7 | -40/+11 |
| | |||||
* | uncuddle brackets | Mike Frysinger | 2006-04-16 | 1 | -69/+78 |
| | |||||
* | Patch from Robert P Day: let menuconfig indent stuff for us, we don't have | Rob Landley | 2006-04-13 | 1 | -12/+12 |
| | | | | to do it in Config.in. | ||||
* | - patch from Denis Vlasenko to add and use bb_xopen3() | Bernhard Reutner-Fischer | 2006-04-13 | 3 | -27/+15 |
| | |||||
* | - patch from Denis Vlasenko to add and use bb_xchdir() | Bernhard Reutner-Fischer | 2006-04-12 | 3 | -19/+12 |
| | |||||
* | - patch from Denis Vlasenko to add and use bb_xdaemon() | Bernhard Reutner-Fischer | 2006-04-12 | 2 | -5/+3 |
| | |||||
* | - tweak visibility of label expected_hwif_error as it's only needed for | Bernhard Reutner-Fischer | 2006-04-11 | 1 | -0/+2 |
| | | | | CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF or CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF | ||||
* | - make sure that the label expected_hwif_error is visible even when | Bernhard Reutner-Fischer | 2006-04-05 | 1 | -15/+3 |
| | | | | CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF isn't set. | ||||
* | Clarify. | Rob Landley | 2006-03-30 | 1 | -3/+1 |
| | |||||
* | add public-domain release1_1_11_1_0 | Paul Fox | 2006-03-29 | 1 | -0/+5 |
| | |||||
* | - commentary typos | Bernhard Reutner-Fischer | 2006-03-24 | 2 | -2/+2 |
| | |||||
* | fixup style | Mike Frysinger | 2006-03-23 | 1 | -6/+3 |
| | |||||
* | dont printf arguments given by user for security sanity | Mike Frysinger | 2006-03-23 | 2 | -2/+2 |
| | |||||
* | - revert back to r14406 | Bernhard Reutner-Fischer | 2006-03-13 | 1 | -10/+18 |
| | |||||
* | Patch from Denis Vlasenko to add xstat() and use it. | Rob Landley | 2006-03-13 | 1 | -2/+1 |
| | |||||
* | - backout using features which are not available with the previous stable | Bernhard Reutner-Fischer | 2006-03-09 | 1 | -2/+6 |
| | | | | version of make (3.71.1). | ||||
* | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | 2006-03-06 | 5 | -5/+5 |
| | | | | definitions. (That should only be on prototypes.) | ||||
* | Patch from Robert P. Day, moving byte order checks to use platform.h macros. | Rob Landley | 2006-03-04 | 1 | -2/+2 |
| | |||||
* | - remove unused lists *-m | Bernhard Reutner-Fischer | 2006-03-02 | 1 | -3/+0 |
| | |||||
* | - use absolute path for top_builddir and top_srcdir. | Bernhard Reutner-Fischer | 2006-03-02 | 1 | -0/+4 |
| | | | | Fixes make trying to include the very same file in an endless loop. | ||||
* | - fixes parallel builds (make -j) | Bernhard Reutner-Fischer | 2006-03-01 | 1 | -18/+9 |
| | | | | - use less resources for the buildsystem itself | ||||
* | more security: don't start shell code from argv | "Vladimir N. Oleynik" | 2006-02-28 | 1 | -1/+1 |
| |