Merge pull request #131 from ilobilo/trunk
Low memory area is deprecated and should be disabled
This commit is contained in:
commit
907ddcd388
@ -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
|
||||
};
|
||||
|
||||
|
@ -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
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user