diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-22 00:15:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-22 00:15:50 +0000 |
commit | 1e438db0a3bba659e5c5e8aec5194ea3fc3233d9 (patch) | |
tree | 87831b0f55475469601a2b611d707d034dd3e600 /perl-install/install_any.pm | |
parent | ce4ab206f27055fc7459d04a5173efa132e7f43c (diff) | |
download | drakx-backup-do-not-use-1e438db0a3bba659e5c5e8aec5194ea3fc3233d9.tar drakx-backup-do-not-use-1e438db0a3bba659e5c5e8aec5194ea3fc3233d9.tar.gz drakx-backup-do-not-use-1e438db0a3bba659e5c5e8aec5194ea3fc3233d9.tar.bz2 drakx-backup-do-not-use-1e438db0a3bba659e5c5e8aec5194ea3fc3233d9.tar.xz drakx-backup-do-not-use-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.pm | 7 |
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}; |