Initial commit

This commit is contained in:
Bahadir Balban
2008-01-13 13:53:52 +00:00
commit e2b791a3d8
789 changed files with 95825 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# Inherit global environment
Import('env')
# The set of source files associated with this SConscript file.
src_local = ['linker.c']
obj = env.Object(src_local)
Return('obj')

8
src/arch/tests/linker.c Normal file
View File

@@ -0,0 +1,8 @@
#include <macros.h>
#include <config.h>
#include INC_ARCH(linker.h)
#include INC_PLAT(offsets.h)
unsigned int kernel_mapping_end = 0;
unsigned int _end = 0;