mirror of
https://github.com/wiiu-env/CustomRPXLoader.git
synced 2024-11-16 23:29:23 +01:00
Load the CustomRPXLoader into the start of the memory region, don't limit the size
This commit is contained in:
parent
fc1108fdbe
commit
dacb728d12
@ -3,7 +3,7 @@ OUTPUT(payload.elf);
|
||||
ENTRY(_start);
|
||||
|
||||
SECTIONS {
|
||||
. = 0x00808000;
|
||||
. = 0x00800000;
|
||||
.text : {
|
||||
*(.kernel_code*);
|
||||
/* everything below this code may get overwritten at runtime */
|
||||
@ -24,4 +24,4 @@ SECTIONS {
|
||||
}
|
||||
}
|
||||
|
||||
ASSERT((SIZEOF(.text) + SIZEOF(.data)) < (0x00900000 - 0x00808000), "elf is too big");
|
||||
ASSERT((SIZEOF(.text) + SIZEOF(.data)) < (0x00FD0000 - 0x00800000), "elf is too big");
|
Loading…
Reference in New Issue
Block a user