-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workaround to make the bl work again (some memory problems, just incr…
…eased optimization level)
- Loading branch information
Showing
5 changed files
with
20 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
OPT_LEVEL=g | ||
LINK_FILE=bootmgr.debug.ld | ||
|
||
RELOC_ADDR=0x20034000 | ||
OBJSUB=debug/bootloader | ||
BINSUB=debug/bootloader | ||
|
||
include MakefileBase | ||
include MakefileLog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
OPT_LEVEL=g | ||
ADDITIONAL_CFLAGS=-DFIXED_BOOT_IMAGE | ||
LINK_FILE=bootmgr.debug.ld | ||
|
||
RELOC_ADDR=0x20034000 | ||
OBJSUB=debug/preloader | ||
BINSUB=debug/preloader | ||
|
||
include MakefileBase | ||
include MakefileLogPreloader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
LINK_FILE=bootmgr.debug.ld | ||
|
||
RELOC_ADDR=0x20034000 | ||
OBJSUB=debug/bootloader | ||
BINSUB=debug/bootloader | ||
|
||
include MakefileBase |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
ADDITIONAL_CFLAGS=-DFIXED_BOOT_IMAGE | ||
LINK_FILE=bootmgr.debug.ld | ||
|
||
RELOC_ADDR=0x20034000 | ||
OBJSUB=debug/preloader | ||
BINSUB=debug/preloader | ||
|
||
include MakefileBase |