summaryrefslogtreecommitdiff
path: root/Makefile.am
AgeCommit message (Collapse)AuthorFilesLines
2010-08-19fsck: improve whole-disk check, detect stacked devicesKarel Zak1-0/+2
The current heuristic for conversion from partition to whole-disk is based on device names. It's pretty poor. This patch replaces this code with blkid_devno_to_wholedisk(). This solution is based on /sys FS and it works for arbitrary partitioned devices. The another problem is the way how fsck determines stacked devices. The current code checks device name for "md" prefix only. It does not care about DM, dm-ccypt, and so on. This patch uses /sys/block/.../slaves/, but it does not fully resolves dependencies between all devices. The method is simple -- fsck does not check stacked devices in parallel with any other device. Signed-off-by: Karel Zak <kzak@redhat.com>
2010-07-29build-sys: drop shlibs/Makefile.am that only adds SUBDIRSDiego Elio 'Flameeyes' Pettenò1-1/+15
The same effect is gotten by changing SUBDIRS in the top-level Makefile.am.
2009-11-05build-sys: remove obsolete --with-fsprobe from distcheck flagsKarel Zak1-1/+1
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-09-16libblkid: gtkdocize (API docs generated by gtk-docs)Karel Zak1-1/+2
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-05-14build-sys: complete /libs to /shlibs renameKarel Zak1-1/+1
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-03-18build-sys: fix bugs detected by "make distcheck"Karel Zak1-1/+1
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-02-18fsck: move fsck from e2fsprogs to util-linux-ngKarel Zak1-0/+4
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-02-11blkid: create basic directoriesKarel Zak1-0/+1
Signed-off-by: Karel Zak <kzak@redhat.com>
2008-11-26tools: add checkconfig to top-level MakefileKarel Zak1-1/+6
Signed-off-by: Karel Zak <kzak@redhat.com>
2008-11-26tools: add checkincludes.pl (from linux kernel)Karel Zak1-0/+11
Signed-off-by: Karel Zak <kzak@redhat.com>
2008-11-19build-sys: add --disable-mountAlon Bar-Lev1-2/+5
I use busybox for most of the utilities, still lacks a few that I wish to use from util-linux... So mount comes from busybox. And during the cross compile I don't want to compile the mount dependencies only to make the configure script happy... Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com> Signed-off-by: Karel Zak <kzak@redhat.com>
2008-02-18build-sys: add --enable-static-programsStepan Kasal1-1/+2
Add support for static versions of mount, umount, losetup, fdisk, and sfdisk. Co-Author: Karel Zak <kzak@redhat.com> Signed-off-by: Stepan Kasal <skasal@redhat.com>
2007-12-17build-sys: build arch(1) during distcheckStepan Kasal1-1/+1
Signed-off-by: Stepan Kasal <skasal@redhat.com> Signed-off-by: Karel Zak <kzak@redhat.com>
2007-11-28tests: move test_bkdev to lib/Karel Zak1-0/+1
Signed-off-by: Karel Zak <kzak@redhat.com>
2007-11-08build-sys: non-linux supportSamuel Thibault1-3/+7
Here is a patch that disables linux-specific tools on non-linux targets. Signed-Off-By: Samuel Thibault <samuel.thibault@ens-lyon.org> Signed-Off-By: Karel Zak <kzak@redhat.com>
2007-08-20docs: add DEPRECATED to EXTRA_DISTKarel Zak1-0/+1
Signed-off-by: Karel Zak <kzak@redhat.com>
2007-08-14docs: add README.licensingKarel Zak1-0/+1
There is not only one unique license for all code in utl-linux-ng. We have mix of utils with Public Domain, BSD, GPLv2 or GPLv2+. This thing should be more transparent to avoid misunderstanding. Signed-off-by: Karel Zak <kzak@redhat.com>
2007-07-26build-sys: fix directories in EXTRA_DISTKarel Zak1-2/+2
Signed-off-by: Karel Zak <kzak@redhat.com>
2007-07-12build-sys: remove "make mrproper", git-clean is good enoughKarel Zak1-9/+0
Signed-off-by: Karel Zak <kzak@redhat.com>
2007-07-03docs: add release notesKarel Zak1-1/+2
Signed-off-by: Karel Zak <kzak@redhat.com>
2007-06-15tools: add codecheck-config that checks for {HAVE,ENABLE}_ orphansKarel Zak1-1/+2
Signed-off-by: Matthias Koenig <mkoenig@suse.de> Signed-off-by: Karel Zak <kzak@redhat.com>
2007-05-16build-sys: in the clean targets use "find ... | xargs rm -f"Stepan Kasal1-2/+2
"find ... -exec rm {}" is unnecessarily slow. Signed-off-by: Stepan Kasal <skasal@redhat.com>
2007-05-16build-sys: remove po/Makevars.template from EXTRA_DISTStepan Kasal1-1/+0
The is no point in distributing it. Signed-off-by: Stepan Kasal <skasal@redhat.com>
2007-05-16build-sys: remove config/include-Makefile.am from EXTRA_DISTStepan Kasal1-1/+1
It gets distributed automaticaly. Signed-off-by: Stepan Kasal <skasal@redhat.com>
2007-05-16build-sys: do not use wildcards in EXTRA_DISTStepan Kasal1-3/+3
Wildcards in EXTRA_DIST break "make dist" for vpath build. But plain directory names are ok. Signed-off-by: Stepan Kasal <skasal@redhat.com>
2007-05-16build-sys: set DISTCHECK_CONFIGURE_FLAGS in top-level makefileStepan Kasal1-0/+5
Signed-off-by: Stepan Kasal <skasal@redhat.com>
2007-05-16build-sys: use dist_noinst_DATA to work around the bug with dist_man_MANSStepan Kasal1-9/+0
Automake mishandles dist_man_MANS. Using dist_noinst_DATA to work around this is more elegant than using dist-hook. Signed-off-by: Stepan Kasal <skasal@redhat.com>
2007-05-16build-sys: do not build convenience libraries in lib/Stepan Kasal1-1/+1
Build lib/*.c individually for each project which uses it, so that the right set of flags is applied each time. Signed-off-by: Stepan Kasal <skasal@redhat.com>
2007-02-08build-sys: fix README filenames and add missing files to EXTRA_DISTsKarel Zak1-7/+13
Also, the patch makes "make mrproper" more robust. Signed-off-by: Karel Zak <kzak@redhat.com>
2007-01-04tests: add basic infrastructure for regression testsKarel Zak1-1/+2
The patch adds tests/ directory with simple regression tests infrastructure. Also, it adds the "ts-mount-paths" test that testing if all defined paths (fstab, mtab, locks) are still same. Signed-off-by: Karel Zak <kzak@redhat.com>
2007-01-04build-sys: add missing filesKarel Zak1-1/+11
This patch add all missing headers, man pages and README files to automake stuff and "make dist-gzip" produces useful tarball now. Signed-off-by: Karel Zak <kzak@redhat.com>
2007-01-03build-sys: remove generated autotools stuff from gitKarel Zak1-2/+12
The generated autotools stuff shouldn't be maintained by SCM. After check out from git use ./autogen.sh. For more details see README.devel. Signed-off-by: Karel Zak <kzak@redhat.com>
2006-12-07Imported from util-linux-2.13-pre2 tarball.Karel Zak1-1/+5
2006-12-07Imported from util-linux-2.13-pre1 tarball.Karel Zak1-0/+19