From 3d6e05660af445e49d41251c8c3b76b685e8f66e Mon Sep 17 00:00:00 2001 From: Jake Burkholder Date: Sat, 20 Oct 2001 15:55:42 +0000 Subject: [PATCH] Add fields for boothowto and the kernel environment to boothowto. --- sys/sparc64/include/bootinfo.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/sparc64/include/bootinfo.h b/sys/sparc64/include/bootinfo.h index e427f0585cd..4ef974cf278 100644 --- a/sys/sparc64/include/bootinfo.h +++ b/sys/sparc64/include/bootinfo.h @@ -43,9 +43,11 @@ struct bootinfo { u_int bi_version; /* Version number of this structure. */ + u_int bi_howto; /* How to boot. */ u_long bi_end; /* End of kernel space. */ u_long bi_kpa; /* Physical address of start of kernel. */ u_long bi_metadata; /* Preload modules. */ + u_long bi_envp; /* Kernel environment. */ }; #endif /* !_MACHINE_BOOTINFO_H_ */