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.
18 lines
455 B
18 lines
455 B
![]()
16 years ago
|
#!/bin/sh
|
||
![]()
15 years ago
|
export PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
||
![]()
16 years ago
|
exec >/dev/console 2>&1
|
||
![]()
16 years ago
|
while read dev fs fstype opts rest; do
|
||
![]()
16 years ago
|
[ "$dev" = "rootfs" ] && continue
|
||
![]()
16 years ago
|
[ "$fs" != "/" ] && continue
|
||
![]()
16 years ago
|
echo "nbd-OK $fstype $opts" >/dev/sda
|
||
![]()
14 years ago
|
echo "nbd-OK $fstype $opts"
|
||
![]()
16 years ago
|
break
|
||
|
done < /proc/mounts
|
||
![]()
16 years ago
|
export TERM=linux
|
||
|
export PS1='nbdclient-test:\w\$ '
|
||
|
stty sane
|
||
|
echo "made it to the rootfs! Powering down."
|
||
|
#sh -i
|
||
|
mount -n -o remount,ro / &> /dev/null
|
||
|
poweroff -f
|