aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-07-24 15:21:36 +0200
committerMarvin Borner2020-07-24 15:21:36 +0200
commitfd73441fe4950c683699fe38ad59e4541b75e5a7 (patch)
tree7f549911388fd3881e52bbf2139aed8170c97481 /run
parent43183fe6b259005174a424828b2fbb06bfeb4a90 (diff)
Bug hunting for file reading (ext2 idp recursion)
Diffstat (limited to 'run')
-rwxr-xr-xrun18
1 files changed, 18 insertions, 0 deletions
diff --git a/run b/run
index 0a41b63..8309eaa 100755
--- a/run
+++ b/run
@@ -62,6 +62,13 @@ make_cross() {
fi
}
+make_disk() {
+ rm -rf disk && mkdir -p disk/
+ cd disk/
+
+ wget "https://raw.githubusercontent.com/fcambus/spleen/master/spleen-12x24.bdf" -O font24.bdf
+}
+
make_build() {
mkdir -p build/
rm -rf build/*
@@ -77,6 +84,15 @@ make_build() {
./ext2util/ext2util -x build/disk.img -wf kernel.bin -i 5 >/dev/null
rm kernel.bin
+ echo "Hello, world!" >disk/test.txt
+
+ mkdir -p mnt/
+ sudo mount build/disk.img mnt/
+ sudo cp disk/* mnt/
+ cat disk/* >/dev/null
+ sudo umount mnt/
+ rm -rf mnt/
+
printf "Build finshed successfully!\n\n"
}
@@ -143,6 +159,8 @@ elif [ "${mode}" = "sync" ]; then
make_sync
elif [ "${mode}" = "tidy" ]; then
make_tidy
+elif [ "${mode}" = "disk" ]; then
+ make_disk
elif [ "${mode}" = "" ]; then # TODO: Prevent code duplication in build script via functions?
make_cross
make_clean