summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--images/NEWS2
-rwxr-xr-ximages/make_boot_img2
2 files changed, 4 insertions, 0 deletions
diff --git a/images/NEWS b/images/NEWS
index 99bd44eb1..ab2d650ba 100644
--- a/images/NEWS
+++ b/images/NEWS
@@ -1,3 +1,5 @@
+- add modules.order and modules.builtin in initrd
+
Version 1.74 - 5 April 2012 by Thierry Vignaud
- include "fuse" module (mga#5685)
diff --git a/images/make_boot_img b/images/make_boot_img
index 935d44e1e..a31a01b6f 100755
--- a/images/make_boot_img
+++ b/images/make_boot_img
@@ -202,6 +202,8 @@ fi
my $modz = "all.kernels$I/$ext";
mkdir_p("$tmp_initrd/modules/$ext");
__ "tar xC $tmp_initrd/modules/$ext -f $modz/${type}_modules.tar";
+ _ "cp -f $modz/modules.$_ $tmp_initrd/modules/$ext" foreach qw(order builtin);
+ substInFile { s,.*/,, } "$tmp_initrd/modules/$ext/modules.order";
_ "depmod -b $tmp_initrd $ext";
# depmod keeps only available modules in modules.alias, but we want them all
_ "cp -f $modz/modules.alias $modz/modules.description $tmp_initrd/modules/$ext";