summaryrefslogtreecommitdiff
path: root/util-linux/fsck_minix.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* whitespace fixes (leading spaces to tab)Denis Vlasenko2007-01-131-1/+1
|
* fsck_minix: tiny optimizationDenis Vlasenko2007-01-031-9/+3
|
* forgot to svn add util-linux/minix.h :(Denis Vlasenko2007-01-031-1/+1
|
* fbset: move variable from data to bssDenis Vlasenko2007-01-031-24/+24
| | | | fsck_minix: fix fallout
* factor out minix structures/constants into minix.hDenis Vlasenko2007-01-031-191/+131
| | | | fsck_minix: optimizations
* fsck_minix: optimizations. ~130 bytesDenis Vlasenko2007-01-031-44/+47
|
* introduce small[u]intDenis Vlasenko2007-01-031-64/+69
| | | | fsck_minix: use it for flag variables. 140 bytes saved
* rodata cleanup. "unable to" == "cannot". -300 bytesDenis Vlasenko2006-11-181-1/+1
|
* silly size savings and capitalization fixesDenis Vlasenko2006-10-261-2/+2
|
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-031-1/+1
|
* More code from kernel developers, and therefore licensed under GPLv2 only.Rob Landley2006-09-141-12/+4
| | | | | | | Clarify the license boilerplate. On an unrelated note, this could use busyboxification. check_mount() looks reusable and ask() is generic...
* Svn 16007 broke the build under gcc 4.0.3. This fixes up some of the damageRob Landley2006-08-291-3/+3
| | | | | (the e2fsprogs directory is too twisty and evil to easily fix, but I plan to rewrite it anyway so I'll just bump that up in priority a bit).
* Remove warnings caused by #include <sys/mount.h> in platform.h. ApparentlyRob Landley2006-06-161-3/+0
| | | | we redefine a lot of stuff from standard header files...
* Patch from Denis Vlasenko, tweak error messages.Rob Landley2006-06-131-52/+50
|
* Minor size shrinkage.Rob Landley2006-06-131-4/+2
|
* - reuse strings and messages. Saves about 600BBernhard Reutner-Fischer2006-06-071-4/+6
|
* Whack the one last warning in make allbareconfig...Rob Landley2006-06-061-1/+1
|
* Build break fix from Bernhard fischer, fixing fallout from svn 14974. (My bad.)Rob Landley2006-05-031-0/+1
|
* Patches from Denis Vlasenko to rework "current_name" handling and removeRob Landley2006-04-291-126/+95
| | | | | print_current_name().
* Patch from Denis Vlasenko:Rob Landley2006-04-291-93/+74
| | | | | | | | | * Do not initialize globals to 0, it is done automatically * unsigned short -> uint16_t, unsigned int -> uint32_t where appropriate (did it ever work on Alphas?) * triple sync() is silly - removed * check_zone_nr uses check_zone_nr2 now * remove trailing periods from messages, uppercase first letter
* Patch from Denis Vlasenko:Rob Landley2006-04-291-2/+2
| | | | | ix bug (inode_map and zone_map are char* pointers, sizeof() on them gives 4 or 8)
* Patch from Denis Vlasenko turning static const int (which gets emitted intoRob Landley2006-03-101-24/+27
| | | | the busybox binary) into enums (which don't).
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-061-1/+1
| | | | definitions. (That should only be on prototypes.)
* - add platform.h.Bernhard Reutner-Fischer2006-01-221-1/+1
| | | | - use shorter boilerplate while at it.
* Larry Doolittle writes:Eric Andersen2004-04-141-3/+3
| | | | | | | | | | | | | | | | | | | | | | This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-5/+5
|
* s/u_int/uint/gEric Andersen2004-01-301-27/+27
|
* Major coreutils update.Manuel Novoa III2003-03-191-5/+5
|
* Change if(x)free(x); to free(x);Aaron Lehmann2002-11-281-3/+1
|
* Major rework of the directory structure and the entire build system.Eric Andersen2001-10-241-21/+21
| | | | -Erik
* Standard typing (u_int16_t instead of u16, u_int32_t insteadEric Andersen2001-08-291-33/+27
| | | | of u32, etc) cleanups from Laurence Anderson <laurence@zxmail.com>
* A nice patch from Larry Doolittle that adds -Wshadow andEric Andersen2001-03-211-9/+9
| | | | cleans up most of the now-revealed problems.
* A cleanup patch from Jeff Garzik to static-ify a number ofEric Andersen2001-03-091-2/+2
| | | | namespace polluting things that really should be static.
* It turns out that DODMALLOC was broken when I reorganized busybox.hEric Andersen2001-02-201-1/+1
| | | | | | header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik
* This patch, put together by Manuel Novoa III, is a merge of workEric Andersen2001-02-141-5/+0
| | | | | | done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed.
* Removed trailing \n from error_msg{,_and_die} messages.Matt Kraai2001-01-311-1/+1
|
* #define -> static const int. Also got rid of some big static buffers.Mark Whitley2001-01-231-22/+16
|
* Fix from Gennady Feldman for error msgEric Andersen2000-12-121-2/+4
|
* Changed names of functions in utility.c and all affected files, to makeMark Whitley2000-12-071-1/+1
| | | | compliant with the style guide. Everybody rebuild your tags file!
* Renamed "internal.h" to the more sensible "busybox.h".Eric Andersen2000-09-251-1/+1
| | | | -Erik
* Both of these commands were subtly broken. Fortunately when used together theEric Andersen2000-09-191-2/+6
| | | | | | damage was only ugly fscks. Reverted to the static inline code so they work correctly again, -Erik
* Some #include updates.Eric Andersen2000-08-101-1/+0
| | | | -Erik
* Use BB_FEATURE_CLEAN_UP where appropriateEric Andersen2000-07-251-2/+4
| | | | -Erik
* It is now possible to select in busybox.def.h whether minixfs version 2Pavel Roskin2000-07-171-22/+20
| | | | is to be supported.
* Extract usage information into a separate file.Matt Kraai2000-07-161-15/+0
|
* Don't use strings directly in calls to usage(). This is in preparationMatt Kraai2000-07-141-17/+16
| | | | for their extraction to a separate file.
* Use errorMsg rather than fprintf.Matt Kraai2000-07-141-1/+1
|
* Use global applet_name instead of local versions.Matt Kraai2000-07-121-6/+3
|
* More linux kernel header file removal.Eric Andersen2000-07-101-2/+97
| | | | -Erik
* Remove some warning with glibc.Eric Andersen2000-07-061-1/+1
| | | | -Erik