diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-19 18:56:42 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-19 18:56:42 +0000 |
commit | 470c7e90ef0f4a934462b150edfa1268e6f5e8f4 (patch) | |
tree | cf5a8fc5b9dc799c595d291a27eeed1532a3eac0 /perl-install/bootloader.pm | |
parent | 02881b57628d23d1f9e701e7f36a8a2bcbe95e30 (diff) | |
download | drakx-470c7e90ef0f4a934462b150edfa1268e6f5e8f4.tar drakx-470c7e90ef0f4a934462b150edfa1268e6f5e8f4.tar.gz drakx-470c7e90ef0f4a934462b150edfa1268e6f5e8f4.tar.bz2 drakx-470c7e90ef0f4a934462b150edfa1268e6f5e8f4.tar.xz drakx-470c7e90ef0f4a934462b150edfa1268e6f5e8f4.zip |
(read_pmon2000,read_uboot,read_cromwell) add a FIXME note since those
are fake stubs
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 3b7a1d348..bf870526a 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -409,6 +409,8 @@ sub read_silo() { $bootloader->{method} = 'silo'; $bootloader; } + +# FIXME: actually read back previous conf sub read_pmon2000() { +{ method => 'pmon2000' }; } @@ -418,6 +420,8 @@ sub read_uboot() { sub read_cromwell() { +{ method => 'cromwell' }; } + + sub read_yaboot() { my $bootloader = read_lilo_like("/etc/yaboot.conf", \&yaboot2file); $bootloader->{method} = 'yaboot'; |