aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-07-14 22:06:54 +0200
committerMarvin Borner2020-07-14 22:06:54 +0200
commit94c260caa69108fb79af56d1fb2904bd419c8684 (patch)
treeb432bfdf0f6d06b7c3cf08f03e7f0fbd69dea826 /run
parent821d6d73c2791be19a522dd96c208a29be37e27a (diff)
Simple fix because I don't want to fix it for real
The inode number overflowed the 16 bit registers. Without splitting the numbers, there's no other way than removing the /boot directory ig. I just didn't want to fix it for real :)
Diffstat (limited to 'run')
-rwxr-xr-xrun15
1 files changed, 10 insertions, 5 deletions
diff --git a/run b/run
index 03149a7..2cd64c1 100755
--- a/run
+++ b/run
@@ -89,8 +89,8 @@ make_cross() {
}
make_build() {
- rm -rf ./disk/bin/ ./disk/boot/
- mkdir -p build/ disk/bin/ disk/boot/
+ rm -rf ./disk/bin/ ./disk/
+ mkdir -p build/ disk/bin/ disk/
echo "Building..."
cd build/
@@ -99,13 +99,13 @@ make_build() {
cd ..
# Copy files
- nasm src/entry.asm -f bin -o disk/boot/boot.bin
- cp build/melvix.bin disk/boot/
+ nasm src/entry.asm -f bin -o disk/boot.bin
+ cp build/melvix.bin disk/
# Create disk image
make_genext2fs
/usr/local/bin/genext2fs -B 1024 -d disk/ -U -N 1024 -b 65536 build/disk.img
- dd if=disk/boot/boot.bin of=build/disk.img conv=notrunc
+ dd if=disk/boot.bin of=build/disk.img conv=notrunc
printf "Build finshed successfully!\n\n"
}
@@ -158,6 +158,11 @@ elif [ "${mode}" = "test" ]; then
make_build
make_sync &
make_test
+elif [ "${mode}" = "debug" ]; then
+ make_cross
+ make_build
+ make_sync &
+ make_debug
elif [ "${mode}" = "again" ]; then
make_test
elif [ "${mode}" = "disasm" ]; then