diff --git a/docs/build.mk b/docs/build.mk index 58cdc22..0e652fc 100644 --- a/docs/build.mk +++ b/docs/build.mk @@ -1,5 +1,5 @@ .PHONY: docs docs: -mkdir -p $(DOC_DIR)/html - naturaldocs -p $(DOC_DIR)/config -xi tmp -i . -o HTML $(DOC_DIR)/html - cp .github/favicon.ico $(DOC_DIR)/html/ + naturaldocs -p $(DOC_DIR)/config -img $(DOC_DIR)/img -xi tmp -i . -o HTML $(DOC_DIR)/html + cp $(DOC_DIR)/img/favicon.ico $(DOC_DIR)/html/ diff --git a/docs/config/Menu.txt b/docs/config/Menu.txt index bacd214..b66a439 100644 --- a/docs/config/Menu.txt +++ b/docs/config/Menu.txt @@ -40,6 +40,7 @@ Timestamp: Updated yyyy/mm/dd File: Introduction (docs/intro.txt) Link: Source Code (https://github.com/d0p1s4m4/StupidOS) +File: FAQ (docs/faq.txt) Group: Kernel { @@ -79,15 +80,31 @@ Group: Lib { File: keccak.s (lib/crypto/hash/keccak.s) } # Group: Hash + Group: Sign { + + File: ecdsa.s (lib/crypto/sign/ecdsa.s) + } # Group: Sign + } # Group: Crypto - File: ecdsa.s (lib/crypto/sign/ecdsa.s) + Group: PL/Stupid { + + Group: Runtime { + + File: crt0.s (lib/pls/runtime/crt0.s) + } # Group: Runtime + + } # Group: PL/Stupid + } # Group: Lib Group: Bin { - File: crt0.s (bin/crt0.s) - File: main.pls (bin/motd/main.pls) + Group: motd { + + File: main.pls (bin/motd/main.pls) + } # Group: motd + } # Group: Bin Group: Index { diff --git a/docs/faq.txt b/docs/faq.txt new file mode 100644 index 0000000..5a27a65 Binary files /dev/null and b/docs/faq.txt differ diff --git a/.github/favicon.ico b/docs/img/favicon.ico similarity index 100% rename from .github/favicon.ico rename to docs/img/favicon.ico diff --git a/docs/img/logo.png b/docs/img/logo.png new file mode 100644 index 0000000..a314bdf Binary files /dev/null and b/docs/img/logo.png differ diff --git a/docs/intro.txt b/docs/intro.txt index 4036bdd..f78af8f 100644 --- a/docs/intro.txt +++ b/docs/intro.txt @@ -2,14 +2,7 @@ File: Introduction About: StupidOS -> _____ _ _ _ _____ _____ -> / ___| | (_) | | _ / ___| -> \ `--.| |_ _ _ _ __ _ __| | | | \ `--. -> `--. \ __| | | | '_ \| |/ _` | | | |`--. \ -> /\__/ / |_| |_| | |_) | | (_| \ \_/ /\__/ / -> \____/ \__|\__,_| .__/|_|\__,_|\___/\____/ -> | | -> |_| +(see logo.png) Donate: diff --git a/bin/crt0.s b/lib/pls/runtime/crt0.s similarity index 100% rename from bin/crt0.s rename to lib/pls/runtime/crt0.s