diff options
author | Arnaud Patard <rtp@mageia.org> | 2011-03-18 21:33:11 +0000 |
---|---|---|
committer | Arnaud Patard <rtp@mageia.org> | 2011-03-18 21:33:11 +0000 |
commit | 2bfae95a970f4c7284a2484fb967bbf9174c2cc6 (patch) | |
tree | 0ee61668e342609cc56f0755d5edd2277e66aef3 /perl-install/any.pm | |
parent | eea2f8ef9ddf7e461702d8fda0b8e98e623694c2 (diff) | |
download | drakx-2bfae95a970f4c7284a2484fb967bbf9174c2cc6.tar drakx-2bfae95a970f4c7284a2484fb967bbf9174c2cc6.tar.gz drakx-2bfae95a970f4c7284a2484fb967bbf9174c2cc6.tar.bz2 drakx-2bfae95a970f4c7284a2484fb967bbf9174c2cc6.tar.xz drakx-2bfae95a970f4c7284a2484fb967bbf9174c2cc6.zip |
- import stage1/drakxtools mips support
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index fb73df348..3f300de90 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -205,6 +205,7 @@ sub setupBootloaderBefore { quiet => $quiet); $bootloader->{keytable} ||= keyboard::keyboard2kmap($keyboard); + log::l("setupBootloaderBefore end"); } sub setupBootloader { @@ -239,6 +240,10 @@ sub setupBootloaderUntilInstalled { sub installBootloader { my ($in, $b, $all_hds) = @_; return if detect_devices::is_xbox(); + + if (arch() =~ /mips/) { + return 1; + } install_bootloader_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.*"); |