From c799b20bc300269bd3edc5cfdb26b54c6af6af23 Mon Sep 17 00:00:00 2001 From: peter Date: Sun, 3 Sep 2000 04:13:03 +0000 Subject: Complain if we cannot find loader(8) metadata. --- sys/amd64/amd64/machdep.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys/amd64') diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index 781ff87..6edecf0 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -1829,6 +1829,8 @@ init386(first) if (bootinfo.bi_modulep) { preload_metadata = (caddr_t)bootinfo.bi_modulep + KERNBASE; preload_bootstrap_relocate(KERNBASE); + } else { + printf("WARNING: loader(8) metadata is missing!\n"); } if (bootinfo.bi_envp) kern_envp = (caddr_t)bootinfo.bi_envp + KERNBASE; -- cgit v1.1