All posix tests running as before.

This commit is contained in:
Bahadir Balban
2009-10-10 00:23:13 +03:00
parent 13c7a6476d
commit f54747a208
15 changed files with 86 additions and 113 deletions

View File

@@ -9,7 +9,9 @@ from os.path import join
Import('env')
###
### FIXME: We are missing the dependency on containers.elf
###
PROJRELROOT = '../../'
from config.projpaths import *

View File

@@ -375,8 +375,8 @@ elf_loadFile(void *elfFile, bool phys)
// printf("Elf program header offset: %p\n", src);
pheader_type = elf_getProgramHeaderType(elfFile, i);
// printf("Elf program header type: %p\n", pheader_type);
printf("Copying to range from 0x%x to 0x%x of size: 0x%x\n", (unsigned int)dest, (unsigned int)dest + (unsigned int)len, (unsigned int)len);
// Comment
//printf("Copying to range from 0x%x to 0x%x of size: 0x%x\n", (unsigned int)dest, (unsigned int)dest + (unsigned int)len, (unsigned int)len);
memcpy((void*) (uintptr_t) dest, (void*) (uintptr_t) src, len);
dest += len;
clrsize = elf_getProgramHeaderMemorySize(elfFile, i) - len;
@@ -385,7 +385,7 @@ elf_loadFile(void *elfFile, bool phys)
// printf("Memory cleared.\n");
}
// And this one
printf("\n");
//printf("\n");
return true;
}