Uh, we need more space.

This commit is contained in:
Kevin Lange 2011-04-24 22:30:48 -05:00
parent 8f520f2456
commit 03a8066742
2 changed files with 2 additions and 1 deletions

View File

@ -79,7 +79,7 @@ toaruos-initrd: initrd/boot/kernel initrd/boot/stage2 initrd/bs.bmp ${BINARIES}
@${ECHO} -n "\033[32m initrd Generating initial RAM disk\033[0m"
@# Get rid of the old one
@-rm -f toaruos-initrd
@${GENEXT} -d initrd -q -b 1024 toaruos-initrd
@${GENEXT} -d initrd -q -b 4096 toaruos-initrd
@${ECHO} "\r\033[32;1m initrd Generated initial RAM disk image\033[0m"
@${ECHO} "\033[34;1m -- HDD image is ready!\033[0m"

View File

@ -107,6 +107,7 @@ exec(
current_task->heap = heap; /* heap end */
current_task->heap_a = heap + (0x1000 - heap % 0x1000);
current_task->stack = 0x100F0000;
current_task->next_fd = 3;
/* Go go go */
enter_user_jmp(entry, argc, argv_, 0x100EFFFF);