diff options
author | Zeeshan Ali (Khattak) <zeeshanak@gnome.org> | 2013-02-17 03:21:27 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-02-17 02:47:17 +0100 |
commit | ddb5bee15a6ad71e5b596c035c1ee4dc04d5fd2e (patch) | |
tree | 5b223187119f16740013b946c3c0d5911a49b907 | |
parent | 486bdbded8728d5f0af10d4dc886329be512d66d (diff) |
udev: expose new ISO9660 properties from libblkid
-rw-r--r-- | src/udev/udev-builtin-blkid.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/udev/udev-builtin-blkid.c b/src/udev/udev-builtin-blkid.c index 56a05f5e50..bae429344f 100644 --- a/src/udev/udev-builtin-blkid.c +++ b/src/udev/udev-builtin-blkid.c @@ -78,6 +78,22 @@ static void print_property(struct udev_device *dev, bool test, const char *name, } else if (startswith(name, "PART_ENTRY_")) { strscpyl(s, sizeof(s), "ID_", name, NULL); udev_builtin_add_property(dev, test, s, value); + + } else if (streq(name, "SYSTEM_ID")) { + blkid_encode_string(value, s, sizeof(s)); + udev_builtin_add_property(dev, test, "ID_FS_SYSTEM_ID", s); + + } else if (streq(name, "PUBLISHER_ID")) { + blkid_encode_string(value, s, sizeof(s)); + udev_builtin_add_property(dev, test, "ID_FS_PUBLISHER_ID", s); + + } else if (streq(name, "APPLICATION_ID")) { + blkid_encode_string(value, s, sizeof(s)); + udev_builtin_add_property(dev, test, "ID_FS_APPLICATION_ID", s); + + } else if (streq(name, "BOOT_SYSTEM_ID")) { + blkid_encode_string(value, s, sizeof(s)); + udev_builtin_add_property(dev, test, "ID_FS_BOOT_SYSTEM_ID", s); } } |