aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-04-16 19:06:33 +0200
committerMarvin Borner2020-04-16 19:06:33 +0200
commit4014a36377ff69f6433e7b0af2144bc3a7d29ca7 (patch)
tree9440ac3749d406c6df9917d4bb3a19de6ea99655 /run
parentfc26e84ef8c6255926811fe639e3e466b756e581 (diff)
Many fix attempts for the divide by zero exception
Diffstat (limited to 'run')
-rwxr-xr-xrun7
1 files changed, 6 insertions, 1 deletions
diff --git a/run b/run
index b32fe1c..7dff314 100755
--- a/run
+++ b/run
@@ -136,7 +136,6 @@ p
1
2048
199999
-a
w
EOF
@@ -144,6 +143,12 @@ EOF
cp ./build/ext2_hda.img ./build/ext2_hdc.img
cp ./build/ext2_hda.img ./build/ext2_hdd.img
+ mkdir mnt/
+ sudo mount ./build/ext2_hda.img mnt/
+ echo "Bananenkuchen" | sudo tee -a mnt/test.txt
+ sudo umount mnt
+ rm -r mnt/
+
printf "Build finshed successfully!\n\n"
}