summaryrefslogtreecommitdiffstats
path: root/lilo.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-02-06 23:39:17 +0000
committerErik Troan <ewt@redhat.com>2001-02-06 23:39:17 +0000
commitbdf3d5782b85534b41ec52565fb582db9da2aabb (patch)
treef24cae6c9cbf309a5d21bfbf232fb7ed20d2b3b0 /lilo.py
parentddaa389f9737900931802249e62e96058a6f7194 (diff)
downloadanaconda-bdf3d5782b85534b41ec52565fb582db9da2aabb.tar.gz
anaconda-bdf3d5782b85534b41ec52565fb582db9da2aabb.tar.xz
anaconda-bdf3d5782b85534b41ec52565fb582db9da2aabb.zip
put enterprise kernel check back to 4gig
Diffstat (limited to 'lilo.py')
-rw-r--r--lilo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lilo.py b/lilo.py
index 098ab1638..62613cbc3 100644
--- a/lilo.py
+++ b/lilo.py
@@ -16,7 +16,7 @@ def needsEnterpriseKernel():
if l[3] == '(reserved)': continue
regionEnd = (string.atol(l[0], 16) - 1) + string.atol(l[2], 16)
- if regionEnd > 0x3fffffffL:
+ if regionEnd > 0xffffffffL:
rc = 1
return rc