heads/initrd/init

12 lines
227 B
Plaintext
Raw Normal View History

2016-07-25 14:08:53 +00:00
#!/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