aboutsummaryrefslogtreecommitdiff
path: root/util-linux/fdisk.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* top: batch mode should output all processesDenis Vlasenko2006-10-271-1/+1
|
* last nail into error_msg() (de)capitalizationDenis Vlasenko2006-10-271-1/+1
|
* rename functions to more understandable namesDenis Vlasenko2006-10-261-1/+1
|
* silly size savings and capitalization fixesDenis Vlasenko2006-10-261-5/+5
|
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-201-1/+1
|
* fdisk: compilation fixDenis Vlasenko2006-10-141-35/+47
|
* fdisk: separate sun/aix/etc code into #included filesDenis Vlasenko2006-10-121-3144/+264
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-081-7/+6
|
* lots of silly indent fixesDenis Vlasenko2006-10-031-3/+1
|
* whitespace cleanupDenis Vlasenko2006-09-171-15/+15
|
* 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 xcalloc() and convert its callers to xzalloc(). About half of themRob Landley2006-08-031-2/+2
| | | | | were using "1" as one of the arguments anyway, and as for the rest a multiply and a push isn't noticeably bigger than pushing two arguments on the stack.
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-021-0/+1
|
* Remove "#if 0" content."Robert P. J. Day"2006-07-011-28/+0
|
* fix from Kolbjørn Barmen for building for m68k targetsMike Frysinger2006-06-301-1/+1
|
* Various cleanups I made while going through Erik Hovland's patch submissions,Rob Landley2006-06-251-1/+1
| | | | some of which are even from him. :)
* Patch from Yann Morin to put BLKGETSIZE64 in platform.h had rather a lot ofRob Landley2006-06-151-5/+0
| | | | | | fallout due to the #include <sys/mount.h>. Removed that #include from various applets and fixed up those that were unhappy when that #include was made because they'd block copied stuff out of it. (Sigh.)
* Random cleanup of platform.h.Rob Landley2006-06-131-6/+0
|
* Remove _() and N_() from platform.h. #define them as NOP macros in the twoRob Landley2006-05-291-0/+2
| | | | | | files still using them. I didn't remove them from e2fsck.c to avoid stomping pending cleanup patches from Garrett, and I didn't bother to remove them from fdisk.c because that entire file needs to be rewritten from scratch.
* fix spelling mistakesMike Frysinger2006-05-261-6/+6
|
* Migrate endianness macros.Rob Landley2006-05-051-6/+2
|
* use memmove() instead of bcopy()Mike Frysinger2006-04-161-6/+6
|
* strip out unneeded commentsMike Frysinger2006-02-251-4/+1
|
* fdisk unmaintained now :("Vladimir N. Oleynik"2006-02-251-1/+6
|
* Another clean-up patch from Garrett.Rob Landley2006-02-251-137/+120
|
* Minor cleanup from Garrett Kajmowicz.Rob Landley2006-02-251-4/+1
|
* Cleanup from Denis Vlasenko.Rob Landley2006-02-241-1904/+2013
|
* - put NLS stuff in one central place to avoid redefines.Bernhard Reutner-Fischer2006-02-231-2/+0
| | | | | | | | Fixes warnings about: fdisk.c:45:1: warning: "_" redefined nfsmount.c:121:1: warning: "_" redefined nfsmount.c:122:1: warning: "N_" redefined interface.c:84:1: warning: "_" redefined
* - bzero -> memsetBernhard Reutner-Fischer2006-01-311-2/+2
| | | | | | | | | | | | | | | text data bss dec hex filename 1652855 14444 1215616 2882915 2bfd63 busybox.oorig.gcc-3.3 1652823 14444 1215616 2882883 2bfd43 busybox.gcc-3.3 1603655 14412 1215552 2833619 2b3cd3 busybox.oorig.gcc-3.4 1603655 14412 1215552 2833619 2b3cd3 busybox.gcc-3.4 1609755 14508 1215744 2840007 2b55c7 busybox.oorig.gcc-4.0 1609755 14508 1215744 2840007 2b55c7 busybox.gcc-4.0 1590495 13516 1215392 2819403 2b054b busybox.oorig.gcc-4.1-HEAD 1590495 13516 1215392 2819403 2b054b busybox.gcc-4.1-HEAD 1589079 13036 1213248 2815363 2af583 busybox.oorig.gcc-4.2-HEAD 1589079 13036 1213248 2815363 2af583 busybox.gcc-4.2-HEAD
* - add and use ATTRIBUTE_ALIGNED(num_bytes)Bernhard Reutner-Fischer2006-01-311-6/+5
| | | | - remove unused parameter pindex from fdisk.c, xbsd_initlabel()
* hopefully the last of the annoying signed/unsigned and mixed type errorsEric Andersen2006-01-301-11/+11
|
* - add platform.h.Bernhard Reutner-Fischer2006-01-221-6/+3
| | | | - use shorter boilerplate while at it.
* reduce signedness warning"Vladimir N. Oleynik"2005-12-021-7/+9
|
* reduce bss"Vladimir N. Oleynik"2005-11-241-1/+5
|
* Avoid a number of places where large drives could wrap a uint, andEric Andersen2004-06-281-33/+33
| | | | | | instead use off_t which will be automagically promoted to 64bit if compiled with support for large drives. -Erik
* Per suggestion from Bastian Blank, be less evil when we force fdisk toEric Andersen2004-05-261-9/+0
| | | | | transparently remap 32-bit interfaces to actually use 64 bit interfaces. -Erik
* Erik,Eric Andersen2004-05-191-8/+10
| | | | | | | | | | | | | | | | | | >http://busybox.net/cgi-bin/cvsweb/busybox/util-linux/fdisk.c?r1=1.22&r2=1.23&diff_format=u Its hack for "force" ;-) If to return the previous version of a Config.in http://busybox.net/cgi-bin/cvsweb/busybox/util-linux/Config.in?r1=1.12&r2=1.13 and to apply last patch, then I shall calm down. ;-) (OOPS, last patch have autocorrected from my editor begins spaces to tabs and removed spaces from empty lines too). --w vodz
* Make vodz happy and make fdisk always use large file support ifEric Andersen2004-05-191-0/+8
| | | | | possible, even if LFS is not enabled for the rest of busybox. -Erik
* Larry Doolittle writes:Eric Andersen2004-04-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | 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
* Sigh. what a mess.Eric Andersen2004-03-301-2/+1
|
* As waldi noticed, checks for the size of an off_t and castingEric Andersen2004-03-301-13/+6
| | | | etc was also redundant and possibly buggy...
* The fdisk llseek junk was redundant, since both uClibc and glibcEric Andersen2004-03-301-72/+7
| | | | | automatically promote lseek and friends to their 64 bit counterparts when CONFIG_LFS is enabled, since it enables __USE_FILE_OFFSET64
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-2/+2
|
* 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.
* s/u_int/uint/gEric Andersen2004-01-301-4/+4
|
* 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,
* Do not use the _syscall5 macro -- use syscall(2) insteadEric Andersen2003-12-041-11/+3
|
* Marc Kleine-Budde noticed a missing semicolonEric Andersen2003-11-141-1/+1
|
* Avoid conflicts with the 2.6 kernel headers, which defineEric Andersen2003-11-031-0/+5
| | | | | | _IOR rather differently, thereby breaking the BLKGETSIZE64 ioctl. -Erik