summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/cdrom.c
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-11-04 12:02:53 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-11-04 12:02:53 +0000
commit4e5c98b81e00478f560fed1ae4ac4de6b5cc272d (patch)
tree83dff8501055cac219ed58bba9534c62157b6581 /mdk-stage1/cdrom.c
parent27059c3b4e2877a58e853c8048cf9bc59cff3d88 (diff)
downloaddrakx-backup-do-not-use-4e5c98b81e00478f560fed1ae4ac4de6b5cc272d.tar
drakx-backup-do-not-use-4e5c98b81e00478f560fed1ae4ac4de6b5cc272d.tar.gz
drakx-backup-do-not-use-4e5c98b81e00478f560fed1ae4ac4de6b5cc272d.tar.bz2
drakx-backup-do-not-use-4e5c98b81e00478f560fed1ae4ac4de6b5cc272d.tar.xz
drakx-backup-do-not-use-4e5c98b81e00478f560fed1ae4ac4de6b5cc272d.zip
test_that_cd() is now image_has_stage2()
Diffstat (limited to 'mdk-stage1/cdrom.c')
-rw-r--r--mdk-stage1/cdrom.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/mdk-stage1/cdrom.c b/mdk-stage1/cdrom.c
index c3cee97c8..c6f8455f7 100644
--- a/mdk-stage1/cdrom.c
+++ b/mdk-stage1/cdrom.c
@@ -49,21 +49,11 @@ static int mount_that_cd_device(char * dev_name)
}
-static int test_that_cd()
-{
-#ifdef MANDRAKE_MOVE
- return access(IMAGE_LOCATION "/live_tree.clp", R_OK);
-#else
- return access(IMAGE_LOCATION LIVE_LOCATION, R_OK);
-#endif
-}
-
-
static enum return_type try_with_device(char * dev_name, char * dev_model);
static enum return_type do_with_device(char * dev_name, char * dev_model)
{
- if (test_that_cd()) {
+ if (!image_has_stage2()) {
enum return_type results;
umount(IMAGE_LOCATION);
results = ask_yes_no("That CDROM disc does not seem to be a " DISTRIB_NAME " Installation CDROM.\nRetry with another disc?");
@@ -123,7 +113,7 @@ int try_automatic(char ** medias, char ** medias_models)
wait_message("Trying to access " DISTRIB_NAME " CDROM disc (drive %s)", *model);
if (mount_that_cd_device(*ptr) != -1) {
- if (!test_that_cd()) {
+ if (image_has_stage2()) {
remove_wait_message();
return i;
}