summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
diff options
context:
space:
mode:
authorStew Benedict <stewb@mandriva.org>2005-03-15 19:56:26 +0000
committerStew Benedict <stewb@mandriva.org>2005-03-15 19:56:26 +0000
commit6026ccf19a651838544a1fd6ecddf6310d00f6fb (patch)
treec7b35371f402e085b8dc0d0044f5c9be3dd3bc00 /perl-install/any.pm
parent80cc3f5b70913861c00475432ec9d1bab05ec2b0 (diff)
downloaddrakx-backup-do-not-use-6026ccf19a651838544a1fd6ecddf6310d00f6fb.tar
drakx-backup-do-not-use-6026ccf19a651838544a1fd6ecddf6310d00f6fb.tar.gz
drakx-backup-do-not-use-6026ccf19a651838544a1fd6ecddf6310d00f6fb.tar.bz2
drakx-backup-do-not-use-6026ccf19a651838544a1fd6ecddf6310d00f6fb.tar.xz
drakx-backup-do-not-use-6026ccf19a651838544a1fd6ecddf6310d00f6fb.zip
Install kernel-xbox on XBOX, bypass bootloader setup and eject call
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r--perl-install/any.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index 5bc15eb03..f39ab8f65 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -130,7 +130,7 @@ sub setupBootloader {
sub installBootloader {
my ($in, $b, $all_hds) = @_;
-
+ return if is_xbox();
install_acpi_pkgs($in->do_pkgs, $b);
eval { run_program::rooted($::prefix, 'echo | lilo -u') } if $::isInstall && !$::o->{isUpgrade} && -e "$::prefix/etc/lilo.conf" && glob("$::prefix/boot/boot.*");
@@ -252,6 +252,7 @@ sub setupBootloader__mbr_or_not {
sub setupBootloader__general {
my ($in, $b, $all_hds, $fstab, $security) = @_;
+ return if is_xbox();
my @method_choices = bootloader::method_choices($fstab);
my $prev_force_acpi = my $force_acpi = bootloader::get_append_with_key($b, 'acpi') !~ /off|ht/;
my $prev_force_noapic = my $force_noapic = bootloader::get_append_simple($b, 'noapic');