diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-08 09:18:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-08 09:18:49 +0000 |
commit | cd5c21904504356d192d3863a1b9118869400f7f (patch) | |
tree | c8cf2cd316a4d2caf3a8d6e14180cd7451f62ea2 /images/make_boot_img | |
parent | 02b39af06aae17ed20594aa8842a47edbb75eb93 (diff) | |
download | drakx-cd5c21904504356d192d3863a1b9118869400f7f.tar drakx-cd5c21904504356d192d3863a1b9118869400f7f.tar.gz drakx-cd5c21904504356d192d3863a1b9118869400f7f.tar.bz2 drakx-cd5c21904504356d192d3863a1b9118869400f7f.tar.xz drakx-cd5c21904504356d192d3863a1b9118869400f7f.zip |
- add modules.alias in /modules/<version> as required by stage2 with new libldetect
Diffstat (limited to 'images/make_boot_img')
-rwxr-xr-x | images/make_boot_img | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/images/make_boot_img b/images/make_boot_img index 1dab04546..ed56e0ec3 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -160,10 +160,14 @@ sub initrd { mkdir_p("$tmp_initrd/etc/pcmcia"); _ "cp -a /etc/pcmcia/config.opts $tmp_initrd/etc/pcmcia"; } - my ($ext) = $img =~ /rdz-(.*)/ or die "bad initrd name ($img)"; - my $modz = "all.kernels$I/$ext"; - __ "tar xC $tmp_initrd/modules -f $modz/${type}_modules.tar"; - _ "cp -f $modz/modules.dep modules.description $tmp_initrd/modules/"; + { + my ($ext) = $img =~ /rdz-(.*)/ or die "bad initrd name ($img)"; + my $modz = "all.kernels$I/$ext"; + mkdir_p("$tmp_initrd/modules/$ext"); + __ "tar xC $tmp_initrd/modules -f $modz/${type}_modules.tar"; + _ "cp -f $modz/modules.dep $modz/modules.alias modules.description $tmp_initrd/modules/$ext"; + symlink "$ext/$_", "$tmp_initrd/modules/$_" foreach qw(modules.dep modules.description); + } if ($ENV{DEBUGSTAGE1}) { _ "cp -f /usr/bin/busybox $tmp_initrd/sbin"; |