diff options
author | Marvin Borner | 2020-05-07 00:16:52 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-07 00:16:52 +0200 |
commit | 31767b532e69c5a63df0106fa08e137e3106a449 (patch) | |
tree | ea7a91347e030c0b120361b7d9975547a5af19d1 /run | |
parent | 8083536f321ad8a12ad4668c2bf41a65c3e3b2f6 (diff) |
Some fixes here and there...
Also implemented serial console in userspace
Diffstat (limited to 'run')
-rwxr-xr-x | run | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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 |