diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-12 13:08:15 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-12 13:08:15 +0000 |
commit | 4198931416edb98bae7a822b2490ffb99c6ff20f (patch) | |
tree | 6a71ee7a42afe7021e36dc66c64be136ac23004a /make_boot_img | |
parent | e8a6ab3527cbb5a666fd830518cf4343aaf52f34 (diff) | |
download | drakx-4198931416edb98bae7a822b2490ffb99c6ff20f.tar drakx-4198931416edb98bae7a822b2490ffb99c6ff20f.tar.gz drakx-4198931416edb98bae7a822b2490ffb99c6ff20f.tar.bz2 drakx-4198931416edb98bae7a822b2490ffb99c6ff20f.tar.xz drakx-4198931416edb98bae7a822b2490ffb99c6ff20f.zip |
use all.rdz instead of network.rdz in tftp (network.rdz is deprecated)
Diffstat (limited to 'make_boot_img')
-rwxr-xr-x | make_boot_img | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make_boot_img b/make_boot_img index 7edbc7e0f..2feb98d32 100755 --- a/make_boot_img +++ b/make_boot_img @@ -93,7 +93,7 @@ if ($arch =~ /i.86/ && $img =~ /all/) { if (my ($tftpboot) = grep { -e $_ } qw(/tftpboot /var/lib/tftpboot)) { system("/bin/cp -f kernel/all.kernels/$main/boot/vmlinu* $tftpboot/vmlinuz 2>/dev/null"); - system("/bin/cp -f images/network.rdz-$main $tftpboot/network.rdz 2>/dev/null"); + system("/bin/cp -f images/all.rdz-$main $tftpboot/all.rdz 2>/dev/null"); } sub install_stripped { _ "strip $_[0]"; _ "$sudo install $_[0] $_[1]" } |