mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-20 05:28:08 +00:00
12 lines
227 B
Plaintext
12 lines
227 B
Plaintext
|
#!/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
|