summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-06-23 21:59:35 +0000
committerMatt Wilson <msw@redhat.com>1999-06-23 21:59:35 +0000
commitd15d17b2cb0d6b9861b4a3d89a9ac55a1bc682de (patch)
treed1465ebd302c0b5fdf0c4e58231bc222b41aedf6 /text.py
parent925e1cc74e2871f47234d7494e823bcd29c60121 (diff)
downloadanaconda-d15d17b2cb0d6b9861b4a3d89a9ac55a1bc682de.tar.gz
anaconda-d15d17b2cb0d6b9861b4a3d89a9ac55a1bc682de.tar.xz
anaconda-d15d17b2cb0d6b9861b4a3d89a9ac55a1bc682de.zip
fixups
Diffstat (limited to 'text.py')
-rw-r--r--text.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/text.py b/text.py
index e47e02694..58e112ca7 100644
--- a/text.py
+++ b/text.py
@@ -1,6 +1,7 @@
from snack import *
import _balkan
import sys
+import isys
class WelcomeWindow:
def run(self, screen):
@@ -48,7 +49,9 @@ class PartitionWindow:
device = 'hda';
- table = _balkan.readTable('/dev/' + device)
+ isys.mkdevinode(device, '/tmp/' + device)
+
+ table = _balkan.readTable('/tmp/' + device)
partList = []
for i in range(0, len(table) - 1):
(type, start, size) = table[i]