Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-10-08 | attempt to regularize atoi mess. | Denis Vlasenko | |
2006-10-05 | eject: -T fix | Denis Vlasenko | |
2006-10-05 | build system overhaul | Denis Vlasenko | |
2006-10-03 | bb_applet_name -> applet_name | Denis Vlasenko | |
2006-10-03 | getopt_ulflags -> getopt32. | Denis Vlasenko | |
It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. | |||
2006-10-03 | fdformat: remove redundant check | Denis Vlasenko | |
2006-10-03 | lots of silly indent fixes | Denis Vlasenko | |
2006-10-02 | mount: accept and ignore -s (sloppy) option. | Denis Vlasenko | |
needed for compatibility with Linux automounter. | |||
2006-09-30 | fbset: store short string in the structure itself instead of the pointer | Denis Vlasenko | |
(small size saving) | |||
2006-09-30 | fbset: add support for -a (bug 1017) | Denis Vlasenko | |
2006-09-29 | losetup: use /dev/loopN or /dev/loop/N according to CONFIG_FEATURE_DEVFS=n/y | Denis Vlasenko | |
2006-09-29 | Yet another silly little byte saving. couldn't -> cannot | Denis Vlasenko | |
2006-09-29 | mount: fix bug 946 (mount -f should update mtab) | Denis Vlasenko | |
2006-09-27 | losetup: with no arguments lists all /dev/loopN. Corrected help text. | Denis Vlasenko | |
(patch by Vladimir Dronnikov <dronnikov@gmail.ru>) | |||
2006-09-24 | mount: fix breakage from recent changes (spurious -ro mounts) | Denis Vlasenko | |
2006-09-23 | hexdump: fixlet for my breakage | Denis Vlasenko | |
2006-09-23 | hexdump: deindent, almost fits into 80 columns now | Denis Vlasenko | |
2006-09-22 | losetup: getopt_ulflags'ification + small fix for perror_nomsg | Denis Vlasenko | |
2006-09-22 | getopt: fix whitespace damage | Denis Vlasenko | |
2006-09-22 | readprofile: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | ipcs: fix my recent breakage | Denis Vlasenko | |
2006-09-22 | Change license statements (and clean up headers) on some of the files that | Rob Landley | |
Erik or I are primary copyright holders on. | |||
2006-09-21 | mount: nfs mount should enable bb_error-to-syslog support | Denis Vlasenko | |
2006-09-21 | mount: make Rob happy by reinstating #defines | Denis Vlasenko | |
2006-09-19 | ipcs: fix output (misaligned columns) | Denis Vlasenko | |
2006-09-19 | ipcs: getopt_ulflag'ification, -170 bytes | Denis Vlasenko | |
2006-09-19 | mount: fstabname needs to be const char* | Denis Vlasenko | |
2006-09-19 | mount: fix warning (printf field width of * wants int, not size_t) | Denis Vlasenko | |
2006-09-17 | whitespace cleanup | Denis Vlasenko | |
2006-09-17 | mount: style fixlet | Denis Vlasenko | |
2006-09-17 | mount: revert mount --bind to using "bind" as fstype. | Denis Vlasenko | |
2006-09-17 | mount: mount_it_now() - char *dir is not really needed. | Denis Vlasenko | |
2006-09-17 | mount: fix "duplicate mount options in mtab" bug | Denis Vlasenko | |
2006-09-17 | mount: nfs_strerror's static buffer was bigger than needed. | Denis Vlasenko | |
2006-09-17 | mount: getopt_ulflag'ification | Denis Vlasenko | |
2006-09-17 | mount: style fixes | Denis Vlasenko | |
2006-09-17 | mount: fix bugs: free(mp->mnt_fsname) of non-malloced ptr; | Denis Vlasenko | |
check for "more than 2 arguments" was actually checking for -2. | |||
2006-09-17 | mount: use bb_simplify_path as appropriate | Denis Vlasenko | |
2006-09-17 | mount: style fixes | Denis Vlasenko | |
2006-09-15 | mount: reorder things, fix NFS-less mount. | Denis Vlasenko | |
2006-09-14 | umount: do not try to close FILE* which is NULL. | Denis Vlasenko | |
2006-09-14 | mount: -o remount should not add lines to /etc/mtab | Denis Vlasenko | |
2006-09-14 | mount: move code from nfsmount.c into mount.c | Denis Vlasenko | |
2006-09-14 | mount: fix mtab support (but it is still rather buggy) | Denis Vlasenko | |
2006-09-14 | More code from kernel developers, and therefore licensed under GPLv2 only. | Rob Landley | |
Clarify the license boilerplate. On an unrelated note, this could use busyboxification. check_mount() looks reusable and ask() is generic... | |||
2006-09-13 | - fix copy'n paste errors that got introduced when switching to the shorter ↵ | Bernhard Reutner-Fischer | |
boilerplate. No object code changes. | |||
2006-09-12 | Remove pointless "const". Bloatcheck says 0 bytes difference. | Rob Landley | |
2006-09-11 | nfsmount: sanitize it. It had a rather peculiar idea of implementing "bg" | Denis Vlasenko | |
option - it was going to return a special flag back to caller and expecting caller to call it again with special parameter! Also caller was charged with calling mount() syscall... mount: mtab support was non-functional. Enabling it revealed serious bug which is not fixed yet. | |||
2006-09-11 | - convert a few xopen3(,,0) into xopen(,). Also peruse the fact that xopen ↵ | Bernhard Reutner-Fischer | |
defaults to 0777 on it's own, so we don't need to xopen3(,,0777). Saves a few bytes: $ size busybox.old busybox text data bss dec hex filename 839676 8780 243592 1092048 10a9d0 busybox.old 839660 8780 243592 1092032 10a9c0 busybox $ make CC=gcc-4.2-HEAD bloatcheck function old new delta static.vconfig_main 281 279 -2 static.rx_main 1076 1074 -2 static.mt_main 294 292 -2 static.gzip_main 753 751 -2 static.mkfs_minix_main 4034 4030 -4 static.unzip_main 1771 1766 -5 static.crontab_main 1513 1507 -6 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/7 up/down: 0/-23) Total: -23 bytes | |||
2006-09-10 | nfsmount: remove some really old code (for kernels 1.x!) + small cleanups. | Denis Vlasenko | |