#! /bin/bash
# $Id$
# $URL$
rm -f smoketest.log lcd4linux
make distclean
./bootstrap
for driver in BeckmannEgle BWCT CrystalFontz Curses Cwlinux D4D EA232graphic G15 HD44780 IRLCD LCD2USB LCDLinux LCDTerm LEDMatrix LPH7508 LUIse M50530 MatrixOrbital MilfordInstruments Noritake NULL Pertelian picoLCD picoLCDGraphic PNG PPM RouterBoard Sample serdisplib SimpleLCD T6963 Trefon ULA200 USBHUB USBLCD WincorNixdorf X11; do
make distclean
./configure --with-drivers=$driver
make -j 2
if [ -x lcd4linux ]; then
echo "Success: $driver" >>smoketest.log
else
echo "FAILED: $driver" >>smoketest.log
fi
done
make distclean
./configure
nux-dvb-apps.git
blob: 190a4c443ddca9d8bc3ab491d5795a41e2562f05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
linuxtv-dvb-apps-1.1.0
======================
Linux DVB API test/demo applications and utilities.
You find a README in each subdirectory explaining what the code there does.
For beginners utils/szap/ and utils/scan/ are probably most useful.
For convenience, dvb-apps contains a copy of the DVB API include
files as they are contained in the linuxtv-dvb-1.1.0 realease
and the 2.6.x Linux kernel. However, since the DVB API hasn't changed,
the apps will still work with the old "DVB" drivers, should you decide not
to use linuxtv-dvb-1.1.0 (or the dvb-kernel CVS).
Historical note:
The apps have been copied from the "DVB" CVS tree, which means that
the stuff in "DVB" is now unmaintained and out of date.
Johannes Stezenbach <js@convergence.de>
|