1 |
From 8c598f5ce24233e02330959f34194ea9fb46e769 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 1e518fc..16b0728 100644 |
12 |
--- a/bootloaderInfo.py |
13 |
+++ b/bootloaderInfo.py |
14 |
@@ -2085,9 +2085,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 |
|