commit 01c8a91

chld  ·  2025-12-22 18:13:29 +0000 UTC
parent ca2a318
setup-userland + readme
2 files changed,  +6, -2
+1, -1
1@@ -12,7 +12,7 @@ here is what it offers:
2 * a [KISS Linux](https://kisscommunity.org) base
3 * the `apk` package manager
4 * the [situation](https://codeberg.org/derivelinux/situation) init
5-* a `busybox` userland
6+* a `busybox` + `toybox` userland
7 * `libressl` over `openssl`(?)
8    
9 in this repository is a set of shell scripts that are used to
+5, -1
 1@@ -34,7 +34,8 @@ _inc '
 2 #######################################
 3 
 4 # enter toybox (hybrid cutils)
 5-# toybox - file management, reboot&friends
 6+# toybox - file management, login, some lowlevel things:
 7+# 	- dmesg, reboot&friends
 8 # busybox - networking, fs management
 9 
10 wget \
11@@ -48,3 +49,6 @@ for i in ls mv cp rm mkdir ln unlink rmdir; do _swt toybox $i ; done
12 for i in tee touch cat less find; do _swt toybox $i ; done
13 for i in chmod chown; do _swt toybox $i ; done
14 for i in reboot poweroff halt; do _swt toybox $i ; done
15+for i in dmesg sysctl top; do _swt toybox $i ; done
16+for i in getty login; do _swt toybox $i ; done
17+for i in free du df; do _swt toybox $i ; done