|
|
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
|
|
#
|
|
|
|
# Filename: package/.../modutils/modutils.conf
|
|
|
|
# Copyright (C) 2008 The OpenSDE Project
|
|
|
|
# Copyright (C) 2004 - 2006 The T2 SDE Project
|
|
|
|
# Copyright (C) 1998 - 2003 Clifford Wolf
|
|
|
|
#
|
|
|
|
# More information can be found in the files COPYING and README.
|
|
|
|
#
|
|
|
|
# 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; version 2 of the License. A copy of the
|
|
|
|
# GNU General Public License can be found in the file COPYING.
|
|
|
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
|
|
|
|
|
|
modutils_pm() {
|
|
|
|
cp -vf $confdir/modules.conf.data $root/etc/modules.conf
|
|
|
|
mv -fv $root/sbin/lsmod$postfix $root/bin/
|
|
|
|
if [ -h $root/bin/lsmod$postfix ] ; then
|
|
|
|
# correct the symlink destination
|
|
|
|
rm $root/bin/lsmod$postfix
|
|
|
|
ln -sfv ../sbin/modprobe$postfix $root/bin/lsmod$postfix
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
hook_add postmake 5 "modutils_pm"
|
|
|
|
|
|
|
|
var_append confopt " " "--sbindir=/sbin"
|
|
|
|
var_append CFLAGS " " "-I$root/usr/src/linux/include"
|
|
|
|
var_remove GCC_WRAPPER_APPEND " " "-s"
|
|
|
|
|
|
|
|
postfix=
|
|
|
|
|
|
|
|
if pkginstalled module-init-tools ; then
|
|
|
|
var_append patchfiles " " $confdir/use_old_postfix.diff
|
|
|
|
# we need to break the flist-del variable name so Check-PkgFormat
|
|
|
|
# doesn't think that we would add something to the variable ...
|
|
|
|
var_remove flist''del '|' ".*\\.old"
|
|
|
|
hook_add postinstall 5 "ln -sfv genksyms.old $root/sbin/genksyms"
|
|
|
|
postfix=".old"
|
|
|
|
fi
|
|
|
|
|
|
|
|
var_append makeinstopt " " "STRIP="
|
|
|
|
|