You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
273 B
11 lines
273 B
![]()
16 years ago
|
#!/bin/sh
|
||
|
exec >/dev/console 2>&1
|
||
![]()
16 years ago
|
echo "dracut-root-block-success" >/dev/sda1
|
||
![]()
16 years ago
|
export TERM=linux
|
||
![]()
16 years ago
|
export PS1='initramfs-test:\w\$ '
|
||
![]()
16 years ago
|
[ -f /etc/fstab ] || ln -s /proc/mounts /etc/fstab
|
||
![]()
16 years ago
|
stty sane
|
||
![]()
16 years ago
|
echo "made it to the rootfs! Powering down."
|
||
![]()
16 years ago
|
mount -n -o remount,ro /
|
||
![]()
16 years ago
|
poweroff -f
|