diff options
author | Stew Benedict <stewb@mandriva.org> | 2001-03-23 15:58:57 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2001-03-23 15:58:57 +0000 |
commit | 12f60f7718cd07ff5fa550da97b14c9a84f259df (patch) | |
tree | ecfc52e57b25a945a0f8c657de22092a4ec2fd93 /perl-install/bootloader.pm | |
parent | ac30b4c6f5f2de8dbe4f72e58314d5042de9f719 (diff) | |
download | drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.gz drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.bz2 drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.xz drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.zip |
mods to create/move image, to /export for PPC, use vmlinux for PPC
prepend of_dev to initrd stanza in yaboot.conf
add 1-button mouse for PPC
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index eb0165df9..b2b91278e 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -491,7 +491,7 @@ sub install_yaboot($$$) { print F "$_->{type}=$of_dev,$_->{kernel_or_dev}"; print F "\tlabel=", substr($_->{label}, 0, 15); #- lilo doesn't handle more than 15 char long labels print F "\troot=$_->{root}"; - print F "\tinitrd=$_->{initrd}" if $_->{initrd}; + print F "\tinitrd=$of_dev,$_->{initrd}" if $_->{initrd}; print F "\tappend=\"$_->{append}\"" if $_->{append}; print F "\tread-write" if $_->{'read-write'}; print F "\tread-only" if !$_->{'read-write'}; |