Files
monok8s/initramfs/init
2026-03-20 23:02:34 +08:00

21 lines
452 B
Bash
Executable File

#!/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