mirror of
https://github.com/linuxboot/linuxboot
synced 2024-11-21 23:59:59 +00:00
12 lines
227 B
Bash
Executable File
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
|