diff options
author | Tomáš Golembiovský <tgolembi@redhat.com> | 2018-10-23 13:23:11 +0200 |
---|---|---|
committer | Michael Roth <mdroth@linux.vnet.ibm.com> | 2018-10-31 09:04:20 -0500 |
commit | b616105a904bc350a409e12c39af0ae210900124 (patch) | |
tree | 66ebdc81146703d0824a550bf6a62f1f94d5f977 /qga/Makefile.objs | |
parent | 3efac6ebb88e4d099f07fef65178ebaa595ae770 (diff) |
qga: linux: report disk serial number
Add reporting of disk serial number on Linux guests. The feature depends
on libudev.
Example:
{
"name": "dm-2",
"mountpoint": "/",
...
"disk": [
{
"serial": "SAMSUNG_MZ7LN512HCHP-000L1_S1ZKNXAG822493",
...
}
],
}
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Diffstat (limited to 'qga/Makefile.objs')
-rw-r--r-- | qga/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qga/Makefile.objs b/qga/Makefile.objs index ed08c5917c..80e6bb3c2e 100644 --- a/qga/Makefile.objs +++ b/qga/Makefile.objs @@ -1,3 +1,4 @@ +commands-posix.o-libs := $(LIBUDEV_LIBS) qga-obj-y = commands.o guest-agent-command-state.o main.o qga-obj-$(CONFIG_POSIX) += commands-posix.o channel-posix.o qga-obj-$(CONFIG_WIN32) += commands-win32.o channel-win32.o service-win32.o |