From 5ceb140f37195c1837b377828d13de3f9a351ffd Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 20 Jul 2020 22:00:10 +0100 Subject: [PATCH] gem5: recommend haveged, don't depend Instead of explicitly adding haveged to IMAGE_INSTALL, add it to MACHINE_EXTRA_RECOMMENDS. This means people without haveged don't have failing builds, and tiny images which don't need haveged are not forced to contain it. Change-Id: I190cdd26dde38fc9039ca1017da3cd2d9ac78721 Signed-off-by: Ross Burton --- meta-gem5/conf/machine/gem5-arm64.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-gem5/conf/machine/gem5-arm64.conf b/meta-gem5/conf/machine/gem5-arm64.conf index 4db86c97..9ca2bb06 100644 --- a/meta-gem5/conf/machine/gem5-arm64.conf +++ b/meta-gem5/conf/machine/gem5-arm64.conf @@ -50,4 +50,4 @@ EXTRA_IMAGEDEPENDS += "gem5-aarch64-native" # Use haveged as a source of entropy instead of rng-tools (Needed for ssh). # rngd (Part of rng-tools) takes ~7 mins to init resulting in a slow boot time. PACKAGE_EXCLUDE_append = " rng-tools" -IMAGE_INSTALL_append = " haveged" +MACHINE_EXTRA_RRECOMMENDS += "haveged"