--- anaconda-7.3/textw/bootloader_text.py Wed Mar 13 16:24:47 2002 +++ anaconda-7.3-f1/textw/bootloader_text.py Tue Jul 30 16:14:30 2002 @@ -50,8 +50,13 @@ grid = GridFormHelp(screen, _("Boot Loader Configuration"), "btloadinstall", 1, 5) grid.add(t, 0, 0, (0,0,0,1)) - grid.add(grub, 0, 1, (0,0,0,0)) - grid.add(lilo, 0, 2, (0,0,0,0)) +#CJS We like LILO better, so this makes it the default +# grid.add(grub, 0, 1, (0,0,0,0)) +# grid.add(lilo, 0, 2, (0,0,0,0)) + grid.add(lilo, 0, 1, (0,0,0,0)) +#CJS by moving the grub line after the lilo line + grid.add(grub, 0, 2, (0,0,0,0)) +#CJS end of change grid.add(skipbl, 0, 3, (0,0,0,1)) grid.add(buttons, 0, 4, growx = 1)