system/tp_smapi: Removed (unmaintained)

Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-October/006576.html

Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Robby Workman 2011-03-14 17:26:53 -05:00
parent 402209d1bb
commit 05735a5fda
7 changed files with 0 additions and 173 deletions

View File

@ -1,25 +0,0 @@
tp_smapi (SMAPI BIOS access for ThinkPad Laptops)
ThinkPad laptops include a proprietary interface called SMAPI BIOS
(System Management Application Program Interface) which provides some
hardware control functionality that is not accessible by other means.
##############################################################################
##############################################################################
WARNING:
This driver uses undocumented features and direct hardware access.
It thus cannot be guaranteed to work, and may cause arbitrary damage
(especially on models it wasn't tested on).
##############################################################################
##############################################################################
To get a package for other kernel release, execute this SlackBuild as:
# KERNEL_VERS='2.6.31' ./tp_smapi.SlackBuild
By default its going to be built for the output from $(uname -r)
Finally, its highly recommended to read these sections in www.thinkwiki.org
http://www.thinkwiki.org/wiki/Tp_smapi
http://www.thinkwiki.org/wiki/Talk:Tp_smapi

View File

@ -1,4 +0,0 @@
# Re-generate modules.dep and map files.
if [ -x sbin/depmod ]; then
chroot . /sbin/depmod -a @KERNEL@ 1> /dev/null 2> /dev/null
fi

View File

@ -1,3 +0,0 @@
# Force loading of the thinkpad_ec module in case it refuses to do so because
# of reserved ports - this might happen on some newer Thinkpad laptops
options thinkpad_ec force_io=1

View File

@ -1,2 +0,0 @@
# Make sure that tp_smapi is always loaded before the hdaps module
install hdaps /sbin/modprobe -i tp_smapi ; /sbin/modprobe -i hdaps

View File

@ -1,19 +0,0 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
tp_smapi: tp_smapi (SMAPI BIOS access for ThinkPad Laptops)
tp_smapi:
tp_smapi: ThinkPad laptops include a proprietary interface called SMAPI BIOS
tp_smapi: (System Management Application Program Interface) which provides some
tp_smapi: hardware control functionality that is not accessible by other means.
tp_smapi:
tp_smapi: WARNING:
tp_smapi: This driver uses undocumented features and direct hardware access.
tp_smapi: It thus cannot be guaranteed to work, and may cause arbitrary damage
tp_smapi: (especially on models it wasn't tested on).
tp_smapi:

View File

@ -1,110 +0,0 @@
#!/bin/sh
# Slackware build script for tp_smapi
# Copyright (c) 2008-2009, Antonio Hernández Blas <hba.nihilismus@gmail.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1.- Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=tp_smapi
VERSION=0.40
BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
KERNEL_VERS=${KERNEL_VERS:-"$(uname -r)"}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar -xvf $CWD/$PRGNAM-$VERSION.tgz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
make HDAPS=1 KVER=$KERNEL_VERS
mkdir -p $PKG/lib/modules/${KERNEL_VERS}/extra
install -m 0664 hdaps.ko \
$PKG/lib/modules/${KERNEL_VERS}/extra/
mkdir -p $PKG/lib/modules/${KERNEL_VERS}/kernel/drivers/firmware
install -m 0664 thinkpad_ec.ko tp_smapi.ko \
$PKG/lib/modules/${KERNEL_VERS}/kernel/drivers/firmware
# Make sure the tp_smapi module is loaded before the hdaps module
# Make sure the thinkpad_ec module will load
# We're not going to install these with a .new extension, because we don't
# want them to be present if the package is removed.
mkdir -p $PKG/etc/modprobe.d
cat $CWD/modprobe.tp_smapi.conf > $PKG/etc/modprobe.d/tp_smapi.conf
cat $CWD/modprobe.thinkpad_ec.conf > $PKG/etc/modprobe.d/thinkpad_ec.conf
# Make hdaps kernel module from this package be prefered over hdaps in kernel-module package.
mkdir -p $PKG/etc/depmod.d
echo "override hdaps ${KERNEL_VERS} extra" > $PKG/etc/depmod.d/hdaps.conf
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a CHANGES README TODO $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
sed "s%@KERNEL@%$KERNEL_VERS%" $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION\_$(echo ${KERNEL_VERS} | tr '-' '_')-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View File

@ -1,10 +0,0 @@
PRGNAM="tp_smapi"
VERSION="0.40"
HOMEPAGE="http://tpctl.sourceforge.net"
DOWNLOAD="http://downloads.sourceforge.net/tpctl/tp_smapi-0.40.tgz"
MD5SUM="f4eb8bb4d4413a5ae65aa7d77f4112c0"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Antonio Hernández Blas"
EMAIL="hba.nihilismus@gmail.com"
APPROVED="rworkman"