From: "Brian C. Lane" <bcl@xxxxxxxxxx> Now that we are running from the media instead of RAM we can lower our minimum requirements a bit. Tested with a DVD desktop install in 512M and it worked fine. --- pyanaconda/isys/mem.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyanaconda/isys/mem.h b/pyanaconda/isys/mem.h index 3c4051c..3f0c4ae 100644 --- a/pyanaconda/isys/mem.h +++ b/pyanaconda/isys/mem.h @@ -26,14 +26,14 @@ #include <glib.h> #if defined(__powerpc64__) || defined(__sparc__) - #define MIN_RAM 1024*1024 // 1 GB + #define MIN_RAM 768*1024 // 768 MB #define GUI_INSTALL_EXTRA_RAM 512*1024 // 512 MB #else - #define MIN_RAM 768 * 1024 // 768 MB + #define MIN_RAM 512 * 1024 // 512 MB #define GUI_INSTALL_EXTRA_RAM 0 * 1024 // 0 MB #endif #define MIN_GUI_RAM MIN_RAM + GUI_INSTALL_EXTRA_RAM -#define EARLY_SWAP_RAM 1152 * 1024 // 1152 MB +#define EARLY_SWAP_RAM 896 * 1024 // 1152 MB #define MEMINFO "/proc/meminfo" -- 1.7.7.6 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list