summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2019-04-08 18:29:02 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2019-04-08 18:29:02 +0200
commit3f9a100fae77a4886966cf41dd109be81055d3d0 (patch)
tree6f52e0ebe553efcf604f8c1bf331637a57971680
parent5cb5188112476b82af1e9f0a8f61866becca31e0 (diff)
downloadminilinux-3f9a100fae77a4886966cf41dd109be81055d3d0.tar.gz
fix
-rw-r--r--.gitignore1
-rw-r--r--init/Makefile6
-rw-r--r--init/init.obin1672 -> 0 bytes
3 files changed, 4 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 1978fd3..12e2244 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ bzImage
initramfs*
*.elf
root/*
+init
diff --git a/init/Makefile b/init/Makefile
index 53a64ea..fae06bf 100644
--- a/init/Makefile
+++ b/init/Makefile
@@ -1,11 +1,11 @@
CC = gcc
CFLAGS =
LDFLAGS = --static
-OUTPUT = init.elf
+OUTPUT = init
SRC = init.c
-build: init.o
+build:
$(CC) $(CFLAGS) $(SRC) $(LDFLAGS) -o $(OUTPUT)
.PHONY: copy clean
@@ -14,4 +14,4 @@ clean:
rm -df $(OUTPUT)
copy:
- objcopy -O binary $(OUTPUT) ../root/init
+ cp $(OUTPUT) ../root/init
diff --git a/init/init.o b/init/init.o
deleted file mode 100644
index 6a8fc22..0000000
--- a/init/init.o
+++ /dev/null
Binary files differ