1 |
slords |
1.1 |
From afe131a1d0aacc5343f7bb6036d1aa35f64fe272 Mon Sep 17 00:00:00 2001 |
2 |
|
|
From: Shad L. Lords <slords@mail.com> |
3 |
|
|
Date: Thu, 22 Oct 2009 09:24:50 -0600 |
4 |
|
|
Subject: [PATCH] Use SME labels on grub screen |
5 |
|
|
|
6 |
|
|
--- |
7 |
|
|
bootloaderInfo.py | 6 +++--- |
8 |
|
|
1 files changed, 3 insertions(+), 3 deletions(-) |
9 |
|
|
|
10 |
|
|
diff --git a/bootloaderInfo.py b/bootloaderInfo.py |
11 |
|
|
index e5582f0..223055e 100644 |
12 |
|
|
--- a/bootloaderInfo.py |
13 |
|
|
+++ b/bootloaderInfo.py |
14 |
|
|
@@ -2079,9 +2079,9 @@ def getRootDevName(initrd, fsset, rootDev, instRoot): |
15 |
|
|
# returns a product name to use for the boot loader string |
16 |
|
|
# FIXME: this is based on the stuff from anaconda, but kind of crappy :-/ |
17 |
|
|
def getProductName(): |
18 |
|
|
- # try redhat-release first |
19 |
|
|
- if os.access("/etc/redhat-release", os.R_OK): |
20 |
|
|
- f = open("/etc/redhat-release", "r") |
21 |
|
|
+ # try e-smith-release first |
22 |
|
|
+ if os.access("/etc/e-smith-release", os.R_OK): |
23 |
|
|
+ f = open("/etc/e-smith-release", "r") |
24 |
|
|
lines = f.readlines() |
25 |
|
|
f.close() |
26 |
|
|
for buf in lines: |
27 |
|
|
-- |
28 |
|
|
1.5.5.6 |
29 |
|
|
|