diff options
Diffstat (limited to 'test/old.TEST-14-IMSM/test-init.sh')
-rwxr-xr-x | test/old.TEST-14-IMSM/test-init.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/old.TEST-14-IMSM/test-init.sh b/test/old.TEST-14-IMSM/test-init.sh new file mode 100755 index 00000000..f434f132 --- /dev/null +++ b/test/old.TEST-14-IMSM/test-init.sh @@ -0,0 +1,17 @@ +#!/bin/sh +export PATH=/sbin:/bin:/usr/sbin:/usr/bin +strstr() { [ "${1#*$2*}" != "$1" ]; } +CMDLINE=$(while read line; do echo $line;done < /proc/cmdline) +plymouth --quit +exec >/dev/console 2>&1 +echo "dracut-root-block-success" >/dev/sda +export TERM=linux +export PS1='initramfs-test:\w\$ ' +cat /proc/mdstat +[ -f /etc/fstab ] || ln -s /proc/mounts /etc/fstab +stty sane +echo "made it to the rootfs!" +strstr "$CMDLINE" "rd.shell" && sh -i +echo "Powering down." +mount -n -o remount,ro / +poweroff -f |