diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-10-14 04:31:49 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-10-14 04:31:49 +0200 |
commit | 3990f247652c3bd41e4ea074e6302277eb9c7aa3 (patch) | |
tree | a374a06aa0c19ef135bf93f47cfc50c76b476c17 /Makefile.am | |
parent | 0f4ba83c397e807939a4eb0b2cbd04ad4ab548cc (diff) |
rfkill: add new rfkill tool to save/restore rfkill state across reboots
This works analogous to the existing backlight and random seed services
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 7b6df1b608..66012441c0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3434,6 +3434,26 @@ EXTRA_DIST += \ units/systemd-backlight@.service.in # ------------------------------------------------------------------------------ +if ENABLE_RFKILL +rootlibexec_PROGRAMS += \ + systemd-rfkill + +nodist_systemunit_DATA += \ + units/systemd-rfkill@.service + +systemd_rfkill_SOURCES = \ + src/rfkill/rfkill.c + +systemd_rfkill_LDADD = \ + libsystemd-label.la \ + libsystemd-shared.la \ + libudev-private.la +endif + +EXTRA_DIST += \ + units/systemd-rfkill@.service.in + +# ------------------------------------------------------------------------------ if HAVE_LIBCRYPTSETUP rootlibexec_PROGRAMS += \ systemd-cryptsetup |