12 lines
219 B
Bash
12 lines
219 B
Bash
#!/bin/sh
|
|
|
|
# Disable Kernel Messages
|
|
dmesg -n 1
|
|
|
|
# Mount the file system
|
|
mount -t devtmpfs none /dev
|
|
mount -t proc none /dev
|
|
mount -t sysfs none /sys
|
|
|
|
# Start shell with proper tty and power off support
|
|
exec cttyhack sh |