summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2007-08-10 17:40:34 +0000
committerChris Lumens <clumens@redhat.com>2008-08-06 11:47:00 -0400
commitce5116e4c461a0a3e4d7af65654b334cf5bdc9f4 (patch)
tree83bad4996f544b0e18d8d42ccf613aeb72766fe9 /isys
parent42871fd5f1f61d00c39300a2daba6c9140657af4 (diff)
downloadanaconda-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-xisys/isys.py2
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