Initial commit

This commit is contained in:
2026-03-20 22:58:57 +08:00
parent 3cee9af22b
commit 9c97871f97
11 changed files with 284 additions and 1 deletions

20
initramfs/init Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
mount -t proc none /proc
mount -t sysfs none /sys
cat <<!
_ _ _ __ __ _
| | | (_) | \/ | | |
| |__| |_ | \ / | ___ _ __ ___ | |
| __ | | | |\/| |/ _ \| '_ \ / _ \| |
| | | | |_ | | | | (_) | | | | (_) |_|
|_| |_|_( ) |_| |_|\___/|_| |_|\___/(_)
|/
Booting kernel took $(cut -d' ' -f1 /proc/uptime) seconds.
!
exec /bin/sh
EOF