aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-05-07 00:16:52 +0200
committerMarvin Borner2020-05-07 00:16:52 +0200
commit31767b532e69c5a63df0106fa08e137e3106a449 (patch)
treeea7a91347e030c0b120361b7d9975547a5af19d1 /run
parent8083536f321ad8a12ad4668c2bf41a65c3e3b2f6 (diff)
Some fixes here and there...
Also implemented serial console in userspace
Diffstat (limited to 'run')
-rwxr-xr-xrun6
1 files changed, 1 insertions, 5 deletions
diff --git a/run b/run
index c2d83df..4ab5e85 100755
--- a/run
+++ b/run
@@ -186,8 +186,7 @@ make_font() {
}
make_clean() {
- #rm -rf ./build ./iso
- rm -rf ./iso ./build/*.img ./build/*.o ./build/*.bin
+ rm -rf ./iso ./build/
}
if [ "${mode}" = "cross" ]; then
@@ -200,7 +199,6 @@ elif [ "${mode}" = "clean" ]; then
make_clean
elif [ "${mode}" = "test" ]; then
make_cross
- make_clean
make_build
make_test
elif [ "${mode}" = "again" ]; then
@@ -214,7 +212,6 @@ elif [ "${mode}" = "image_debug" ]; then
make_image_debug
elif [ "${mode}" = "image" ]; then
make_cross
- make_clean
make_build
make_image
elif [ "${mode}" = "sync" ]; then
@@ -230,7 +227,6 @@ elif [ "${mode}" = "help" ]; then
echo "./run {cross | build | clean | test | debug | image | sync | tidy | font} [-y]"
else # TODO: Prevent code duplication in build script via functions?
make_cross
- make_clean
make_build
make_test
fi