linux-tbs-drivers: update to linux-tbs-drivers-130429

this is a dirty workaround, because it seems like tbs can't do it right. again

in linux tbs driver changelog I see:

2. XXXXXX Linux Driver is updated to v130429, which has below updating
* Further improve Linux kernel 3.9.x compatibility.

which is, in fact, not true, after quick diff I realized
that they changed exactly nothing.

next time tbs should do their job, instead of announcing support for 'kernel xxx'
why would we support this driver in the future ? it's not our job to fix broken drivers now and then.
This commit is contained in:
Stefan Saraev 2013-05-03 13:33:37 +03:00
parent a7c8a61722
commit 777cbc76b1
2 changed files with 9 additions and 3 deletions

View File

@ -30,7 +30,13 @@ cd $BUILD/${PKG_NAME}-${PKG_VERSION}/linux-tbs-drivers
LDFLAGS="" make DIR=$(kernel_path) prepare
sed -i -e "s|^CONFIG_IR_LIRC_CODEC=.*$|# CONFIG_IR_LIRC_CODEC is not set|" v4l/.config
# linux 3.9 temp build fix
sed -i -e "s|^CONFIG_VIDEO_PVRUSB2=.*$|# CONFIG_VIDEO_PVRUSB2 is not set|" v4l/.config
find . -iname *.c | xargs sed -i -e "s|__devinit||"
find . -iname *.h | xargs sed -i -e "s|__devinit||"
find . -iname *.c | xargs sed -i -e "s|__devexit||"
find . -iname *.h | xargs sed -i -e "s|__devexit||"
for cfg in CONFIG_VIDEO_SH_MOBILE_CEU ; do
sed -i -e "s|^$cfg=.*$|# $cfg is not set|" v4l/.config
done
LDFLAGS="" make DIR=$(kernel_path)

View File

@ -19,7 +19,7 @@
################################################################################
PKG_NAME="linux-tbs-drivers"
PKG_VERSION="130318"
PKG_VERSION="130429"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"