summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-01-19 04:20:23 +0100
committerLennart Poettering <lennart@poettering.net>2013-01-19 04:22:09 +0100
commit2e3d069236777cd62f755a02f4a239306b4ad21a (patch)
tree82ffbaaa8b6ebb2ffd90454443cf5b403514afff /Makefile.am
parent610d99284feb9e942bce601c6aac1a5074545e6b (diff)
core: if the bootloader supports it, determine firmware and boot loader delay
This allows us to print simple performance data of all parts of the boot now: - firmware - boot loader - kernel - initrd - userspace This only works for bootloaders which support passing TSC data via EFI variables. As of now that's only gummiboot.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am11
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index c57ea0dce4..ba93db0d82 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -747,6 +747,8 @@ libsystemd_shared_la_SOURCES = \
src/shared/util.h \
src/shared/virt.c \
src/shared/virt.h \
+ src/shared/efivars.c \
+ src/shared/efivars.h \
src/shared/path-util.c \
src/shared/path-util.h \
src/shared/time-util.c \
@@ -1181,7 +1183,8 @@ noinst_PROGRAMS += \
test-cgroup \
test-install \
test-watchdog \
- test-log
+ test-log \
+ test-efivars
noinst_tests += \
test-job-type \
@@ -1246,6 +1249,12 @@ test_hostname_SOURCES = \
test_hostname_LDADD = \
libsystemd-core.la
+test_efivars_SOURCES = \
+ src/test/test-efivars.c
+
+test_efivars_LDADD = \
+ libsystemd-shared.la
+
test_unit_name_SOURCES = \
src/test/test-unit-name.c