From 537a44bf281559d304850b5e28b6f8b8e44fd593 Mon Sep 17 00:00:00 2001 From: Colin Percival Date: Sun, 30 May 2021 23:22:28 +0000 Subject: 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); -- cgit v1.2.3