Merge pull request #131 from ilobilo/trunk

Low memory area is deprecated and should be disabled
This commit is contained in:
mint 2021-11-10 11:54:59 +01:00 committed by GitHub
commit 907ddcd388
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ struct stivale_header header = {
.framebuffer_bpp = 0,
.framebuffer_width = 0,
.framebuffer_height = 0,
.flags = (1 << 3),
.flags = (1 << 3) | (1 << 4),
.entry_point = (uint64_t)(uintptr_t)stivale_main
};

View File

@ -40,7 +40,7 @@ __attribute__((section(".stivale2hdr"), used))
struct stivale2_header header2 = {
.entry_point = (uint64_t)stivale2_main,
.stack = (uintptr_t)stacks[0] + sizeof(stack),
.flags = (1 << 1) | (1 << 2) | (1 << 3),
.flags = (1 << 1) | (1 << 2) | (1 << 3) | (1 << 4),
.tags = (uint64_t)&any_video_request
};