diff options
Diffstat (limited to 'kern')
-rw-r--r-- | kern/boot_script.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kern/boot_script.c b/kern/boot_script.c index d937a26f..9e8f60a7 100644 --- a/kern/boot_script.c +++ b/kern/boot_script.c @@ -4,6 +4,7 @@ #include <mach/mach_types.h> #include <string.h> +#include <kern/printf.h> #include "boot_script.h" @@ -558,6 +559,7 @@ boot_script_exec (void) if (sym->type == VAL_NONE) { error = BOOT_SCRIPT_UNDEF_SYM; + printf("bootstrap script missing symbol '%s'\n", sym->name); goto done; } arg->type = sym->type; |