summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-01-22 00:15:50 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-01-22 00:15:50 +0000
commit1e438db0a3bba659e5c5e8aec5194ea3fc3233d9 (patch)
tree87831b0f55475469601a2b611d707d034dd3e600 /perl-install/install_any.pm
parentce4ab206f27055fc7459d04a5173efa132e7f43c (diff)
downloaddrakx-1e438db0a3bba659e5c5e8aec5194ea3fc3233d9.tar
drakx-1e438db0a3bba659e5c5e8aec5194ea3fc3233d9.tar.gz
drakx-1e438db0a3bba659e5c5e8aec5194ea3fc3233d9.tar.bz2
drakx-1e438db0a3bba659e5c5e8aec5194ea3fc3233d9.tar.xz
drakx-1e438db0a3bba659e5c5e8aec5194ea3fc3233d9.zip
- remove createBootdisk step
- add mkbootdisk option in setupBootloader__general() - move kernelVersion() from install_any to any
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r--perl-install/install_any.pm7
1 files changed, 0 insertions, 7 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index 52516eef1..af259f7dd 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -210,13 +210,6 @@ sub allowNVIDIA_rpms {
#-######################################################################################
#- Functions
#-######################################################################################
-sub kernelVersion {
- my ($o) = @_;
- my $kernel = readlink "$o->{prefix}/boot/vmlinuz" || first(all("$o->{prefix}/boot"));
- first($kernel =~ /vmlinuz-(.*)/);
-}
-
-
sub getNextStep {
my ($s) = $::o->{steps}{first};
$s = $::o->{steps}{$s}{next} while $::o->{steps}{$s}{done} || !$::o->{steps}{$s}{reachable};