summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-05 14:28:18 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-05 14:28:18 +0000
commit2ce6d33cc058eb97820d49b021ac5a4712723885 (patch)
treea930890a7969e964fda9b4f7bdaccd47a2a39139 /perl-install
parent0b9883ab677faa9b58c79512c4dae7b417b21318 (diff)
downloaddrakx-backup-do-not-use-2ce6d33cc058eb97820d49b021ac5a4712723885.tar
drakx-backup-do-not-use-2ce6d33cc058eb97820d49b021ac5a4712723885.tar.gz
drakx-backup-do-not-use-2ce6d33cc058eb97820d49b021ac5a4712723885.tar.bz2
drakx-backup-do-not-use-2ce6d33cc058eb97820d49b021ac5a4712723885.tar.xz
drakx-backup-do-not-use-2ce6d33cc058eb97820d49b021ac5a4712723885.zip
split drakboot into bootloader and autologin configuration
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/drakboot19
1 files changed, 1 insertions, 18 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot
index efc007cd7..42680d7d1 100755
--- a/perl-install/standalone/drakboot
+++ b/perl-install/standalone/drakboot
@@ -41,7 +41,7 @@ my $splash_working = 0;
my $in = 'interactive'->vnew('su');
-if (!$in->isa('interactive::gtk')) {
+if (!$in->isa('interactive::gtk') || any { /^--boot$/ } @ARGV) {
lilo_choice();
$in->exit(0);
}
@@ -236,16 +236,6 @@ my $x_box;
gtkadd($window,
gtkpack_(new Gtk2::VBox(0,0),
- 0, gtkadd(new Gtk2::Frame($disp_mode),
- # gtkpack__(new Gtk2::VBox(0,0),
- (gtkpack_(gtkset_border_width(new Gtk2::HBox(0, 0),5),
- 1, my $boot_label = Gtk2::WrappedLabel->new(""),
- 0, gtksignal_connect(new Gtk2::Button(N("Configure")), clicked => \&lilo_choice),
- )),
- # "" #we need some place under the button -- replaced by gtkset_border_width( for the moment
- # )
-
- ),
#Splash Selector
if_($splash_working,
0, gtkadd(my $thm_frame = new Gtk2::Frame(N("Splash selection")),
@@ -317,17 +307,11 @@ $auto_box->set_sensitive($auto_mode->{autologin} ? 1 : 0);
$window->show_all;
#$no_bootsplash and $thm_frame->set_sensitive(0);
$thm_frame->hide if !$splash_working;
-update_bootloader_label($lilogrub);
gtkflush();
$w->main;
$in->exit(0);
-sub update_bootloader_label {
- my ($bootloader) = @_;
- $boot_label->set_label(N("You are currently using %s as your boot manager.
-Click on Configure to launch the setup wizard.", $bootloader));
-}
sub lilo_choice() {
my $bootloader = bootloader::read();
@@ -346,7 +330,6 @@ sub lilo_choice() {
[ N("Installation of %s failed. The following error occured:", $loader), $err ]);
goto ask;
}
- eval { update_bootloader_label(bootloader::detect_bootloader()) };
}