loader: Trim unneeded data
This commit is contained in:
parent
918b00ce07
commit
92a23d9055
|
@ -6,7 +6,6 @@ SECTIONS {
|
||||||
.text : {
|
.text : {
|
||||||
*(.text._start);
|
*(.text._start);
|
||||||
KEEP(*(._boot_cfg));
|
KEEP(*(._boot_cfg));
|
||||||
KEEP(*(._octopus));
|
|
||||||
*(.text*);
|
*(.text*);
|
||||||
}
|
}
|
||||||
.data : {
|
.data : {
|
||||||
|
|
|
@ -31,26 +31,6 @@
|
||||||
|
|
||||||
boot_cfg_t __attribute__((section ("._boot_cfg"))) b_cfg;
|
boot_cfg_t __attribute__((section ("._boot_cfg"))) b_cfg;
|
||||||
|
|
||||||
const volatile char __attribute__((section ("._octopus"))) octopus[] =
|
|
||||||
"\n"
|
|
||||||
" ___\n"
|
|
||||||
" .-' `'.\n"
|
|
||||||
" / \\\n"
|
|
||||||
" | ;\n"
|
|
||||||
" | | ___.--,\n"
|
|
||||||
" _.._ |0) = (0) | _.---'`__.-( (_.\n"
|
|
||||||
" __.--'`_.. '.__.\\ '--. \\_.-' ,.--'` `\"\"`\n"
|
|
||||||
" ( ,.--'` ',__ /./; ;, '.__.'` __\n"
|
|
||||||
" _`) ) .---.__.' / | |\\ \\__..--\"\" \"\"\"--.,_\n"
|
|
||||||
" `---' .'.''-._.-'`_./ /\\ '. \\ _.--''````'''--._`-.__.'\n"
|
|
||||||
" | | .' _.-' | | \\ \\ '. `----`\n"
|
|
||||||
" \\ \\/ .' \\ \\ '. '-._)\n"
|
|
||||||
" \\/ / \\ \\ `=.__`'-.\n"
|
|
||||||
" / /\\ `) ) / / `\"\".`\\\n"
|
|
||||||
" , _.-'.'\\ \\ / / ( ( / /\n"
|
|
||||||
" `--'` ) ) .-'.' '.'. | (\n"
|
|
||||||
" (/` ( (` ) ) '-; [switchbrew]\n";
|
|
||||||
|
|
||||||
void loader_main()
|
void loader_main()
|
||||||
{
|
{
|
||||||
// Preliminary BPMP clocks init.
|
// Preliminary BPMP clocks init.
|
||||||
|
|
Loading…
Reference in New Issue