diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2019-04-08 18:24:00 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2019-04-08 18:24:00 +0200 |
commit | 5cb5188112476b82af1e9f0a8f61866becca31e0 (patch) | |
tree | 8b8f0561785e8d9b371e27458bda6707daa03254 /init | |
download | minilinux-5cb5188112476b82af1e9f0a8f61866becca31e0.tar.gz |
Initial commit
Diffstat (limited to 'init')
-rw-r--r-- | init/Makefile | 17 | ||||
-rw-r--r-- | init/init.c | 13 | ||||
-rw-r--r-- | init/init.o | bin | 0 -> 1672 bytes |
3 files changed, 30 insertions, 0 deletions
diff --git a/init/Makefile b/init/Makefile new file mode 100644 index 0000000..53a64ea --- /dev/null +++ b/init/Makefile @@ -0,0 +1,17 @@ +CC = gcc +CFLAGS = +LDFLAGS = --static +OUTPUT = init.elf + +SRC = init.c + +build: init.o + $(CC) $(CFLAGS) $(SRC) $(LDFLAGS) -o $(OUTPUT) + +.PHONY: copy clean + +clean: + rm -df $(OUTPUT) + +copy: + objcopy -O binary $(OUTPUT) ../root/init diff --git a/init/init.c b/init/init.c new file mode 100644 index 0000000..00836b5 --- /dev/null +++ b/init/init.c @@ -0,0 +1,13 @@ +#include <stdio.h> +#include <unistd.h> + +int main(int argc, char* argv[]) +{ + printf("I'm a kernel!\r\n"); + + while(1) + { + printf("Still running!\r\n"); + sleep(1); + } +} diff --git a/init/init.o b/init/init.o Binary files differnew file mode 100644 index 0000000..6a8fc22 --- /dev/null +++ b/init/init.o |