summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/init.c
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-11-27 13:36:49 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-11-27 13:36:49 +0000
commite69be5e8dc97a4dc8c45b79cbf7fb6f8fc646464 (patch)
tree06c2171d90069b35fba2d44000d81a67e598459c /mdk-stage1/init.c
parent4d112b7162c44a09bcce93510728b7bc1352fc4d (diff)
downloaddrakx-e69be5e8dc97a4dc8c45b79cbf7fb6f8fc646464.tar
drakx-e69be5e8dc97a4dc8c45b79cbf7fb6f8fc646464.tar.gz
drakx-e69be5e8dc97a4dc8c45b79cbf7fb6f8fc646464.tar.bz2
drakx-e69be5e8dc97a4dc8c45b79cbf7fb6f8fc646464.tar.xz
drakx-e69be5e8dc97a4dc8c45b79cbf7fb6f8fc646464.zip
move tries to eject cdrom
Diffstat (limited to 'mdk-stage1/init.c')
-rw-r--r--mdk-stage1/init.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/mdk-stage1/init.c b/mdk-stage1/init.c
index 44fc9a3e9..31cfda544 100644
--- a/mdk-stage1/init.c
+++ b/mdk-stage1/init.c
@@ -26,6 +26,7 @@
#endif
#include "config-stage1.h"
+#include <linux/cdrom.h>
#if defined(__powerpc__)
#define TIOCSCTTY 0x540E
@@ -329,6 +330,15 @@ void unmount_filesystems(void)
printf("\tumount failed: %s\n", fs[i].name);
if (strcmp(fs[i].fs, "ext2") == 0) nb++; /* don't count not-ext2 umount failed */
}
+
+#ifdef MANDRAKE_MOVE
+ fd = open("/dev/cdrom", O_RDONLY|O_NONBLOCK, 0);
+ if (fd > 0) {
+ printf("ejecting cdrom\n");
+ ioctl(fd, CDROMEJECT, 0);
+ close(fd);
+ }
+#endif
if (nb) {
printf("failed to umount some filesystems\n");
@@ -479,11 +489,13 @@ int main(int argc __attribute__ ((unused)), char **argv __attribute__ ((unused))
sync(); sync();
if (!abnormal_termination) {
- if (reboot_magic == 0x01234567)
+ if (reboot_magic == 0x01234567) {
printf("automatic reboot in 10 seconds\n");
- else
- printf("automatic poweroff in 10 seconds\n");
- sleep(10);
+ sleep(10);
+ } else {
+ printf("automatic poweroff in 15 seconds\n");
+ sleep(15);
+ }
reboot(0xfee1dead, 672274793, reboot_magic);
} else {
printf("you may safely reboot or halt your system\n");