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
|
2012-02-29 13:11:22 +01:00
|
|
|
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
2011-01-09 18:46:16 +01:00
|
|
|
#
|
|
|
|
|
# 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
|
2012-02-29 13:11:22 +01:00
|
|
|
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
2011-01-09 18:46:16 +01:00
|
|
|
# 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
|
|
|
|
2011-03-02 03:41:23 +01:00
|
|
|
# copy kernel firmwares (if present and requested)
|
2012-01-25 23:48:36 +01:00
|
|
|
mkdir -p $INSTALL/lib/firmware
|
2011-03-02 03:41:23 +01:00
|
|
|
[ -d $PKG_BUILD/modules/lib/firmware ] && \
|
2012-01-25 23:48:36 +01:00
|
|
|
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
|
|
|
|
2011-09-01 09:35:22 +02:00
|
|
|
mkdir -p $INSTALL/usr/lib
|
|
|
|
|
cp -P $PKG_BUILD/tools/power/cpupower/libcpupower.so* $INSTALL/usr/lib
|
|
|
|
|
|
|
|
|
|
mkdir -p $INSTALL/usr/bin
|
|
|
|
|
cp -P $PKG_BUILD/tools/power/cpupower/cpupower $INSTALL/usr/bin
|
2013-03-05 14:05:38 +01:00
|
|
|
|
|
|
|
|
if [ "$DEVTOOLS" = "yes" ]; then
|
|
|
|
|
mkdir -p $INSTALL/usr/bin
|
|
|
|
|
cp -P $PKG_BUILD/tools/perf/perf $INSTALL/usr/bin/
|
|
|
|
|
|
|
|
|
|
mkdir -p $INSTALL/usr/libexec/perf-core/scripts/python/
|
|
|
|
|
cp -P $PKG_BUILD/tools/perf/perf-archive $INSTALL/usr/libexec/perf-core/
|
|
|
|
|
cp -rP $PKG_BUILD/tools/perf/scripts/python/* $INSTALL/usr/libexec/perf-core/scripts/python/
|
|
|
|
|
fi
|