summaryrefslogtreecommitdiffstats
path: root/old-tests/filters/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* Use $(top_builddir) for inclusion of make.tmpl in Makefiles.Zdenek Kabelac2010-03-041-3/+3
|
* Allow for a build directory separate from the source.Alasdair Kergon2009-10-021-1/+2
|
* Correct typo in comments: s/is part of the LVM2/is part of LVM2/.Jim Meyering2007-09-211-1/+1
| | | | | | | Signed-off-by: Jim Meyering <jim@meyering.net> Author: Jim Meyering <jim@meyering.net>
* tidy relative paths in makefile includesAlasdair Kergon2004-06-151-1/+1
|
* Update copyright notices.Alasdair Kergon2004-03-301-2/+10
|
* o Filter which caches valid devices in a file. Pass in init == 1 to theJoe Thornber2001-10-221-2/+7
| | | | | constructor if you want it to ignore the existing cache and check every device again (eg, vgscan, pvscan).
* o Filter for the dev cache that takes values from config file:Joe Thornber2001-10-191-0/+21
devices { # first match is final, eg. /dev/ide/cdrom # get's rejected due to the first pattern filter=["r/cdrom/", # don't touch the music ! "a/hd[a-d][0-9]+/", "a/ide/", "a/sd/", "a/md/", "a|loop/[0-9]+|", # accept devfs style loop back "r/loop/", # and reject old style "a/dasd/", "a/dac960/", "a/nbd/", "a/ida/", "a/cciss/", "a/ubd/", "r/.*/"] # reject all others } Alasdair this is ready to roll into the tools now.