i386-stivale2: fix stack

This commit is contained in:
Quinten Kock 2020-12-19 18:24:59 +01:00
parent 5535db2488
commit 41c6789687
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ void stivale2_main(struct stivale2_struct *info);
__attribute__((section(".stivale2hdr"), used)) __attribute__((section(".stivale2hdr"), used))
struct stivale2_header header2 = { struct stivale2_header header2 = {
.entry_point = 0, .entry_point = 0,
.stack = 1024*1024, .stack = 1024*1024 + 15*1024,
.flags = 0, .flags = 0,
.tags = 0 .tags = 0
}; };