diff options
author | Kay Sievers <kay@vrfy.org> | 2012-09-16 23:31:11 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2012-09-17 13:54:03 +0200 |
commit | 0bb91b50100e4633a0e68135854e606653055748 (patch) | |
tree | e191e53beb135e2f91e85857ed828776b241a1c9 /src/udev/udev-builtin.c | |
parent | f6c2e28b07a0d24c68f7780fc986ac3619fdcbdb (diff) |
udev: add btrfs support
All "btrfs" file systems will be registered with the kernel when they
show up.
Incomplete multi-device volumes will set SYSTEMD_READY=0, to prevent
access until the volume is complete and fully registered.
Diffstat (limited to 'src/udev/udev-builtin.c')
-rw-r--r-- | src/udev/udev-builtin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udev-builtin.c b/src/udev/udev-builtin.c index 7d89f22792..b632edaae1 100644 --- a/src/udev/udev-builtin.c +++ b/src/udev/udev-builtin.c @@ -29,6 +29,7 @@ static bool initialized; static const struct udev_builtin *builtins[] = { [UDEV_BUILTIN_BLKID] = &udev_builtin_blkid, + [UDEV_BUILTIN_BTRFS] = &udev_builtin_btrfs, [UDEV_BUILTIN_FIRMWARE] = &udev_builtin_firmware, [UDEV_BUILTIN_INPUT_ID] = &udev_builtin_input_id, [UDEV_BUILTIN_KMOD] = &udev_builtin_kmod, @@ -142,7 +143,6 @@ int udev_builtin_add_property(struct udev_device *dev, bool test, const char *ke if (key[0] != '.') udev_list_entry_set_num(entry, true); - log_debug("%s=%s\n", key, val); if (test) printf("%s=%s\n", key, val); return 0; |