aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* make the build system puuuuuuuuuuurtyvapier2006-02-021-3/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13793 69ca8d6d-28ef-0310-b511-8ec308f3f277
* hopefully the last of the annoying signed/unsigned and mixed type errorsandersen2006-01-303-6/+10
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13733 69ca8d6d-28ef-0310-b511-8ec308f3f277
* just whitespacetimr2006-01-25108-862/+862
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13584 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Once more, with fewer inappropriate semicolons.landley2006-01-241-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13546 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Ken McGuire's patch to make mke2fs and e2fsck work on big endian systems likelandley2006-01-235-31/+17
| | | | | | | PPC, with an obligatory couple of swipes from me. git-svn-id: svn://busybox.net/trunk/busybox@13536 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add platform.h.aldot2006-01-222-2/+2
| | | | | | | - use shorter boilerplate while at it. git-svn-id: svn://busybox.net/trunk/busybox@13494 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - shared libbusybox.aldot2006-01-151-0/+11
| | | | | | | | - IMA compilation option (aka IPO, IPA,..) Please holler if i broke something.. git-svn-id: svn://busybox.net/trunk/busybox@13346 69ca8d6d-28ef-0310-b511-8ec308f3f277
* remove bug: fsck do not know pathvodz2005-11-264-10/+10
| | | | git-svn-id: svn://busybox.net/trunk/busybox@12536 69ca8d6d-28ef-0310-b511-8ec308f3f277
* change the interface of libbb/compare_string_array (unsigned short to int), ↵vodz2005-11-261-2/+2
| | | | | | usaging for e2fsprogs/fsck git-svn-id: svn://busybox.net/trunk/busybox@12535 69ca8d6d-28ef-0310-b511-8ec308f3f277
* more use const for interface of libbb/compare_string_array, example usage ↵vodz2005-11-261-9/+4
| | | | | | for e2fsprogs/fsck git-svn-id: svn://busybox.net/trunk/busybox@12534 69ca8d6d-28ef-0310-b511-8ec308f3f277
* another more constvodz2005-10-206-24/+22
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11897 69ca8d6d-28ef-0310-b511-8ec308f3f277
* more const, all data to textvodz2005-10-152-21/+21
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11874 69ca8d6d-28ef-0310-b511-8ec308f3f277
* perror correctionvodz2005-10-122-2/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11849 69ca8d6d-28ef-0310-b511-8ec308f3f277
* create e2fs_set_sbin_path(), noticed by Tito, Thanksvodz2005-10-127-63/+36
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11848 69ca8d6d-28ef-0310-b511-8ec308f3f277
* usage bb_dev_nullvodz2005-10-126-6/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11846 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make fsck.h as common, e2fsck: includes correctvodz2005-10-123-89/+90
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11843 69ca8d6d-28ef-0310-b511-8ec308f3f277
* more busyboxes, remove 1 extern function (mainstream also have for one fsck)vodz2005-10-128-163/+140
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11842 69ca8d6d-28ef-0310-b511-8ec308f3f277
* more busyboxesvodz2005-10-122-9/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11841 69ca8d6d-28ef-0310-b511-8ec308f3f277
* bb_mkdep: Rewroted. removed problem "include name must uniq", speed up * 3.vodz2005-10-1016-39/+21
| | | | | | | e2fsprogs: remove confuse bb_mkdep. Use internal e2fsprogs includes only. other: remove confuse bb_mkdep. git-svn-id: svn://busybox.net/trunk/busybox@11822 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - Fix spurious rebuilds for (parallel) out-of-tree builds.aldot2005-10-051-8/+12
| | | | | | | | | | Make sure that the directories are order-only prerequisites. Otherwise we may have object files created after the timestamp of the directory was updated which would lead to spurious rebuilds (as some of the dentries may be older than the dir itself). git-svn-id: svn://busybox.net/trunk/busybox@11764 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - fix building out-of-tree;aldot2005-10-052-3/+15
| | | | | | | | | | | | | | | | | | | | to test, checkout the source (let's assume /scratch/src/busybox), then mkdir /tmp/bb ; cd /tmp/bb make top_srcdir=/scratch/src/busybox O="$(pwd)" -f /scratch/src/busybox/Makefile allyesconfig check - default to O=$(pwd) if no O was specified. Now you can just specify the top_srcdir (without O=/somewhere) to create the obj-tree in pwd. - make "make configtarget buildtarget" work. Previously this didn't work due to how HAVE_DOT_CONFIG was evaluated. Two separate steps were needed before, e.g. make config ; make busybox. - remove some unneeded variables from Rules.mak (BB_SRC_DIR from Mr. ldoolitt@recycle.lbl) which suggest that the stuff fixed above didn't work before. - move selinux libraries to where they belong (from Makefile to Rules.mak) - update the docs to mention svn instead of cvs and provide an example for building out-of-tree in INSTALL. git-svn-id: svn://busybox.net/trunk/busybox@11762 69ca8d6d-28ef-0310-b511-8ec308f3f277
* as Tito points out, e2fsck and fsck need more dependenciesvapier2005-10-051-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11761 69ca8d6d-28ef-0310-b511-8ec308f3f277
* excellent shrinkage patch by Titovapier2005-10-024-367/+307
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11730 69ca8d6d-28ef-0310-b511-8ec308f3f277
* clean out unneeded E2FSCK variablesvapier2005-10-021-4/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11729 69ca8d6d-28ef-0310-b511-8ec308f3f277
* typoaldot2005-09-301-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11703 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - remove duplicate entry of resolve.c in BLKID_SRCaldot2005-09-301-2/+3
| | | | | | | - use the sourcedir to look for includes rather than the builddir git-svn-id: svn://busybox.net/trunk/busybox@11701 69ca8d6d-28ef-0310-b511-8ec308f3f277
* change interface to bb_xasprintf() - more perfect for me.vodz2005-09-292-11/+7
| | | | | | | ln.c: error_msg(str)->error_msg(%s, str) - remove standart "feature" for hackers reduce 100 bytes don't care in sum git-svn-id: svn://busybox.net/trunk/busybox@11694 69ca8d6d-28ef-0310-b511-8ec308f3f277
* forgotten putenvvodz2005-09-291-2/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11693 69ca8d6d-28ef-0310-b511-8ec308f3f277
* more busybox's style for fsck.c, size reducevodz2005-09-291-201/+142
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11689 69ca8d6d-28ef-0310-b511-8ec308f3f277
* more const, inline, forward declaration usage, strip 20k source size ;-)vodz2005-09-282-1178/+459
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11680 69ca8d6d-28ef-0310-b511-8ec308f3f277
* move e2fsck/* to e2fsck.c, one e2fsck_main and jornal exported, small ↵vodz2005-09-2730-17233/+15465
| | | | | | automatic size reduction git-svn-id: svn://busybox.net/trunk/busybox@11668 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix building w/out et headers and w/out debugvapier2005-09-274-5/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11662 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix building with debugging enabled #413vapier2005-09-255-682/+485
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11644 69ca8d6d-28ef-0310-b511-8ec308f3f277
* force nodebug by defaultvapier2005-09-241-3/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11625 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use the shorter license headervapier2005-09-241-14/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11624 69ca8d6d-28ef-0310-b511-8ec308f3f277
* import the very fat e2fsck/fsck appletsvapier2005-09-2434-22/+19694
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11623 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make sure we include local header filesvapier2005-09-241-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11622 69ca8d6d-28ef-0310-b511-8ec308f3f277
* err, fix stupid mistake in previous do_findfs() changevapier2005-09-241-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11620 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use brief license linevapier2005-09-241-14/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11618 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix broken whitespace and remove pointless mkdirvapier2005-09-241-12/+10
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11617 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make e2label and findfs optionalvapier2005-09-242-4/+24
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11616 69ca8d6d-28ef-0310-b511-8ec308f3f277
* hmm, forgoten remove llseek?vodz2005-09-191-55/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11504 69ca8d6d-28ef-0310-b511-8ec308f3f277
* mke2fs.c can compiled for me, more bb_xstrdup and bb_xasprintf usage, remove ↵vodz2005-09-196-188/+131
| | | | | | 1 exporing, ext2fs_llseek/blkid_llseek->llseek git-svn-id: svn://busybox.net/trunk/busybox@11502 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix warnings.landley2005-09-071-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11349 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bernhard Fischer submitted a couple of Makefile patches:landley2005-08-241-3/+5
| | | | | | | | | | - Fix building out-of-tree - remove duplicate rule in toplevel Makefile - peruse make's builtin notion of `dirname $@' git-svn-id: svn://busybox.net/trunk/busybox@11234 69ca8d6d-28ef-0310-b511-8ec308f3f277
* only declare do_swap if we need itvapier2005-07-301-2/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10984 69ca8d6d-28ef-0310-b511-8ec308f3f277
* apgo in Bug 351 says: punt parse_version_number since it is no longer usedvapier2005-07-301-24/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10973 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use toplevel ARFLAGS and update default ARFLAGS to be quietvapier2005-07-271-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10923 69ca8d6d-28ef-0310-b511-8ec308f3f277
* rip out all the non-linux code and ugly workaroundsvapier2005-06-282-172/+9
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10608 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Tito says: unify verbose/quiet flagsvapier2005-06-171-3/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10546 69ca8d6d-28ef-0310-b511-8ec308f3f277