package/systemd: add optional support for random-seed
Signed-off-by: Gabe Evans <gabe@hashrabbit.co> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
9dd9a00109
commit
bab978a09b
@ -159,6 +159,16 @@ config BR2_PACKAGE_SYSTEMD_FIRSTBOOT
|
||||
|
||||
http://www.freedesktop.org/software/systemd/man/systemd-firstboot.html
|
||||
|
||||
config BR2_PACKAGE_SYSTEMD_RANDOMSEED
|
||||
bool "enable random-seed support"
|
||||
help
|
||||
systemd-random-seed is a service that restores the random
|
||||
seed of the system at early boot and saves it at
|
||||
shutdown. Saving/restoring the random seed across boots
|
||||
increases the amount of available entropy early at boot.
|
||||
|
||||
http://www.freedesktop.org/software/systemd/man/systemd-random-seed.service.html
|
||||
|
||||
config BR2_PACKAGE_SYSTEMD_NETWORKD
|
||||
bool "enable network manager"
|
||||
help
|
||||
|
@ -177,6 +177,12 @@ else
|
||||
SYSTEMD_CONF_OPTS += --disable-firstboot
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SYSTEMD_RANDOMSEED),y)
|
||||
SYSTEMD_CONF_OPTS += --enable-randomseed
|
||||
else
|
||||
SYSTEMD_CONF_OPTS += --disable-randomseed
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SYSTEMD_NETWORKD),y)
|
||||
SYSTEMD_CONF_OPTS += --enable-networkd
|
||||
define SYSTEMD_INSTALL_RESOLVCONF_HOOK
|
||||
|
Loading…
Reference in New Issue
Block a user