[SCM] applications.git branch, master, updated. 9f5d0a991492763d9867b11592a8390709e3431a
root
ontologiae at gmail.com
Mon Nov 29 11:15:56 UTC 2010
The following commit has been merged in the master branch:
commit 9f5d0a991492763d9867b11592a8390709e3431a
Author: root <ontologiae at gmail.com>
Date: Mon Nov 29 12:14:40 2010 +0100
Improve Makefile
diff --git a/isaacos/Makefile b/isaacos/Makefile
index ab58abd..a2e7edc 100644
--- a/isaacos/Makefile
+++ b/isaacos/Makefile
@@ -5,7 +5,7 @@ CC=gcc -Wall fno-stack-protector
kernel: boot.o startup.o link updateimage
link:
- ld -Ttext=100000 --entry=_start boot.o startup.o
+ ld -Ttext=100000 --entry=_start boot.o startup.o -o IsaacKernel
boot.o:
nasm -f elf -o boot.o boot.asm
@@ -26,7 +26,7 @@ image:
updateimage:
mount /dev/loop3 ./HdIsaac
- cp startup ./HdIsaac/IsaacKernel
+ cp IsaacKernel ./HdIsaac/IsaacKernel
startup.sys: startup.li
diff --git a/isaacos/startup.li b/isaacos/startup.li
index 89b96a7..02ff26f 100755
--- a/isaacos/startup.li
+++ b/isaacos/startup.li
@@ -58,8 +58,9 @@ Section Public
- main <-
( + dir:DIRECTORY;
-
+ "System initialization..".println;
SYSTEM.make;
+ "Opening FileSystem...".println;
// SCHEDULER.make;
--
applications.git
More information about the Lisaac-commits
mailing list