summaryrefslogtreecommitdiffstats
path: root/loader/loader.c
diff options
context:
space:
mode:
authorbfox <bfox>2001-04-12 22:25:53 +0000
committerbfox <bfox>2001-04-12 22:25:53 +0000
commit2f10cc31513795b2c6d60630e0bd171afec689b2 (patch)
tree8b97f4c3a6ce8abfede512b4944dfc8d5bfcec60 /loader/loader.c
parent01e15e708ae435e2faec6c42827e25d4dac9cd01 (diff)
downloadanaconda-2f10cc31513795b2c6d60630e0bd171afec689b2.tar.gz
anaconda-2f10cc31513795b2c6d60630e0bd171afec689b2.tar.xz
anaconda-2f10cc31513795b2c6d60630e0bd171afec689b2.zip
tell the user how much RAM they need to complete install
Diffstat (limited to 'loader/loader.c')
-rw-r--r--loader/loader.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/loader/loader.c b/loader/loader.c
index 6bbe06294..698010d17 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -2455,7 +2455,9 @@ static void checkForRam(int flags) {
if (!FL_EXPERT(flags) && (totalMemory() < MIN_RAM)) {
startNewt(flags);
newtWinMessage(_("Error"), _("OK"), _("You don't have enough "
- "system memory to install Red Hat on this machine."));
+ "system memory to install Red Hat Linux on this machine."
+ "You need at least 32 MB of RAM to complete the "
+ "installation."));
stopNewt();
exit(0);
}