Merge pull request #127 from Andy-Python-Programmer/patch-3

bootboot: make WARNING caps'ed for consistency
This commit is contained in:
mint 2021-11-09 07:38:47 +01:00 committed by GitHub
commit f55b987d6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);