Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by David Brown (0eb63692063d7bb0b68e11f649f75131f25c33de)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: David Brown <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by David Brown (0eb63692063d7bb0b68e11f649f75131f25c33de)
  • Date: Sat, 17 Mar 2007 22:18:32 -0500

GIT changes to master grimoire by David Brown <dmlb2000 AT gmail.com>:

smgl/linux-initramfs/HISTORY | 6 ++++++
smgl/linux-initramfs/INSTALL | 4 +++-
smgl/linux-initramfs/mkinitrd | 2 +-
3 files changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 0eb63692063d7bb0b68e11f649f75131f25c33de
Author: David Brown <dmlb2000 AT gmail.com>
Commit: David Brown <dmlb2000 AT gmail.com>

linux-initramfs updated mkinitrd to use /etc/linux-initramfs/modules.lst
for modules instead of /etc/modules

diff --git a/smgl/linux-initramfs/HISTORY b/smgl/linux-initramfs/HISTORY
index 1cd9b5a..dc95029 100644
--- a/smgl/linux-initramfs/HISTORY
+++ b/smgl/linux-initramfs/HISTORY
@@ -1,4 +1,10 @@
2007-04-17 David Brown <dmlb2000 AT gmail.com>
+ * INSTALL: created /etc/linux-initramfs dir for configuration of
+ mkinitrd
+ * mkinitrd: use /etc/linux-initramfs/modules.lst instead of
/etc/modules
+ for modules to be included in the initrd
+
+2007-04-17 David Brown <dmlb2000 AT gmail.com>
* DEPENDS: added klibc dependency

2007-01-29 David Brown <dmlb2000 AT gmail.com>
diff --git a/smgl/linux-initramfs/INSTALL b/smgl/linux-initramfs/INSTALL
index 8dc1ac3..8b61812 100755
--- a/smgl/linux-initramfs/INSTALL
+++ b/smgl/linux-initramfs/INSTALL
@@ -12,4 +12,6 @@ do
fi
done &&
install -vm 755 -o root -g root ${SPELL_DIRECTORY}/mkinitrd
${INSTALL_ROOT}/sbin/ &&
-install -vm 755 -o root -g root ${SPELL_DIRECTORY}/installkernel
${INSTALL_ROOT}/sbin/
+install -vm 755 -o root -g root ${SPELL_DIRECTORY}/installkernel
${INSTALL_ROOT}/sbin/
+mkdir -p ${INSTALL_ROOT}/etc/linux-initramfs &&
+touch ${INSTALL_ROOT}/etc/linux-initramfs/modules.lst
diff --git a/smgl/linux-initramfs/mkinitrd b/smgl/linux-initramfs/mkinitrd
index 4eed1e0..a2743b5 100755
--- a/smgl/linux-initramfs/mkinitrd
+++ b/smgl/linux-initramfs/mkinitrd
@@ -575,7 +575,7 @@ function fill_root_driver()
{
local module
# there should be a better way to 'detect' what this is but...
- for module in `cat /etc/modules`
+ for module in `cat /etc/linux-initramfs/modules.lst`
do
if ! echo $MODULES | grep -q " $module"
then



  • [SM-Commit] GIT changes to master grimoire by David Brown (0eb63692063d7bb0b68e11f649f75131f25c33de), David Brown, 03/17/2007

Archive powered by MHonArc 2.6.24.

Top of Page