[PATCH 1/7] Always put stage2 into RAM.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Related: rhbz#604614
---
 loader/cdinstall.c  |   27 +++++++--------------------
 loader/nfsinstall.c |    8 ++++----
 2 files changed, 11 insertions(+), 24 deletions(-)

diff --git a/loader/cdinstall.c b/loader/cdinstall.c
index 74c9b14..7675fe6 100644
--- a/loader/cdinstall.c
+++ b/loader/cdinstall.c
@@ -303,8 +303,7 @@ static void queryCDMediaCheck(char *dev, char *location) {
 static char *setupCdrom(char *location, struct loaderData_s *loaderData,
                         int interactive, int mediaCheck) {
     int i, rc;
-    int stage2inram = 0;
-    char *retbuf = NULL, *stage2loc, *stage2img;
+    char *retbuf = NULL, *stage2loc;
     struct device ** devices;
     char *cddev = NULL;
 
@@ -376,21 +375,10 @@ static char *setupCdrom(char *location, struct loaderData_s *loaderData,
                     if (mediaCheck)
                         queryCDMediaCheck(devices[i]->device, location);
 
-                    /* if in rescue mode lets copy stage 2 into RAM so we can */
-                    /* free up the CD drive and user can have it avaiable to  */
-                    /* aid system recovery.                                   */
-                    if (FL_RESCUE(flags) && !FL_TEXT(flags) &&
-                        totalMemory() > MIN_GUI_RAM ) {
-                        rc = copyFile(stage2loc, "/tmp/install.img");
-                        stage2img = strdup("/tmp/install.img");
-                        stage2inram = 1;
-                    } else {
-                        stage2img = strdup(stage2loc);
-                        stage2inram = 0;
-                    }
-
-                    rc = mountStage2(stage2img);
-                    free(stage2img);
+                    /* copy stage 2 into RAM */
+                    logMessage("transferring %s to /tmp", stage2loc);
+                    rc = copyFile(stage2loc, "/tmp/install.img");
+                    rc = mountStage2("/tmp/install.img");
 
                     if (rc) {
                         logMessage(INFO, "mounting stage2 failed");
@@ -410,9 +398,8 @@ static char *setupCdrom(char *location, struct loaderData_s *loaderData,
                     copyProductImg(updpath);
                     free(updpath);
 
-                    /* if in rescue mode and we copied stage2 to RAM */
-                    /* we can now unmount the CD                     */
-                    if (FL_RESCUE(flags) && stage2inram) {
+                    /* if in rescue mode we can now unmount the CD */
+                    if (FL_RESCUE(flags)) {
                         umount(location);
                     }
 
diff --git a/loader/nfsinstall.c b/loader/nfsinstall.c
index 21e029d..73dedcd 100644
--- a/loader/nfsinstall.c
+++ b/loader/nfsinstall.c
@@ -256,9 +256,9 @@ char * mountNfsImage(struct installMethod * method,
                                  strrchr(directory, '/'));
 
                 if (!access(buf, R_OK)) {
-                    logMessage(INFO, "can access %s", buf);
-                    rc = mountStage2(buf);
-
+                    logMessage(INFO, "transferring %s to /tmp", buf);
+                    rc = copyFile(buf, "/tmp/install.img");
+                    rc = mountStage2("/tmp/install.img");
                     if (rc == 0) {
                         stage = NFS_STAGE_UPDATES;
                         checked_asprintf(&url, "nfs:%s:%s", host,
@@ -266,7 +266,7 @@ char * mountNfsImage(struct installMethod * method,
                         free(buf);
                         break;
                     } else {
-                        logMessage(WARNING, "unable to mount %s", buf);
+                        logMessage(WARNING, "unable to mount /tmp/install.img");
                         free(buf);
                         break;
                     }
-- 
1.7.3.4

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list


[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux