aboutsummaryrefslogtreecommitdiff
path: root/util-linux
AgeCommit message (Collapse)Author
2003-07-26There should be only one instance of CONFIG_FEATURE_AUTOWIDTHEric Andersen
2003-07-26Don't depend on CONFIG_LFS. It is really a suggestion, not a requirement,Eric Andersen
since fdisk will work just fine on smaller disks w/o it.
2003-07-22Remove remaining libc5 support codeEric Andersen
2003-07-22Very minor rdate updatesEric Andersen
2003-07-22Error out early if people try to build mount with nfs supportEric Andersen
using uClibc, but have not enabled UCLIBC_HAS_RPC... -Erik
2003-07-14Update a bunch of docs. Run a script to update my email addr.Eric Andersen
2003-07-14Use standard typesEric Andersen
2003-07-14Require that LFS is enabled to get fdiskEric Andersen
2003-07-14Remove all the llseek junk and just use regular old lseek. When DOLFS isEric Andersen
enabled, regular lseek is transparently promoted to lseek64 anyways, rendering the llseek stuff pointless. -Erik
2003-07-05Add the fdformat utility, based on a patch from Kent Robotti,Eric Andersen
but I then completely reworked the fdformat utility to comply with the current busybox way of doing things.
2003-07-03Patch from Kent Robotti updating fdisk to version v2.11zEric Andersen
2003-07-03Patch from Kent Robotti adding a bunch of menuconfig helpEric Andersen
2003-06-20Somewhere in the 2.4.x kernel series, /proc/mounts was changed to display aEric Andersen
"rootfs" entry as well as the traditional "/dev/root" entry. This caused applets such as mount and df to display two root filesystem entries.... This teaches the relevant utilities to ignore the "rootfs" entry. -Erik
2003-05-08Use xopen instead of xfopenGlenn L McGrath
2003-03-19Major coreutils update.Manuel Novoa III
2003-03-07be more careful about cleaning upEric Andersen
2003-03-07Scrub things a bit, shave off a few bytes.Eric Andersen
-Erik
2003-03-07Save a few bytes and remove a redundant stringEric Andersen
2003-03-07audit for proper error handling, apply a few size optimizationsEric Andersen
-Erik
2003-02-28There is no good reason to prevent nfs mounts from being mountedEric Andersen
during 'mount -a'. If the user wants to do that, hey, its their lifs. If the nfs server is down and they don't want to wait for nfs to time out, that is their problem. -Erik
2003-02-27Write all the help text for the util-linux utilities. AllowEric Andersen
people to locate the mtab file somewhere other that /etc to accomodate read only root filesystems. -Erik
2003-01-13Correct some init issues, update email address, last_patch78 by VladimirGlenn L McGrath
N. Oleynik
2003-01-04fdisk writable feature, allows compilation of a small fdisk that canGlenn L McGrath
only read partition table, by Vladimir N. Oleynik
2003-01-02> Eliminate dependancy on kernel header files. Naughty naughty.Robert Griebl
> Using linux kernel headers is a Bad Thing(tm) and should be > punished. > -Erik Doing this wrong should be punished even harder :) - Robert
2002-12-11Eliminate dependancy on kernel header files. Naughty naughty.Eric Andersen
Using linux kernel headers is a Bad Thing(tm) and should be punished. -Erik
2002-12-11Eliminate dependancy on kernel header files. Naughty naughty.Eric Andersen
Using linux kernel headers is a Bad Thing(tm) and should be punished.
2002-12-11Eliminate dependancy on kernel header files. Naughty naughty.Eric Andersen
Using linux kernel headers is a Bad Thing(tm) and should be punished. -Erik
2002-12-08Fix compile warning with OSFGlenn L McGrath
2002-12-05Yet another major rework of the BusyBox config system, using the considerablyEric Andersen
modified Kbuild system I put into uClibc. With this, there should be no more need to modify Rules.mak since I've moved all the interesting options into the config system. I think I've got everything updated, but you never know, I may have made some mistakes, so watch closely. -Erik
2002-12-05Kill CONFIG_FEATURE_USE_DEVPS_PATCH and the devps patch. I'm notEric Andersen
maintaining it anymore, and it is now terribly out of date. -Erik
2002-11-28Change if(x)free(x); to free(x);Aaron Lehmann
2002-11-27last_patch_68 from Vladimir N. OleynikGlenn L McGrath
2002-11-26fdisk applet by Vladimir N. OleynikGlenn L McGrath
2002-11-03Test for holes in swapfilesEric Andersen
-Erik
2002-10-26last_patch64 from vodz:Eric Andersen
The following usage from original user: $ ./busybox swapon -a Have typo problem: swapon: swapon: Operation not permitted But regular version: swapon: /dev/hda5: Operation not permitted Patch attached, reduced 9 bytes and advanced exit code also.
2002-09-17Support setting depthEric Andersen
2002-09-01Some CML1 grammar fixesEric Andersen
-Erik
2002-08-23Run through indent, styleGlenn L McGrath
2002-08-22Run through indent, fix commentsGlenn L McGrath
2002-08-21Inline functions with only one reference in mkfs_minix. I don't knowAaron Lehmann
why these efforts aren't making the binary smaller.
2002-08-13minor fixes for fbset bloatAaron Lehmann
<mjn3> printf("\tgeometry %u %u %u %u %u\n", v->xres, v->yres, <mjn3> v->xres_virtual, v->yres_virtual, v->bits_per_pixel); <mjn3> printf("\ttimings %u %u %u %u %u %u %u\n", v->pixclock, v->left_margin, <mjn3> v->right_margin, v->upper_margin, v->lower_margin, v->hsync_l <mjn3> en, <mjn3> v->vsync_len); <mjn3> printf("\taccel %s\n", (v->accel_flags > 0 ? "true" : "false")); <mjn3> printf("\trgba %u/%u,%u/%u,%u/%u,%u/%u\n", v->red.length, <mjn3> v->red.offset, v->green.length, v->green.offset, v->blue.leng <mjn3> th, <mjn3> v->blue.offset, v->transp.length, v->transp.offset); <mjn3> printf("endmode\n\n"); <mjn3> whay have multiple printf calls when one would do? <mjn3> and this: <mjn3> static struct cmdoptions_t { <mjn3> char *name; <mjn3> unsigned char param_count; <mjn3> unsigned char code; <mjn3> } g_cmdoptions[] = { <mjn3> { <mjn3> "-fb", 1, CMD_FB}, { <mjn3> (repeated entries) <mjn3> why isn't this constant? what about struct packing? inline the helper functions that are only referenced once.
2002-08-05- updated a few copyright/left file headersRobert Griebl
- documented most of my 0.61 changes in the ChangeLog
2002-07-25Fix for bug #1255 -- support for mount -t <type>Robert Griebl
2002-07-24Add support for /etc/filesystem when searching for an "auto" filesystemRobert Griebl
This is bug #1246
2002-07-21Initial checkin of a very primitive hwclock replacementRobert Griebl
2002-07-19Applied vodz' patches #49 and #50 (with a small correction in runshell.c)Robert Griebl
#49: I found one memory overflow and memory leak in "ln" applet. Last patch reduced also 54 bytes. ;) #50: I found bug in loginutils/Makefile.in. New patch have also new function to libbb and aplied this to applets and other cosmetic changes.
2002-07-03A patch from Bart Visscher <magick@linux-fan.com> to add anEric Andersen
xconnect helper routine which does: -address and port resolving -tries to connect to all resolved addresses until connected -uses getaddrinfo, so works for IPv6 too This patch also ports rdate, telnet, and wget to use the new xconnect function. Thanks Bart!
2002-06-23Remove advertising clauses in accordance withAaron Lehmann
ftp://ftp.cs.berkeley.edu/ucb/4bsd/README.Impt.License.Change
2002-06-22Kill dead email addressEric Andersen
-Erik
2002-06-22Apply last_patch46 from vodz, to fix buffer overflows noted byEric Andersen
Gerardo Puga, and to optimize for size a little bit. Thanks vodz