Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Sep 2024 07:36:48 GMT
From:      Colin Percival <cperciva@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 74a28cf6e7f6 - main - loader: Load platform entropy even without menu
Message-ID:  <202409220736.48M7am2v097365@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by cperciva:

URL: https://cgit.FreeBSD.org/src/commit/?id=74a28cf6e7f66c7c12fd25ee8231eeedf756bf08

commit 74a28cf6e7f66c7c12fd25ee8231eeedf756bf08
Author:     Colin Percival <cperciva@FreeBSD.org>
AuthorDate: 2024-09-18 11:02:20 +0000
Commit:     Colin Percival <cperciva@FreeBSD.org>
CommitDate: 2024-09-22 07:35:48 +0000

    loader: Load platform entropy even without menu
    
    In 5c73b3e0a3db calls to core.loadEntropy were added to core.boot
    and core.autoboot; but neither of those is invoked if we disable
    the "beastie" menu.  Add a core.loadEntropy call to the no-menu
    path.
    
    Reviewed by:    imp
    MFC after:      1 week
    Sponsored by:   Amazon
    Fixes:  5c73b3e0a3db ("Add support for getting early entropy from UEFI")
    Differential Revision:  https://reviews.freebsd.org/D46637
---
 stand/lua/loader.lua | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/stand/lua/loader.lua b/stand/lua/loader.lua
index 454cd7e6332f..0874239db587 100644
--- a/stand/lua/loader.lua
+++ b/stand/lua/loader.lua
@@ -54,4 +54,6 @@ if not core.isMenuSkipped() then
 else
 	-- Load kernel/modules before we go
 	config.loadelf()
+	-- Load platform entropy if possible
+	core.loadEntropy()
 end



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202409220736.48M7am2v097365>