summaryrefslogtreecommitdiffstats
path: root/booty/sparc.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-02-26 11:33:40 -0500
committerChris Lumens <clumens@redhat.com>2009-03-04 15:37:04 -0500
commitf00ec6b554eece6689e71c50ff0eb59ad2549b54 (patch)
treec84d11ac1ed8d9780aedc67d2aea0ba01be814f2 /booty/sparc.py
parent930cac9c0de1480543f25c411110d9f615e34693 (diff)
downloadanaconda-f00ec6b554eece6689e71c50ff0eb59ad2549b54.tar.gz
anaconda-f00ec6b554eece6689e71c50ff0eb59ad2549b54.tar.xz
anaconda-f00ec6b554eece6689e71c50ff0eb59ad2549b54.zip
Don't use rhpl.executil anymore.
Diffstat (limited to 'booty/sparc.py')
-rw-r--r--booty/sparc.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/booty/sparc.py b/booty/sparc.py
index 471caa060..a9cfaf83f 100644
--- a/booty/sparc.py
+++ b/booty/sparc.py
@@ -2,7 +2,6 @@ import os
from bootloaderInfo import *
import fsset
-import rhpl
class sparcBootloaderInfo(bootloaderInfo):
def writeSilo(self, instRoot, fsset, bl, kernelList,
@@ -94,11 +93,11 @@ class sparcBootloaderInfo(bootloaderInfo):
sbinargs += ["-U"]
if not flags.test:
- rhpl.executil.execWithRedirect(sbinargs[0],
- sbinargs,
- stdout = "/dev/tty5",
- stderr = "/dev/tty5",
- root = instRoot)
+ iutil.execWithRedirect(sbinargs[0],
+ sbinargs,
+ stdout = "/dev/tty5",
+ stderr = "/dev/tty5",
+ root = instRoot)
if (not os.access(instRoot + "/etc/silo.conf", os.R_OK) and
os.access(instRoot + "/boot/etc/silo.conf", os.R_OK)):