2009-03-18 13:02:53 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2011-01-09 18:46:16 +01:00
|
|
|
################################################################################
|
|
|
|
|
# This file is part of OpenELEC - http://www.openelec.tv
|
|
|
|
|
# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
|
|
|
|
|
#
|
|
|
|
|
# This Program is free software; you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
# any later version.
|
|
|
|
|
#
|
|
|
|
|
# This Program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
|
|
|
|
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
# http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
################################################################################
|
|
|
|
|
|
2010-07-21 18:54:45 +02:00
|
|
|
. config/options $1
|
2009-03-18 13:02:53 +01:00
|
|
|
|
|
|
|
|
RAMFS_DRV_SUBSYSTEMS="ata ide scsi"
|
|
|
|
|
|
2009-05-16 23:35:27 +02:00
|
|
|
VER=`ls $PKG_BUILD/modules/lib/modules`
|
2009-03-18 13:02:53 +01:00
|
|
|
|
2009-11-16 04:25:08 +01:00
|
|
|
mkdir -p $INSTALL/lib/modules/$VER
|
|
|
|
|
cp -r $PKG_BUILD/modules/* $INSTALL
|
|
|
|
|
rm -f $INSTALL/lib/modules/$VER/modules.*
|
2009-03-18 13:02:53 +01:00
|
|
|
|
2010-11-29 09:12:34 +01:00
|
|
|
$ROOT/$TOOLCHAIN/sbin/depmod -b $INSTALL $VER > /dev/null
|
2009-11-16 04:25:08 +01:00
|
|
|
for i in `ls $INSTALL/lib/modules/*/modules.* | grep -v modules.dep | grep -v modules.alias | grep -v modules.symbols`; do
|
|
|
|
|
rm -f $i
|
|
|
|
|
done
|
2009-03-18 13:02:53 +01:00
|
|
|
|
2011-03-02 03:41:23 +01:00
|
|
|
# copy kernel firmwares (if present and requested)
|
|
|
|
|
mkdir -p $INSTALL/lib/firmware
|
|
|
|
|
[ -d $PKG_BUILD/modules/lib/firmware ] && \
|
|
|
|
|
cp -rf $PKG_BUILD/modules/lib/firmware/* $INSTALL/lib/firmware || true
|
2009-03-18 13:02:53 +01:00
|
|
|
|
2010-04-23 23:56:37 +02:00
|
|
|
mkdir -p $INSTALL/etc
|
|
|
|
|
cp $PKG_DIR/config/modules $INSTALL/etc
|
|
|
|
|
|
2009-11-16 04:25:08 +01:00
|
|
|
mkdir -p $INSTALL/etc/modprobe.d
|
2011-04-02 11:09:20 +02:00
|
|
|
cp $PKG_DIR/modprobe.d/*.conf $INSTALL/etc/modprobe.d
|
2011-05-20 10:54:50 -06:00
|
|
|
|