bootboot: make WARNING caps'ed for consistency

Signed-off-by: Andy-Python-Programmer <andypythonappdeveloper@gmail.com>
This commit is contained in:
Andy-Python-Programmer 2021-11-09 16:57:50 +11:00
parent 6867334eb7
commit 8d25ad05d2
No known key found for this signature in database
GPG Key ID: 80E0357347554B89
1 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ void bootboot_load(char *config) {
}
if (!symbol_table || !string_table) {
print("bootboot: warning: no symbol/string tables in the ELF!\n");
print("bootboot: WARNING: no symbol/string tables in the ELF!\n");
} else {
struct elf64_sym *symbols = KOFFSET(struct elf64_sym *, symbol_table->sh_offset);
char *symbol_strings = KOFFSET(char *, string_table->sh_offset);
@ -193,7 +193,7 @@ void bootboot_load(char *config) {
}
if (init_stack_size == (uint64_t)-1) {
print("bootboot: warning: no init stack size entered, assuming 1024\n");
print("bootboot: WARNING: no init stack size entered, assuming 1024\n");
print("1024 is really small, specify more using initstack=size ini initrd;\n");
init_stack_size = 1024;
delay(1000000);