summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-06-23 22:36:58 +0000
committerMatt Wilson <msw@redhat.com>1999-06-23 22:36:58 +0000
commit8f5b86b5ba7263bd79372f6f15c05571367555de (patch)
treee9c45e29cf471f80cc658fc5a4a2bb3954426489 /gui.py
parente7c4d8ebb7c8a849078bf045d76ea0a9403cb064 (diff)
downloadanaconda-8f5b86b5ba7263bd79372f6f15c05571367555de.tar.gz
anaconda-8f5b86b5ba7263bd79372f6f15c05571367555de.tar.xz
anaconda-8f5b86b5ba7263bd79372f6f15c05571367555de.zip
Move away from using /dev/ for device nodes - use /tmp,
added path for terminfo stuff (though I think terminfo does this by default
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index f1189915e..5904a620d 100755
--- a/gui.py
+++ b/gui.py
@@ -2,6 +2,7 @@
from gtk import *
import GdkImlib
+import isys
import sys
import _balkan
import thread
@@ -89,7 +90,8 @@ class PartitionWindow:
numext2 = 0
try:
- table = _balkan.readTable('/dev/' + device)
+ isys.makeDevInode(device, '/tmp/' + device)
+ table = _balkan.readTable('/tmp/' + device)
if len(table) - 1 > 0:
partbox = GtkVBox (FALSE, 5)
for i in range(0, len(table) - 1):