diff options
author | Peter Jones <pjones@redhat.com> | 2007-08-10 17:40:34 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-08-06 11:47:00 -0400 |
commit | ce5116e4c461a0a3e4d7af65654b334cf5bdc9f4 (patch) | |
tree | 83bad4996f544b0e18d8d42ccf613aeb72766fe9 /isys | |
parent | 42871fd5f1f61d00c39300a2daba6c9140657af4 (diff) | |
download | anaconda-ce5116e4c461a0a3e4d7af65654b334cf5bdc9f4.tar.gz anaconda-ce5116e4c461a0a3e4d7af65654b334cf5bdc9f4.tar.xz anaconda-ce5116e4c461a0a3e4d7af65654b334cf5bdc9f4.zip |
Make it >= not > for the memory size comparison (#207573)
Diffstat (limited to 'isys')
-rwxr-xr-x | isys/isys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py index f18431d39..2887883b2 100755 --- a/isys/isys.py +++ b/isys/isys.py @@ -990,7 +990,7 @@ def isPaeAvailable(): start = line.split(' ')[0].split('-')[0] start = long(start, 16) - if start > 0x100000000L: + if start >= 0x100000000L: isPAE = True break |