summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2008-04-10 14:08:42 -0400
committerJeremy Katz <katzj@redhat.com>2008-04-10 14:10:59 -0400
commitd0b3af62ade231a60c25f0125ecd13d261fe8b03 (patch)
tree1447c8a6238dd71f525f49ffc3e3b9ec895f0b01 /packages.py
parent855d69b45f2ec1ea0bc66cd391add89a90a804af (diff)
downloadanaconda-d0b3af62ade231a60c25f0125ecd13d261fe8b03.tar.gz
anaconda-d0b3af62ade231a60c25f0125ecd13d261fe8b03.tar.xz
anaconda-d0b3af62ade231a60c25f0125ecd13d261fe8b03.zip
More ia64 kernel path fixage (#441846)
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages.py b/packages.py
index 3f1419be1..3861e6c80 100644
--- a/packages.py
+++ b/packages.py
@@ -294,8 +294,8 @@ def rpmKernelVersionList(rootPath = "/"):
for f in header['filenames']:
if f.startswith('/boot/vmlinuz-'):
return f[14:]
- elif f.startswith('/boot/efi/vmlinuz-'):
- return f[18:]
+ elif f.startswith('/boot/efi/EFI/redhat/vmlinuz-'):
+ return f[21:]
return ""
def get_tag(header):