summaryrefslogtreecommitdiff
path: root/e2fsprogs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* leftover of e2fsck surgeryDenis Vlasenko2006-12-261-82/+36
|
* put small subset of e2fsprogs back in the tree:Denis Vlasenko2006-12-26142-0/+42719
| | | | | lsattr, chattr, fsck. Old e2fsprogs tree is in e2fsprogs/old_e2fsprogs/*.
* remove e2fsprogs. Nobody volunteered to clean up that messDenis Vlasenko2006-12-26133-40208/+0
|
* introduce LONE_CHAR (optimized strcmp with one-char string)Denis Vlasenko2006-12-214-8/+9
|
* remove casts from xmalloc()Denis Vlasenko2006-12-192-3/+3
|
* inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid]Denis Vlasenko2006-12-161-2/+2
|
* fix remaining survivors of the return(a) cleanupDenis Vlasenko2006-11-271-1/+1
|
* style cleanup: return(a) -> return a, part 2Denis Vlasenko2006-11-278-10/+10
|
* style cleanup: return(a) -> return a, part 1Denis Vlasenko2006-11-278-13/+13
|
* byteswap ops had extra mask ops - removedDenis Vlasenko2006-11-271-6/+6
|
* safe_strtoXX interface proved to be a bit unconvenient.Denis Vlasenko2006-11-272-59/+27
| | | | | Remove it, introduce saner bb_strtoXX. Saved ~350 bytes.
* rodata cleanup. "unable to" == "cannot". -300 bytesDenis Vlasenko2006-11-181-1/+1
|
* add -Wundef, fix uncovered bugsDenis Vlasenko2006-11-178-23/+23
|
* rename: compare_string_array -> index_in_str_arrayDenis Vlasenko2006-11-051-2/+2
| | | | | introduce index_in_substr_array and use it in iproute2
* mostly style fixesDenis Vlasenko2006-11-012-25/+25
|
* remove bb_printf and the likeDenis Vlasenko2006-10-261-7/+7
|
* silly size savings and capitalization fixesDenis Vlasenko2006-10-265-6/+6
|
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-209-14/+14
|
* build system: fix build in separate obj treeDenis Vlasenko2006-10-113-10/+10
|
* fixes from Vladimir Dronnikov <dronnikov@gmail.ru>Denis Vlasenko2006-10-101-3/+3
|
* correct largefile support, add comments about it.Denis Vlasenko2006-10-083-9/+9
|
* dd: make it recognize not only 'k' but 'K' too;Denis Vlasenko2006-10-073-23/+2
| | | | make it (partially) CONFIG_LFS-aware
* httpd: add -u user[:grp] supportDenis Vlasenko2006-10-051-2/+0
|
* build system: small optimizationDenis Vlasenko2006-10-055-25/+34
|
* build system overhaulDenis Vlasenko2006-10-0514-127/+94
|
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-032-3/+3
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-031-1/+1
| | | | | | | | 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.
* Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko2006-09-296-15/+15
|
* whitespace cleanupDenis Vlasenko2006-09-179-19/+19
|
* - Tito pointed out that Rob forgot to add e2fsprogs/blkid/list.cBernhard Reutner-Fischer2006-09-111-0/+110
|
* Build fixes for gcc 4.0 with -Werror, from Tito.Rob Landley2006-09-114-127/+15
|
* using [xa]sprintf for string concatenation is neat and savesDenis Vlasenko2006-09-091-2/+3
| | | | | ~100 bytes according to bloatcheck. Also this fixes bug in rpm
* removed a lot of trailing \n in bb_msg() calls. It is addedDenis Vlasenko2006-09-062-14/+14
| | | | | automatically by function itself.
* Remove xcalloc() and convert its callers to xzalloc(). About half of themRob Landley2006-08-032-3/+3
| | | | | 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.
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-036-10/+10
| | | | | | | | | | things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
* Delete unused version.c file and corresponding function prototypes"Robert P. J. Day"2006-07-032-54/+0
| | | | | from blkid.h. If this file needs to be resurrected, it can be based on ext2fs/version.c.
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-02126-0/+126
|
* Yet more "#if 0" content removed."Robert P. J. Day"2006-07-017-83/+0
|
* Various cleanups I made while going through Erik Hovland's patch submissions,Rob Landley2006-06-251-4/+2
| | | | some of which are even from him. :)
* A few patches from Erik Hovland, turning strncpy() into safe_strncpy() andRob Landley2006-06-251-2/+2
| | | | removing some unnecessary code.
* Make some 64 bit warnings go away on x86-64.Rob Landley2006-06-191-33/+8
|
* Remove _() and N_() from platform.h. #define them as NOP macros in the twoRob Landley2006-05-291-0/+3
| | | | | | 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 hdparm to use PRIu64 instead of typecasting to long long (which is 128 bitsRob Landley2006-05-281-1/+0
| | | | on 64 bit platforms), and move #include <inttypes.h> to libbb.h.
* Consolidate #include <sys/time.h> so libbb.h does it.Rob Landley2006-05-275-5/+0
|
* Remove unused function parameter, from Garrett.Rob Landley2006-05-193-6/+2
|
* - forgot to make busybox_unstripped depend on the applets in IMA mode.Bernhard Reutner-Fischer2006-05-191-2/+2
|
* - single KERNEL_VERSION(a,b,c) macro in platform.hBernhard Reutner-Fischer2006-05-191-2/+2
| | | | | - rename get_kernel_revision() to get_linux_version_code from Robert P. J. Day
* Typo that hits big endian systems.Rob Landley2006-05-171-1/+0
|
* pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the ↵Mike Frysinger2006-05-131-1/+1
| | | | mailing list
* move the dir related rules to the end so the E2FSPROGS_AR rule is the defaultMike Frysinger2006-05-111-15/+15
|