[SM-Commit] GIT changes to devel-flux cauldron by Justin Boffemmyer (a2c583212b9afaad06cc43268c88fa4622bf7005)

Justin Boffemmyer scm at sourcemage.org
Mon Jan 14 00:44:03 EST 2008


GIT changes to devel-flux cauldron by Justin Boffemmyer <flux at shaolin.homelinux.org>:

 src/installers/common |    4 +++-
 1 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit a2c583212b9afaad06cc43268c88fa4622bf7005
Author: Justin Boffemmyer <flux at shaolin.homelinux.org>
Commit: Justin Boffemmyer <flux at shaolin.homelinux.org>

    installers/common: Fixed the depmod command
    
    The depmod command was set to install the depmod info (wrongly) to the
    /lib/modules/ dir on the ISO, instead of the target system. This has
    now been corrected to install onto (rightly) into /lib/modules under
    the target system.

diff --git a/src/installers/common b/src/installers/common
index 12be289..21eb2b5 100644
--- a/src/installers/common
+++ b/src/installers/common
@@ -27,7 +27,7 @@
 function cauldron_install_copy_kernel() {
 	cp ${ISO}/boot/linux ${TARGET_SYSTEM};
 	cp --parents -r ${ISO}/lib/modules/${LINUX_VER}/* ${TARGET_SYSTEM};
-	depmod -a -b ${ISO}/lib/modules/${LINUX_VER} ${LINUX_VER};
+	depmod -a -b ${TARGET_SYSTEM}/lib/modules/${LINUX_VER} ${LINUX_VER};
 }
 
 #---------------------------------------------------------------------
@@ -50,3 +50,5 @@ function cauldron_install_copy_kernel() {
 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 ##
 #---------------------------------------------------------------------
+
+# vim:ai:tw=80:tabstop=2:softtabstop=2:shiftwidth=2:expandtab



More information about the SM-Commit mailing list