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>
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
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