From 611f346b41e02bd74cf7aaffdfb9251a09bf56e6 Mon Sep 17 00:00:00 2001 From: MichaIng Date: Thu, 1 Feb 2024 20:08:37 +0100 Subject: [PATCH] v9.1 - DietPi-Installer | Do NOT install haveged on any other system than those 3 with ancient kernels --- .build/images/dietpi-installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.build/images/dietpi-installer b/.build/images/dietpi-installer index 6babd391e5..ad503a6ae5 100755 --- a/.build/images/dietpi-installer +++ b/.build/images/dietpi-installer @@ -904,7 +904,7 @@ setenv rootuuid "true"' /boot/boot.cmd ) # Install entropy daemon on SBCs with ancient kernel: NanoPi M2/T2/Fire2, NanoPi M3/T3/Fire3, Sparky SBC - if [[ ! $G_HW_MODEL =~ ^(61|62|70)$ ]] + if [[ $G_HW_MODEL =~ ^(61|62|70)$ ]] then aPACKAGES_REQUIRED_INSTALL+=('haveged') # https://github.com/MichaIng/DietPi/issues/4710