--- anaconda-7.3/iw/bootloader_gui.py	Thu Feb 28 20:51:39 2002
+++ anaconda-7.3-f1/iw/bootloader_gui.py	Tue Jul 30 16:18:30 2002
@@ -345,8 +345,13 @@
         self.radioBox.attach(vbox, 0, 2, 5, 6)
         
         box = GtkVBox (FALSE, 0)
-
-        label = GtkLabel(_("Please select the boot loader that the computer will use.  GRUB is the default boot loader. "
+# CJS the 2.4.18-5 errata kernel breaks the installation of grub.  So I am
+# changing the default to be LILO
+# 
+#       label = GtkLabel(_("Please select the boot loader that the computer will use.  GRUB is the default boot loader. "
+#                          "However, if you do not wish to overwrite your current boot loader, "
+#                          "select \"Do not install a boot loader.\"  "))
+        label = GtkLabel(_("Please select the boot loader that the computer will use.  LILO is the default boot loader. "
                            "However, if you do not wish to overwrite your current boot loader, "
                            "select \"Do not install a boot loader.\"  "))
         label.set_usize(400, -1)
@@ -382,8 +387,11 @@
         self.radio_vbox = GtkVBox(FALSE, 2)
         self.radio_vbox.set_border_width(5)
         self.radio_vbox.pack_start(label, FALSE)
-        self.radio_vbox.pack_start(self.grub_radio, FALSE)
+# CJS just switched the order of these
+#       self.radio_vbox.pack_start(self.grub_radio, FALSE)
         self.radio_vbox.pack_start(self.lilo_radio, FALSE)
+        self.radio_vbox.pack_start(self.grub_radio, FALSE)
+# CJS end of switch
         self.radio_vbox.pack_start(self.none_radio, FALSE)
         
         box.pack_start(self.radio_vbox, FALSE)
@@ -483,12 +491,3 @@
         self.ignoreSignals = 0
 
         return box
-
-
-
-
-
-
-
-
-
