diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-09-14 01:42:29 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-09-14 01:45:55 -0700 |
commit | 46bb1d3157f9ad575c83a4bfa1e32b0d21bc8546 (patch) | |
tree | 28918f653d7cf970d33d5592047ef663289aca40 /clean | |
parent | ded2b24ce28f4a9df75ce40117f0f06f09574369 (diff) | |
download | mu-46bb1d3157f9ad575c83a4bfa1e32b0d21bc8546.tar.gz |
5650 - support a second OS: soso
https://github.com/ozkl/soso + Much smaller than Linux; builds instantly + Supports graphics - No network support - Doesn't work on a cloud server (yet?)
Diffstat (limited to 'clean')
-rwxr-xr-x | clean | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clean b/clean index 69255bef..82c1142b 100755 --- a/clean +++ b/clean @@ -7,4 +7,5 @@ rm -rf .until test $# -gt 0 && exit 0 # convenience: 'clean top-level' to leave subsidiary tools alone rm -rf enumerate/enumerate tangle/tangle tangle/*_list */*.dSYM termbox/*.[oa] rm -rf browse_trace/browse_trace_bin browse_trace/*_list -rm -rf tmp mu.iso +rm -rf tmp mu-linux.iso outfs initrd.fat mu-soso.iso +( cd kernel.soso && make clean; ) |