Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-07-18 | Fix vi so that error messages, insert mode messages, etc are | Eric Andersen | |
all actually displayed in the status line as expected | |||
2005-07-18 | a bit more polish | Eric Andersen | |
2005-07-18 | a bit of polish on makedevs | Eric Andersen | |
2005-07-18 | the makedevs config option was pretty much totally broken | Eric Andersen | |
2005-07-18 | Fixup device table based makedevs so it actually works | Eric Andersen | |
2005-07-06 | move var decls around a little to help gcc make smaller code | Mike Frysinger | |
2005-07-06 | 2005-07-04 Shaun Jackman <sjackman@gmail.com> | Mike Frysinger | |
* init/init.c: Do not include sys/mount.h. (message): Use O_NONBLOCK instead of O_NDELAY. (console_init): Ditto. | |||
2005-07-06 | 2005-07-05 Shaun Jackman <sjackman@gmail.com> | Mike Frysinger | |
* init/Config.in (CONFIG_FEATURE_INIT_SWAPON): New option. * init/init.c (check_memory): Disable the swapon feature unless CONFIG_FEATURE_INIT_SWAPON is defined. | |||
2005-07-05 | rename log var to log_console so we dont override internal gcc/glibc log func | Mike Frysinger | |
2005-07-01 | 2005-06-30 Shaun Jackman <sjackman@gmail.com> | Mike Frysinger | |
* loginutils/getty.c: (open_tty): Use dup2 instead of close/dup. | |||
2005-07-01 | 2005-06-30 Shaun Jackman <sjackman@gmail.com> | Mike Frysinger | |
* loginutils/getty.c: Include utmp.h only if CONFIG_FEATURE_U_W_TMP is defined. (getty_main): Use ISSUE only if it is defined. | |||
2005-07-01 | Patch by jonlar in Bug 312 to split the U_W_TMP feature into sep UTMP and ↵ | Mike Frysinger | |
WTMP options | |||
2005-06-30 | patch by Shaun Jackman to combine dup/close funcs into dup2 | Mike Frysinger | |
2005-06-29 | dont use f_frsize unless linux-2.6.0 or better | Mike Frysinger | |
2005-06-28 | rip out all the non-linux code and ugly workarounds | Mike Frysinger | |
2005-06-24 | tweak signed/unsigned char usage to avoid mismatches | Mike Frysinger | |
2005-06-24 | - remove extra/unneeded function call. testing svn | Ned Ludd | |
2005-06-23 | Enabling runtime SUID/SGID configuration via /etc/busybox.conf | Eric Andersen | |
is not a very good default. Better to default to having it off and let people get the default behavior. If they want to enable /etc/busybox.conf they should explicitly ask for it. | |||
2005-06-23 | applets specified as _BB_SUID_ALWAYS in applets.h should also select | Eric Andersen | |
CONFIG_FEATURE_SUID to ensure proper behavior when installed. | |||
2005-06-23 | characters encoded as html should have a trailing semicolon | Eric Andersen | |
to be interpreted properly | |||
2005-06-20 | Rodney Radford submitted ipcs and ipcrm (system V IPC stuff). They could use | Rob Landley | |
some more work to shrink them down. | |||
2005-06-17 | Tito says: unify verbose/quiet flags | Mike Frysinger | |
2005-06-17 | Tito says: strip unused program_name | Mike Frysinger | |
Vladimir N. Oleynik says: uname() can be replaced with get_kernel_revision() | |||
2005-06-12 | use xmalloc instead of malloc | Mike Frysinger | |
2005-06-11 | use malloc instead of xmalloc | Mike Frysinger | |
2005-06-11 | use xmalloc() instead of malloc() | Mike Frysinger | |
2005-06-11 | use xmalloc() and bb_perror_msg_and_die() | Mike Frysinger | |
2005-06-11 | Note that memory allocaiton needs to be cleaned up too. | Rob Landley | |
2005-06-11 | remove com_err.h includes | Mike Frysinger | |
2005-06-11 | DOS only crap | Mike Frysinger | |
2005-06-11 | import initial fat mke2fs | Mike Frysinger | |
2005-06-11 | import tune2fs support | Mike Frysinger | |
2005-06-11 | fix signed/unsigned char pointers | Mike Frysinger | |
2005-06-11 | oops, we only want to affect local CFLAGS | Mike Frysinger | |
2005-06-11 | initial fat tune2fs/findfs/e2label source | Mike Frysinger | |
2005-06-11 | replace simple is_null func with a memcmp define | Mike Frysinger | |
2005-06-11 | force including of e2fsbb.h and move the HAVE_* defines to it | Mike Frysinger | |
2005-06-11 | move config.h requirement to the actual .depend target rather than the ↵ | Mike Frysinger | |
depend alias | |||
2005-06-11 | make sure clean removes objects in subdirs | Mike Frysinger | |
2005-06-11 | need strings.h for ffs() | Mike Frysinger | |
2005-06-11 | only define some variables if legacy EXT2FS_ENABLE_SWAPFS is enabled | Mike Frysinger | |
2005-06-11 | replace simple functions with defines | Mike Frysinger | |
2005-06-11 | whitespace updates | Mike Frysinger | |
2005-06-11 | replace functions with defines | Mike Frysinger | |
2005-06-11 | whitespace updates | Mike Frysinger | |
2005-06-11 | whitespace updates | Mike Frysinger | |
2005-06-11 | recode functions to shrink size | Mike Frysinger | |
2005-06-11 | setup the HAVE_* defines | Mike Frysinger | |
2005-06-09 | About time to just apply this and kill off the patches | Eric Andersen | |
2005-06-07 | Tito posted a devfsd error message fix. It's highly deprecated and will | Rob Landley | |
presumably be removed eventually (use udev), but as long as it's in there. Tito says: The sense of this patch is to call: read_config_file_err: #ifdef CONFIG_DEVFSD_VERBOSE msg_logger(((optional == 0 ) && (errno == ENOENT))? DIE : NO_DIE, LOG_ERR, "read config file: %s: %m\n", path); #else if(optional == 0 && errno == ENOENT) exit(EXIT_FAILURE); #endif just after the failure of the call that set errno ( stat and fopen) to avoid false error messages. |