git: 537a44bf2815 - main - stand/common command_boot: Pass tslog to kernel

Colin Percival cperciva at FreeBSD.org
Mon Jun 21 03:29:12 UTC 2021


The branch main has been updated by cperciva:

URL: https://cgit.FreeBSD.org/src/commit/?id=537a44bf281559d304850b5e28b6f8b8e44fd593

commit 537a44bf281559d304850b5e28b6f8b8e44fd593
Author:     Colin Percival <cperciva at FreeBSD.org>
AuthorDate: 2021-05-30 23:22:28 +0000
Commit:     Colin Percival <cperciva at FreeBSD.org>
CommitDate: 2021-06-21 03:09:46 +0000

    stand/common command_boot: Pass tslog to kernel
    
    Pass the recorded tslog buffer to the kernel as a "preloaded module".
    
    Reviewed by:    kevans
---
 stand/common/boot.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/stand/common/boot.c b/stand/common/boot.c
index 2103f6dc240c..5ce6fe8a6760 100644
--- a/stand/common/boot.c
+++ b/stand/common/boot.c
@@ -113,6 +113,9 @@ command_boot(int argc, char *argv[])
 #endif
 #endif
 
+	/* Pass the tslog buffer to the kernel as a preloaded module. */
+	tslog_publish();
+
 	/* Call the exec handler from the loader matching the kernel */
 	file_formats[fp->f_loader]->l_exec(fp);
 	return(CMD_ERROR);


More information about the dev-commits-src-all mailing list