diff options
author | Erik Troan <ewt@redhat.com> | 1999-09-23 18:42:16 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-09-23 18:42:16 +0000 |
commit | 47b09ac8d642c05905027bd817c55f1386a6c7b3 (patch) | |
tree | 800b05bdeb1390080ce9404369a86bb6c6c76ccf /textw/partitioning.py | |
parent | 2133850b33b83d2b163a7a9e0f256f7c30ca2cbd (diff) | |
download | anaconda-47b09ac8d642c05905027bd817c55f1386a6c7b3.tar.gz anaconda-47b09ac8d642c05905027bd817c55f1386a6c7b3.tar.xz anaconda-47b09ac8d642c05905027bd817c55f1386a6c7b3.zip |
turn on swap early for machines with <= 32 MB of RAM
Diffstat (limited to 'textw/partitioning.py')
-rw-r--r-- | textw/partitioning.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partitioning.py b/textw/partitioning.py index 732493d68..1f6b51ad8 100644 --- a/textw/partitioning.py +++ b/textw/partitioning.py @@ -135,7 +135,7 @@ class TurnOnSwapWindow: beenTurnedOn = 0 def __call__(self, screen, todo): - if self.beenTurnedOn or (iutil.memInstalled() > 30000): + if self.beenTurnedOn or (iutil.memInstalled() > 34000): return INSTALL_NOOP rc = ButtonChoiceWindow(screen, _("Low Memory"), |