diff --git a/src/sys/Makefile b/src/sys/Makefile index 938e6b5..0f45e30 100755 --- a/src/sys/Makefile +++ b/src/sys/Makefile @@ -19,6 +19,9 @@ (cd vmm;make); kernel-img: compile + (/bin/echo "/* " > ./compile/null.c) + (date >> ./compile/null.c) + (/bin/echo " */" >> ./compile/null.c) (cd compile;make) install: diff --git a/src/sys/compile/Makefile b/src/sys/compile/Makefile index c492257..7be4db4 100755 --- a/src/sys/compile/Makefile +++ b/src/sys/compile/Makefile @@ -16,7 +16,7 @@ REMOVE = rm -f #Objects -OBJS = +OBJS = null.o # Link the kernel statically with fixed text+data address @1M $(KERNEL) : $(OBJS) @@ -40,4 +40,4 @@ # Clean up the junk clean: - $(REMOVE) $(OBJS) $(KERNEL) \ No newline at end of file + $(REMOVE) $(OBJS) $(KERNEL) diff --git a/src/sys/compile/null.c b/src/sys/compile/null.c new file mode 100755 index 0000000..dd02376 --- /dev/null +++ b/src/sys/compile/null.c @@ -0,0 +1,3 @@ +/* +Sun May 12 21:57:41 EDT 2002 + */