mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
Fixed a few minor issues.
This commit is contained in:
@@ -17,11 +17,6 @@ PROJRELROOT = '../../'
|
||||
from config.projpaths import *
|
||||
from scripts.loader.generate_loader_asm import *
|
||||
|
||||
#loader_ksyms = generate_ksym_to_loader(join(PROJROOT, 'loader/ksyms.S'), \
|
||||
# join(BUILDDIR, 'kernel.elf'))
|
||||
|
||||
#loader_ksyms = Command([]'ksyms.S', 'kernel.elf', ksym_to_loader)
|
||||
|
||||
def ksym_to_loader(target, source, env):
|
||||
generate_ksym_to_loader(target[0].path, source[0].path)
|
||||
|
||||
|
||||
@@ -385,7 +385,7 @@ elf_loadFile(void *elfFile, bool phys)
|
||||
// printf("Memory cleared.\n");
|
||||
}
|
||||
// And this one
|
||||
//printf("\n");
|
||||
// printf("\n");
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ ENTRY(_start)
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
. = 0x2000000;
|
||||
. = 0x3000000;
|
||||
.text : { *(.text.head) *(.text) }
|
||||
.rodata : { *(.rodata) }
|
||||
.rodata1 : { *(.rodata1) }
|
||||
|
||||
Reference in New Issue
Block a user