linuxboot/initrd/init
2016-07-25 10:08:53 -04:00

12 lines
227 B
Bash
Executable File

#!/bin/ash
echo "Hello coreboot initrd"
# Mount the system directories
mkdir /proc /sys /dev /tmp /boot
mount -t proc none /proc
mount -t sysfs none /sys
mount -t devtmpfs none /dev
# Start an interactive shell
exec /bin/ash