summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorKarel Zak2012-03-27 12:23:07 +0200
committerKarel Zak2012-03-27 12:23:07 +0200
commita36e9a94087acb4f375fca000b5968623b6b58a7 (patch)
tree18ec23ce83a4684a4f333619d8176c967cf60082 /include
parentswapon: use directly blkid rather than fsprobe wrapper (diff)
downloadkernel-qcow2-util-linux-a36e9a94087acb4f375fca000b5968623b6b58a7.tar.gz
kernel-qcow2-util-linux-a36e9a94087acb4f375fca000b5968623b6b58a7.tar.xz
kernel-qcow2-util-linux-a36e9a94087acb4f375fca000b5968623b6b58a7.zip
build-sys: move obsolete lib/fsprobe to mount/
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am1
-rw-r--r--include/fsprobe.h27
2 files changed, 0 insertions, 28 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index 5e4e54ee8..b939f89fe 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -12,7 +12,6 @@ dist_noinst_HEADERS = \
env.h \
exitcodes.h \
fileutils.h \
- fsprobe.h \
ismounted.h \
linux_reboot.h \
linux_version.h \
diff --git a/include/fsprobe.h b/include/fsprobe.h
deleted file mode 100644
index d9c1dc494..000000000
--- a/include/fsprobe.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef FSPROBE_H
-#define FSPROBE_H
-/*
- * THIS IS DEPRECATED -- use blkid_evaluate_* API rather than this extra layer
- *
- * This is the generic interface for filesystem guessing libraries.
- * Implementations are provided by
- */
-extern void fsprobe_init(void);
-extern void fsprobe_exit(void);
-
-extern int fsprobe_parse_spec(const char *spec, char **name, char **value);
-
-/* all routines return newly allocated string */
-extern char *fsprobe_get_devname_by_uuid(const char *uuid);
-extern char *fsprobe_get_devname_by_label(const char *label);
-extern char *fsprobe_get_devname_by_spec(const char *spec);
-
-extern char *fsprobe_get_label_by_devname(const char *devname);
-extern char *fsprobe_get_uuid_by_devname(const char *devname);
-extern char *fsprobe_get_fstype_by_devname(const char *devname);
-extern char *fsprobe_get_fstype_by_devname_ambi(const char *devname, int *ambi);
-
-
-extern int fsprobe_known_fstype(const char *fstype);
-
-#endif /* FSPROBE_H */