summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-11-10 02:48:09 +0000
committerMatt Wilson <msw@redhat.com>1999-11-10 02:48:09 +0000
commitd6d4e92451e4330cfe67c1ea59867c97d4d54d31 (patch)
tree25cc6290432da62395252f8e1430f14873fb9f00 /iw
parent968d11fb9a72363cc31c4574258e92044828a910 (diff)
downloadanaconda-d6d4e92451e4330cfe67c1ea59867c97d4d54d31.tar.gz
anaconda-d6d4e92451e4330cfe67c1ea59867c97d4d54d31.tar.xz
anaconda-d6d4e92451e4330cfe67c1ea59867c97d4d54d31.zip
silo append setting, rpmmodule test case changes, gnome-map module CFLAGS change
Diffstat (limited to 'iw')
-rw-r--r--iw/silo.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/iw/silo.py b/iw/silo.py
index b7cf8d6a0..a4bc7246a 100644
--- a/iw/silo.py
+++ b/iw/silo.py
@@ -46,6 +46,7 @@ class SiloWindow (InstallWindow):
else:
self.todo.setLiloLocation ("partition")
+ self.todo.liloAppend = self.appendEntry.get_text()
self.todo.setLiloImages(self.images)
linuxAlias = 0
@@ -195,6 +196,8 @@ class SiloWindow (InstallWindow):
label = GtkLabel(_("Kernel parameters") + ":")
label.set_alignment(0.0, 0.5)
self.appendEntry = GtkEntry(15)
+ if self.todo.liloAppend:
+ self.appendEntry.set_text(self.todo.liloAppend)
box = GtkHBox(FALSE, 5)
box.pack_start(label)
box.pack_start(self.appendEntry)