From 1c8d4e69205fd875f6bec3fa3bd929c2e7f52f62 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 20 Nov 2021 09:53:11 -0800 Subject: Feature: self hosting prototype implemented This is a large change. In order to remove myself from libc's arcane interface, I implemented an independent runtime layer. It is based on musl's wonderful implementation mostly. Critically, if libc is linked to the program, then we cooperate. Namely, we call start main and let libc do all initialization. If not, then we have a noop defined in rt3.a. The general structure of the file is: 1. sys/$os/$arch contains all architecture dependent code 2. sys/$os/port contains all code that depends on the os, but is portable 3. rt/$arch contains all the runtime architecture dependent code 4. rt/* contains the portable runtime code. Obviously testing is needed. Specifically, while code is checked in for the most popular architectures, it only has been tested on one computer! Overall this is exciting and as been educational. --- bin/status | 4 ++-- bin/updatedirs | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/status b/bin/status index 7e406d1..9643e39 100755 --- a/bin/status +++ b/bin/status @@ -7,7 +7,7 @@ cpu() { } mail() { - NEWMAIL=$(expr $(ls -1 ~/mail/*/INBOX/new | wc -l) - 5) + NEWMAIL=$(expr $(ls -1 ~/mail/*/INBOX/new | wc -l) - 7) if [ "${NEWMAIL%% *}" -eq 0 ]; then printf " (%s)" "${NEWMAIL%% *}" @@ -71,7 +71,7 @@ ipaddr() { } dostatus() { - exec xsetroot -name "$VOL│$BAT│$MEM│$IP│$CPU│$NML│$WTR│$TIM" + exec xsetroot -name "$VOL│$MEM│$IP│$CPU│$NML│$WTR│$TIM" & } # signal handlers diff --git a/bin/updatedirs b/bin/updatedirs index 2b90ee4..663c51a 100755 --- a/bin/updatedirs +++ b/bin/updatedirs @@ -14,6 +14,9 @@ if __name__ == "__main__": if not os.path.exists(f"{BUILD}/sys"): os.mkdir(f"{BUILD}/sys") + if not os.path.exists(f"{BUILD}/rt"): + os.mkdir(f"{BUILD}/rt") + if not os.path.exists(TEST): os.mkdir(TEST) -- cgit v1.2.1