Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2348 → Rev 2349

/branches/arm/boot/arch/arm32/loader/main.c
31,6 → 31,7
* @{
*/
/** @file
* @brief Bootstrap.
*/
 
 
93,7 → 94,7
bootinfo.cnt = 0;
for (i = 0; i < COMPONENTS; i++) {
printf(" %s...", components[i].name);
top = ALIGN_UP(top, PAGE_SIZE);
top = ALIGN_UP(top, KERNEL_PAGE_SIZE);
memcpy(((void *) KERNEL_VIRTUAL_ADDRESS) + top, components[i].start, components[i].size);
if (i > 0) {
bootinfo.tasks[bootinfo.cnt].addr = ((void *) KERNEL_VIRTUAL_ADDRESS) + top;