diff options
author | Denys Vlasenko | 2010-12-30 00:40:11 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-12-30 00:40:11 +0100 |
commit | 90615a0c5c326fa3cf78fc719f7b16207f47395a (patch) | |
tree | bdfee5d8916cc60e9e171b15b7adcc1f5460769a /util-linux/blkid.c | |
parent | 2272129a93d9492a42ef43987f829940d26dc862 (diff) | |
download | busybox-90615a0c5c326fa3cf78fc719f7b16207f47395a.zip busybox-90615a0c5c326fa3cf78fc719f7b16207f47395a.tar.gz |
blkid: optional support for TYPE="fstype"
Adapted from patch created by T4ndeta <t4ndeta@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/blkid.c')
-rw-r--r-- | util-linux/blkid.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/util-linux/blkid.c b/util-linux/blkid.c index 53f13a9..fe88fb3 100644 --- a/util-linux/blkid.c +++ b/util-linux/blkid.c @@ -13,8 +13,13 @@ //TODO: extend to take BLOCKDEV args, and show TYPE="fstype" int blkid_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; -int blkid_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +int blkid_main(int argc UNUSED_PARAM, char **argv) { + while (*++argv) { + /* Note: bogus device names don't cause any error messages */ + add_to_uuid_cache(*argv); + } + display_uuid_cache(); return 0; } |