From 0f8becb205a0b64ed5babf9b0b6ff9e534d9d4cc Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Mon, 9 Jan 2012 22:41:47 +0100 Subject: [PATCH] libtriple: load td-dvb-frontend.ko in init_td_api() Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/1e5b353de3047e380c792275499a3795e9e8073b Author: Stefan Seyfried Date: 2012-01-09 (Mon, 09 Jan 2012) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- libtriple/init_td.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libtriple/init_td.cpp b/libtriple/init_td.cpp index f3e15e0..7447dcf 100644 --- a/libtriple/init_td.cpp +++ b/libtriple/init_td.cpp @@ -5,6 +5,7 @@ #include #include #include +#include #include #include @@ -136,6 +137,8 @@ void init_td_api() perror("open /dev/stb/tdgfx"); fcntl(gfxfd, F_SETFD, FD_CLOEXEC); } + /* load the module which converts the TD tuner to a Linux-DVB frontend... */ + system("/sbin/modprobe td-dvb-frontend"); initialized = true; lt_info("%s end\n", __FUNCTION__); }