summaryrefslogtreecommitdiffstats
path: root/text.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 /text.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 'text.py')
-rw-r--r--text.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/text.py b/text.py
index a4bfef6b5..c35d795ec 100644
--- a/text.py
+++ b/text.py
@@ -56,7 +56,7 @@ class PartitionWindow:
for i in range(0, len(table) - 1):
(type, start, size) = table[i]
if (type == 0x83 and size):
- fullName = '/dev/%s%d' % (device, i + 1)
+ fullName = '%s%d' % (device, i + 1)
partList.append((fullName, fullName))
rc = ListboxChoiceWindow(screen, 'Root Partition',
@@ -120,7 +120,7 @@ class InstallInterface:
dir = 1
step = step + dir
- todo.liloLocation("/dev/hda")
+ todo.liloLocation("hda")
def killSelf(screen):
print "HERE"