summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authorbfox <bfox>2001-04-16 04:26:13 +0000
committerbfox <bfox>2001-04-16 04:26:13 +0000
commitbc5da2ba9e5ef030d56d00958f1933ce23f2886a (patch)
tree0831d9033ec190ecbafb50ff08aa33687a6e0163 /loader
parentf74c46cb257f0abf91adff95149459f09e615b65 (diff)
downloadanaconda-bc5da2ba9e5ef030d56d00958f1933ce23f2886a.tar.gz
anaconda-bc5da2ba9e5ef030d56d00958f1933ce23f2886a.tar.xz
anaconda-bc5da2ba9e5ef030d56d00958f1933ce23f2886a.zip
implement RFE bug #35984 - specify minimum ram amount
Diffstat (limited to 'loader')
-rw-r--r--loader/loader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/loader.c b/loader/loader.c
index 5793f68f4..f5353db65 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -2456,8 +2456,8 @@ static void checkForRam(int flags) {
startNewt(flags);
newtWinMessage(_("Error"), _("OK"), _("You do not have enough "
"RAM to install Red Hat Linux on this machine."
- "You need at least 32 MB of RAM to complete the "
- "installation."));
+ "You need at least %d MB of RAM to complete the "
+ "installation.", MIN_RAM/1000));
stopNewt();
exit(0);
}