aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-06-20 16:28:14 +0200
committerMarvin Borner2020-06-20 16:28:14 +0200
commitcdea72777ae088e865b1100436a7ece7d5877347 (patch)
treeb1a697dfdf917f4649f6e386450813240cd47fd5 /run
parentdcf6dca74b8baadb8fdade55aad9068a60c3d25e (diff)
Added bootloader and basic ext2 parsing
Diffstat (limited to 'run')
-rwxr-xr-xrun9
1 files changed, 5 insertions, 4 deletions
diff --git a/run b/run
index bc583ab..3ed1240 100755
--- a/run
+++ b/run
@@ -101,15 +101,15 @@ make_build() {
make_genext2fs
/usr/local/bin/genext2fs -B 4096 -d disk/ -U -N 4096 -b 65536 build/disk.img
- nasm ./src/entry.asm -f bin -o disk/boot/boot.bin
+ nasm src/entry.asm -f bin -o disk/boot/boot.bin
cp build/melvix.bin disk/boot/
- dd if=disk/boot/boot.bin bs=512 of=build/disk.img
+ dd if=disk/boot/boot.bin of=build/disk.img conv=notrunc
printf "Build finshed successfully!\n\n"
}
make_test() {
- qemu_with_flags -hda ./build/disk.img
+ qemu_with_flags -hdb build/disk.img
}
make_disasm() {
@@ -134,7 +134,7 @@ make_tidy() {
}
make_clean() {
- rm -rf ./disk/bin/ ./build/
+ rm -rf ./disk/bin/ ./disk/boot/ ./build/
}
if [ "${mode}" = "cross" ]; then
@@ -147,6 +147,7 @@ elif [ "${mode}" = "clean" ]; then
make_clean
elif [ "${mode}" = "test" ]; then
make_cross
+ make_clean
make_build
make_sync &
make_test