diff options
author | James Meyer <james.meyer@operamail.com> | 2013-01-10 22:11:11 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2013-01-10 22:11:11 (GMT) |
commit | 21e0cfadb17a1a90a94a537520bc3737c43a78ce (patch) | |
tree | f5e02519cdc105012f3f0b47accbe2ab0b61c31c /build_tools/archiso/archiso/archiso_shutdown | |
parent | 4473d450326bdd798c790d2f70dfd890c4dc7d42 (diff) | |
download | linhes_dev-21e0cfadb17a1a90a94a537520bc3737c43a78ce.zip |
add support for ejecting the CD after install
Diffstat (limited to 'build_tools/archiso/archiso/archiso_shutdown')
-rw-r--r-- | build_tools/archiso/archiso/archiso_shutdown | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/build_tools/archiso/archiso/archiso_shutdown b/build_tools/archiso/archiso/archiso_shutdown index 85cce59..e61b7f9 100644 --- a/build_tools/archiso/archiso/archiso_shutdown +++ b/build_tools/archiso/archiso/archiso_shutdown @@ -32,6 +32,39 @@ if [[ ! -d /oldrun/archiso/copytoram ]]; then fi fi + +#JM +#This is where the reboot would go +echo "------------------------" +#bootdev is created in rc.local on startup +bootdev=$( cat /bootdev.txt ) +if [ -f /proc/sys/dev/cdrom/info ] +then + cdroms=$( cat /proc/sys/dev/cdrom/info | { while read a b c; do + #echo $a $b $c + if [ "${a}" = "drive" -a "${b}" = "name:" ]; then + echo ${c} + break + fi + done + } ) + for d in ${cdroms} + do + if [ "/dev/${d}" = "${bootdev}" ] + then + echo "Boot device is a cdrom, ejecting..." + eject ${bootdev} + break + fi + done +fi +echo "------------------------" +sleep 1 +# + + + + # reboot / poweroff / halt, depending on the argument passed by init # if something invalid is passed, we halt case "$1" in |