From 3fd05a4013ba296d75ba06e61af6912ea5534340 Mon Sep 17 00:00:00 2001 From: freesource Date: Fri, 5 Oct 2001 06:36:23 +0000 Subject: [PATCH] This switches around append and Kernel Modules so that all the Kernel stuff is together in the ABS. It seems for now, that just looking in /lib/modules/kern-v is appropriate. --- gbootroot | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gbootroot b/gbootroot index fb23609..6a345f0 100755 --- a/gbootroot +++ b/gbootroot @@ -896,8 +896,8 @@ sub advanced_boot_section { #_______________________________________ # Kernel Module(s) - label_advanced("Kernel Module(s)",0,1,3,4,$table_advanced); - $ea3 = entry_advanced(1,3,3,4,11,$table_advanced); + label_advanced("Kernel Module(s)",0,1,4,5,$table_advanced); + $ea3 = entry_advanced(1,3,4,5,11,$table_advanced); $tooltips->set_tip( $ea3, "Add the modules found in" . " /lib/modules/kernel-version which are" . " necessary for the Boot Method to work" . @@ -909,8 +909,8 @@ sub advanced_boot_section { #_______________________________________ # Append Options - label_advanced("append =",0,1,4,5,$table_advanced); - $ea4 = entry_advanced(1,3,4,5,2,$table_advanced); + label_advanced("append =",0,1,3,4,$table_advanced); + $ea4 = entry_advanced(1,3,3,4,2,$table_advanced); my $append; (undef,undef,$append) = gdkbirdaao(); $tooltips->set_tip( $ea4, "Add append options to brlilo.conf.", ""); $ea4->set_text($append) if defined $append;