diff options
author | Kay Sievers <kay@vrfy.org> | 2013-09-23 17:23:35 -0500 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-09-24 15:43:41 +0200 |
commit | c51d84dc09476d9c06b8aac726220bf3c7d62e8d (patch) | |
tree | 3440df30c67dc883a896c88b653804240f5bf783 /Makefile.am | |
parent | 036ae95ac4a425475b58e1a8e53d5c52b2c8a218 (diff) |
support acpi firmware performance data (FPDT)
Prefer firmware-provided performance data over loader-exported ones; if
ACPI data is available, always use it, otherwise try to read the loader
data.
The firmware-provided variables start at the time the first EFI image
is executed and end when the operating system exits the boot services;
the (loader) time calculated in systemd-analyze increases.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index 89a5c86357..0eee1d93f0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -717,6 +717,10 @@ libsystemd_shared_la_SOURCES = \ src/shared/output-mode.h \ src/shared/MurmurHash3.c \ src/shared/MurmurHash3.h \ + src/shared/acpi-fpdt.h \ + src/shared/acpi-fpdt.c \ + src/shared/boot-timestamps.h \ + src/shared/boot-timestamps.c \ src/shared/refcnt.h #------------------------------------------------------------------------------- @@ -1155,9 +1159,6 @@ EXTRA_DIST += \ test_device_nodes_SOURCES = \ src/test/test-device-nodes.c -test_device_nodes_CFLAGS = \ - $(AM_CFLAGS) - test_device_nodes_LDADD = \ libsystemd-shared.la @@ -1209,12 +1210,12 @@ test_hostname_LDADD = \ if ENABLE_EFI manual_tests += \ - test-efivars + test-boot-timestamp -test_efivars_SOURCES = \ - src/test/test-efivars.c +test_boot_timestamp_SOURCES = \ + src/test/test-boot-timestamps.c -test_efivars_LDADD = \ +test_boot_timestamp_LDADD = \ libsystemd-shared.la endif |