summaryrefslogtreecommitdiff
path: root/util-linux (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Patch from Chris Larson (kergoth), to allow multiple directores to beGlenn L McGrath2004-02-221-7/+10
| | | | unmounted at once.
* Use bb_getopt_ulflags, marginal saving, better argument checking.Glenn L McGrath2004-02-221-68/+41
|
* Use /var/lib/hwclock for adjtime, its really a state file rather than aGlenn L McGrath2004-02-221-3/+1
| | | | config file, so it should be in /etc, FHS mentions it also.
* Eliminate use of a kernel scsi header file.Eric Andersen2004-02-061-6/+5
| | | | | Prevent potentially misaligned accesses while indexing a pointer to the partition table, which would be a bad thing on i.e. arm.
* Fixup use of 'u_int' to instead use 'unsigned int'Eric Andersen2004-01-302-5/+5
|
* s/u_int/uint/gEric Andersen2004-01-302-31/+31
|
* Use proper C99 typesEric Andersen2004-01-301-27/+28
|
* Patch from Tito, reduce size, merge functions that are only used once.Glenn L McGrath2004-01-201-93/+90
|
* Stephane Billiart writes:Eric Andersen2004-01-181-1/+1
| | | | | | | | | | bb_lookup_port now takes 3 parameters but rdate has not been modified accordingly and fails to compile in the current CVS version. The modification below fixes the problem. Now, RFC868 allows both UDP and TCP implementations of the time protocol so this may not work if someone defines a udp time service other than 37 but who would do that?
* match changes made to cmdeditEric Andersen2003-12-231-3/+0
|
* Change interface to bb_lookup_host, dont try and set port inside thisGlenn L McGrath2003-12-201-1/+2
| | | | | | | | function as there is no gracefull way of handling failures. Rename bb_getport to bb_lookup_port, allow a default port to be specified so it always returns a correct value. Modify ftpgetput/rdate/wget to use the new interface. wget/rdate now use etc/services with a falback default value.
* Patch from Fillod Stephane:Eric Andersen2003-12-191-2/+8
| | | | | | | | * The "rdate.patch" file makes rdate to NOT settimeofday if the date to be set equals current date. This prevents the system from experiencing nasty time discontinuities caused by sub-second changes, with a protocol that has only over second resolution. Depending on your taste, the "fprintf(stderr..." may be removed.
* vodz noticed we need to cast things back to an unsigned longEric Andersen2003-12-191-2/+2
| | | | or the syscall will not get the proper arguments.
* Be certain we use a correct entity when performing theEric Andersen2003-12-121-1/+1
| | | | BLKGETSIZE64 ioctl -- don't just assume 8,
* Doh! I broke automatic filesystem type guessing. Fix mount soEric Andersen2003-12-121-2/+3
| | | | | | | it will properly fall back to /proc/mounts when /etc/filesystems is missing, allowing mount to guess the correct fs type when a fs type is not explicitly specified. -Erik
* Fix indenting.Eric Andersen2003-12-091-6/+5
| | | | | Fix a bug noticed by Pete Flugstad. Make certain we close what we open, and don't try to close invalid files when /etc/filesystems exists and is used.
* Do not use the _syscall5 macro -- use syscall(2) insteadEric Andersen2003-12-041-11/+3
|
* Oskar Liljeblad writes:Eric Andersen2003-11-141-1/+1
| | | | Here's a fix for the hard-coded device name in fbset.
* Marc Kleine-Budde noticed a missing semicolonEric Andersen2003-11-141-1/+1
|
* Fix rdate and ftpget/ftpput so they compile with the new xconnect.Eric Andersen2003-11-031-2/+2
| | | | | I have checked rdate. Someone should also check ftpget/ftpput to be sure they still work.
* Avoid conflicts with the 2.6 kernel headers, which defineEric Andersen2003-11-031-0/+5
| | | | | | _IOR rather differently, thereby breaking the BLKGETSIZE64 ioctl. -Erik
* Rework wget, the xconnect interface, and its various clientsEric Andersen2003-10-311-4/+3
| | | | | | | | | | | | | | in order to fix the problems with round robin DNS reported by Andrew Flegg: http://busybox.net/lists/busybox/2003-October/009579.html This removes the ipv6 specific xconnect dns lookups. I do not see why that would need to be special cased for ipv6 as was done, but that will just have to be tested. So IPV6 people -- please test this change! -Erik
* Patch from David Meggy to make the swap default to the new version if noGlenn L McGrath2003-10-311-5/+1
| | | | version is specified and the kernel is relatively new.
* Andreas Mohr writes:Eric Andersen2003-10-221-23/+22
| | | | | | | | | | | the busybox menuconfig triggered my "inacceptable number of spelling mistakes" upper level, so I decided to make a patch ;-) I also improved some wording to describe some things in a better way. Many thanks for an incredible piece of software! Andreas Mohr, random OSS developer
* Patch from Steven Scholz, fix some warningsGlenn L McGrath2003-10-091-1/+2
|
* Be entirely consistant when using ioctl(0, TIOCGWINSZ, &winsize)Eric Andersen2003-09-151-11/+6
| | | | | to ensure proper fallback behavior on, i.e. serial consoles. -Erik
* fix function prototypeEric Andersen2003-09-151-1/+1
|
* Needs prototype for close()Eric Andersen2003-09-151-0/+1
|
* Remove final \nEric Andersen2003-09-121-1/+1
|
* Teach rdate to timeout in 10 seconds to avoid blocking foreverEric Andersen2003-09-121-0/+10
| | | | with odd or broken networking setups
* Logic error, patch by Matteo CroceGlenn L McGrath2003-08-291-1/+1
|
* Removed some debug printfsRobert Griebl2003-08-261-4/+0
|
* Patch from Kent Robotti to being fdisk in sync with v2.12 final.Eric Andersen2003-08-081-6/+10
|
* Patch from vodz:Eric Andersen2003-08-062-10/+96
| | | | | | | | | | | | | | | | | | I wrote: >>I think, fdisk have special ext2lseek special for: >>disk can have size > 4Gb, but all any partitions have < 4Gb and lseek64 >>not require. >>May be best create new configure option for set DOLFS for fdisk applet >>if global DOLFS unset? > Erik Andersen wrote: >Agreed. Using an extra configure option when ! DOLFS >would be a good idea. Ok. Patch attached.
* extern inline is a bad bad thing. kill it (so mkfs_minix.c willEric Andersen2003-08-061-11/+11
| | | | actually compile)
* Lars Ekman writes:Eric Andersen2003-07-301-0/+1
| | | | | | | | | | | | | | | | | | | | | When using "losetup" the device is always setup as Read-Only. (I have only tested with the -o flag, but looking at the code the problem seems general) The problem is the "opt" variable in "losetup.c" that is reused in the "set_loop()" call. Clear it before the call and everything is OK; opt = 0; /* <-------- added line */ if (delete) return del_loop (argv[optind]) ? EXIT_SUCCESS : EXIT_FAILURE; else return set_loop (argv[optind], argv[optind + 1], offset, &opt) ? EXIT_FAILURE : EXIT_SUCCESS; } Best Regards, Lars Ekman
* last_patch100 from vidz updating fdisk to 2.12preEric Andersen2003-07-301-317/+330
|
* Ronny L Nilsson writes:Eric Andersen2003-07-301-1/+5
| | | | | | If BusyBox was compiled with -DCONFIG_FEATURE_CLEAN_UP dmesg command segfaults if invoked with the "-n" option. (Due to a free() of an uninitialized pointer).
* There should be only one instance of CONFIG_FEATURE_AUTOWIDTHEric Andersen2003-07-261-14/+0
|
* Don't depend on CONFIG_LFS. It is really a suggestion, not a requirement,Eric Andersen2003-07-261-1/+0
| | | | since fdisk will work just fine on smaller disks w/o it.
* Remove remaining libc5 support codeEric Andersen2003-07-222-15/+1
|
* Very minor rdate updatesEric Andersen2003-07-221-1/+1
|
* Error out early if people try to build mount with nfs supportEric Andersen2003-07-221-0/+6
| | | | | using uClibc, but have not enabled UCLIBC_HAS_RPC... -Erik
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-149-14/+13
|
* Use standard typesEric Andersen2003-07-141-27/+27
|
* Require that LFS is enabled to get fdiskEric Andersen2003-07-141-0/+1
|
* Remove all the llseek junk and just use regular old lseek. When DOLFS isEric Andersen2003-07-141-110/+6
| | | | | | enabled, regular lseek is transparently promoted to lseek64 anyways, rendering the llseek stuff pointless. -Erik
* Add the fdformat utility, based on a patch from Kent Robotti,Eric Andersen2003-07-053-0/+165
| | | | | but I then completely reworked the fdformat utility to comply with the current busybox way of doing things.
* Patch from Kent Robotti updating fdisk to version v2.11zEric Andersen2003-07-031-38/+48
|
* Patch from Kent Robotti adding a bunch of menuconfig helpEric Andersen2003-07-031-1/+1
|