blob: 54f8f15db782865c7b08bd5034212e5c6c6885be [file] [log] [blame]
Uwe Hermann826938d2011-12-30 10:42:39 +01001##
2## This file is part of the sigrok project.
3##
Bert Vermeulenc73d2ea2012-02-13 14:31:51 +01004## Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
Uwe Hermann826938d2011-12-30 10:42:39 +01005##
6## This program is free software: you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation, either version 3 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program. If not, see <http://www.gnu.org/licenses/>.
18##
19
Uwe Hermannef7228b2012-01-28 21:26:56 +010020# We require at least autoconf 2.63 (AC_INIT format changed there).
21AC_PREREQ([2.63])
Uwe Hermann826938d2011-12-30 10:42:39 +010022
Uwe Hermann3af71f02012-01-04 00:05:43 +010023# libsigrok package version number (NOT the same as shared lib version!).
Uwe Hermann6dddd902012-03-31 11:28:24 +020024m4_define([sr_package_version_major], [0])
Uwe Hermann63298402012-06-01 00:16:42 +020025m4_define([sr_package_version_minor], [2])
26m4_define([sr_package_version_micro], [0])
Uwe Hermann6dddd902012-03-31 11:28:24 +020027m4_define([sr_package_version], [sr_package_version_major.sr_package_version_minor.sr_package_version_micro])
Uwe Hermann826938d2011-12-30 10:42:39 +010028
Uwe Hermann6dddd902012-03-31 11:28:24 +020029AC_INIT([libsigrok], [sr_package_version], [sigrok-devel@lists.sourceforge.net],
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +010030 [libsigrok], [http://www.sigrok.org])
Uwe Hermann826938d2011-12-30 10:42:39 +010031AC_CONFIG_HEADER([config.h])
Uwe Hermannd8521c92012-01-03 21:55:48 +010032AC_CONFIG_MACRO_DIR([autostuff])
33AC_CONFIG_AUX_DIR([autostuff])
Uwe Hermann826938d2011-12-30 10:42:39 +010034
Uwe Hermannef7228b2012-01-28 21:26:56 +010035# We require at least automake 1.11 (needed for 'silent rules').
36AM_INIT_AUTOMAKE([1.11 -Wall -Werror foreign std-options])
Uwe Hermann826938d2011-12-30 10:42:39 +010037m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
Pekka Nikander432e5e92012-05-11 19:23:21 +030038m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
Uwe Hermann826938d2011-12-30 10:42:39 +010039
Uwe Hermann6dddd902012-03-31 11:28:24 +020040AH_TOP([#ifndef SR_CONFIG_H
41#define SR_CONFIG_H /* To stop multiple inclusions. */])
42AH_BOTTOM([#endif /* SR_CONFIG_H */])
Uwe Hermann826938d2011-12-30 10:42:39 +010043
Uwe Hermann1a081ca2012-02-01 23:40:35 +010044# Enable more compiler warnings via -Wall and -Wextra. Add -fvisibility=hidden
45# and enforce use of SR_API to explicitly mark all public API functions.
46CFLAGS="-g -Wall -Wextra -fvisibility=hidden"
Uwe Hermann826938d2011-12-30 10:42:39 +010047
48# Checks for programs.
49AC_PROG_CXX
50AC_PROG_CC
51AC_PROG_CPP
52AC_PROG_INSTALL
53AC_PROG_LN_S
54
55# Initialize libtool.
56LT_INIT
57
58# Initialize pkg-config.
59# We require at least 0.22, as "Requires.private" behaviour changed there.
60PKG_PROG_PKG_CONFIG([0.22])
61
Uwe Hermann3af71f02012-01-04 00:05:43 +010062# Library version for libsigrok (NOT the same as the package version).
Uwe Hermann826938d2011-12-30 10:42:39 +010063# Carefully read the libtool docs before updating these numbers!
64# The algorithm for determining which number to change (and how) is nontrivial!
65# http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
Uwe Hermann63298402012-06-01 00:16:42 +020066SR_LIB_VERSION_CURRENT=1
Uwe Hermann6dddd902012-03-31 11:28:24 +020067SR_LIB_VERSION_REVISION=0
68SR_LIB_VERSION_AGE=0
69SR_LIB_VERSION="$SR_LIB_VERSION_CURRENT:$SR_LIB_VERSION_REVISION:$SR_LIB_VERSION_AGE"
70SR_LIB_LDFLAGS="-version-info $SR_LIB_VERSION"
71AC_SUBST(SR_LIB_VERSION_CURRENT)
72AC_SUBST(SR_LIB_VERSION_REVISION)
73AC_SUBST(SR_LIB_VERSION_AGE)
74AC_SUBST(SR_LIB_VERSION)
75AC_SUBST(SR_LIB_LDFLAGS)
Uwe Hermann826938d2011-12-30 10:42:39 +010076
Uwe Hermann826938d2011-12-30 10:42:39 +010077# Logic analyzer hardware support '--enable' options.
78
Bert Vermeulen6ac0db12012-09-02 11:58:29 +020079# Disabled by default
80AC_ARG_ENABLE(agilent-dmm, AC_HELP_STRING([--enable-agilent-dmm],
81 [enable Agilent DMM driver support [default=no]]),
82 [HW_AGILENT_DMM="$enableval"],
83 [HW_AGILENT_DMM=xno])
84AM_CONDITIONAL(HW_AGILENT_DMM, test x$HW_AGILENT_DMM = xyes)
85if test "x$HW_AGILENT_DMM" = "xyes"; then
86 AC_DEFINE(HAVE_HW_AGILENT_DMM, 1, [Agilent DMM driver support])
87fi
88
Uwe Hermann826938d2011-12-30 10:42:39 +010089# Disabled by default, unfinished.
90AC_ARG_ENABLE(alsa, AC_HELP_STRING([--enable-alsa],
91 [enable ALSA driver support [default=no]]),
92 [LA_ALSA="$enableval"],
93 [LA_ALSA=no])
94AM_CONDITIONAL(LA_ALSA, test x$LA_ALSA = xyes)
95if test "x$LA_ALSA" = "xyes"; then
96 AC_DEFINE(HAVE_LA_ALSA, 1, [ALSA driver support])
97fi
98
99AC_ARG_ENABLE(asix-sigma, AC_HELP_STRING([--enable-asix-sigma],
Uwe Hermann6352d032012-05-02 19:02:03 +0200100 [enable ASIX SIGMA/SIGMA2 support [default=yes]]),
Uwe Hermann826938d2011-12-30 10:42:39 +0100101 [LA_ASIX_SIGMA="$enableval"],
102 [LA_ASIX_SIGMA=yes])
103AM_CONDITIONAL(LA_ASIX_SIGMA, test x$LA_ASIX_SIGMA = xyes)
104if test "x$LA_ASIX_SIGMA" = "xyes"; then
Uwe Hermann6352d032012-05-02 19:02:03 +0200105 AC_DEFINE(HAVE_LA_ASIX_SIGMA, 1, [ASIX SIGMA/SIGMA2 support])
Uwe Hermann826938d2011-12-30 10:42:39 +0100106fi
107
108AC_ARG_ENABLE(chronovu-la8, AC_HELP_STRING([--enable-chronovu-la8],
109 [enable ChronoVu LA8 support [default=yes]]),
110 [LA_CHRONOVU_LA8="$enableval"],
111 [LA_CHRONOVU_LA8=yes])
112AM_CONDITIONAL(LA_CHRONOVU_LA8, test x$LA_CHRONOVU_LA8 = xyes)
113if test "x$LA_CHRONOVU_LA8" = "xyes"; then
114 AC_DEFINE(HAVE_LA_CHRONOVU_LA8, 1, [ChronoVu LA8 support])
115fi
116
Joel Holdsworthf302a082012-02-11 12:08:49 +0000117AC_ARG_ENABLE(fx2lafw, AC_HELP_STRING([--enable-fx2lafw],
Bert Vermeulen5d4fb4f2012-07-01 15:29:57 +0200118 [enable fx2lafw support (for FX2 LAs). [default=yes]]),
Joel Holdsworthf302a082012-02-11 12:08:49 +0000119 [LA_FX2LAFW="$enableval"],
Joel Holdsworthd56ee262012-04-18 19:10:15 +0100120 [LA_FX2LAFW=yes])
Joel Holdsworthf302a082012-02-11 12:08:49 +0000121AM_CONDITIONAL(LA_FX2LAFW, test x$LA_FX2LAFW = xyes)
122if test "x$LA_FX2LAFW" = "xyes"; then
123 AC_DEFINE(HAVE_LA_FX2LAFW, 1, [fx2lafw support])
124fi
125
Bert Vermeulenca3d84c2012-07-01 22:37:15 +0200126# Disabled by default for now
127AC_ARG_ENABLE(genericdmm, AC_HELP_STRING([--enable-genericdmm],
128 [enable genericdmm support (for most DMMs). [default=no]]),
129 [HW_GENERICDMM="$enableval"],
130 [HW_GENERICDMM=no])
131AM_CONDITIONAL(HW_GENERICDMM, test x$HW_GENERICDMM = xyes)
132if test "x$HW_GENERICDMM" = "xyes"; then
133 AC_DEFINE(HAVE_HW_GENERICDMM, 1, [Generic DMM support])
134fi
135
Uwe Hermann826938d2011-12-30 10:42:39 +0100136AC_ARG_ENABLE(demo, AC_HELP_STRING([--enable-demo],
137 [enable demo driver support [default=yes]]),
138 [LA_DEMO="$enableval"],
139 [LA_DEMO=yes])
140AM_CONDITIONAL(LA_DEMO, test x$LA_DEMO = xyes)
141if test "x$LA_DEMO" = "xyes"; then
142 AC_DEFINE(HAVE_LA_DEMO, 1, [Demo driver support])
143fi
144
145# Disabled by default, unfinished.
146AC_ARG_ENABLE(link-mso19, AC_HELP_STRING([--enable-link-mso19],
147 [enable Link Instruments MSO-19 support [default=no]]),
148 [LA_LINK_MSO19="$enableval"],
149 [LA_LINK_MSO19=no])
150AM_CONDITIONAL(LA_LINK_MSO19, test x$LA_LINK_MSO19 = xyes)
151if test "x$LA_LINK_MSO19" = "xyes"; then
152 AC_DEFINE(HAVE_LA_LINK_MSO19, 1, [Link Instruments MSO-19 support])
153fi
154
155AC_ARG_ENABLE(ols, AC_HELP_STRING([--enable-ols],
156 [enable OpenBench Logic Sniffer (OLS) support [default=yes]]),
157 [LA_OLS="$enableval"],
158 [LA_OLS=yes])
159AM_CONDITIONAL(LA_OLS, test x$LA_OLS = xyes)
160if test "x$LA_OLS" = "xyes"; then
161 AC_DEFINE(HAVE_LA_OLS, 1, [OpenBench Logic Sniffer (OLS) support])
162fi
163
Uwe Hermann826938d2011-12-30 10:42:39 +0100164AC_ARG_ENABLE(zeroplus-logic-cube,
165 AC_HELP_STRING([--enable-zeroplus-logic-cube],
Uwe Hermann8fdecce2012-05-30 22:55:03 +0200166 [enable ZEROPLUS Logic Cube support [default=yes]]),
Uwe Hermann826938d2011-12-30 10:42:39 +0100167 [LA_ZEROPLUS_LOGIC_CUBE="$enableval"],
168 [LA_ZEROPLUS_LOGIC_CUBE=yes])
169AM_CONDITIONAL(LA_ZEROPLUS_LOGIC_CUBE, test x$LA_ZEROPLUS_LOGIC_CUBE = xyes)
170if test "x$LA_ZEROPLUS_LOGIC_CUBE" = "xyes"; then
Uwe Hermann8fdecce2012-05-30 22:55:03 +0200171 AC_DEFINE(HAVE_LA_ZEROPLUS_LOGIC_CUBE, 1, [ZEROPLUS Logic Cube support])
Uwe Hermann826938d2011-12-30 10:42:39 +0100172fi
173
Bert Vermeulen3b533202012-04-23 01:05:58 +0200174AC_ARG_ENABLE(hantek-dso,
175 AC_HELP_STRING([--enable-hantek-dso],
176 [enable Hantek DSO support [default=yes]]),
177 [HW_HANTEK_DSO="$enableval"],
178 [HW_HANTEK_DSO=yes])
179AM_CONDITIONAL(HW_HANTEK_DSO, test x$HW_HANTEK_DSO = xyes)
180if test "x$HW_HANTEK_DSO" = "xyes"; then
181 AC_DEFINE(HAVE_HW_HANTEK_DSO, 1, [Hantek DSO support])
182fi
183
Uwe Hermann826938d2011-12-30 10:42:39 +0100184# Checks for libraries.
185
186# This variable collects the pkg-config names of all detected libs.
187# It is then used to construct the "Requires.private:" field in the
188# libsigrok.pc file.
Uwe Hermann6dddd902012-03-31 11:28:24 +0200189SR_PKGLIBS=""
Uwe Hermann826938d2011-12-30 10:42:39 +0100190
191# libglib-2.0 is always needed.
192# Note: glib-2.0 is part of the libsigrok API (hard pkg-config requirement).
Bert Vermeulene21e8462012-06-23 01:17:36 +0200193AM_PATH_GLIB_2_0([2.28.0],
Uwe Hermann826938d2011-12-30 10:42:39 +0100194 [CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
195
196# libgthread-2.0 is always needed (e.g. for the demo hardware driver).
197PKG_CHECK_MODULES([gthread], [gthread-2.0 >= 2.22.0],
198 [CFLAGS="$CFLAGS $gthread_CFLAGS"; LIBS="$LIBS $gthread_LIBS";
Uwe Hermann6dddd902012-03-31 11:28:24 +0200199 SR_PKGLIBS="$SR_PKGLIBS gthread-2.0"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100200
201# libusb is only needed for some hardware drivers.
Joel Holdsworth824b1a82012-04-18 19:17:25 +0100202if test "x$LA_ASIX_SIGMA" != xno \
Uwe Hermann826938d2011-12-30 10:42:39 +0100203 -o "x$LA_CHRONOVU_LA8" != xno \
Bert Vermeulenef2345b2012-07-29 15:21:08 +0200204 -o "x$LA_FX2LAFW" != xno \
205 -o "x$HW_HANTEK_DSO" != xno \
206 -o "x$LA_ZEROPLUS_LOGIC_CUBE" != xno; then
Uwe Hermann826938d2011-12-30 10:42:39 +0100207 case "$build" in
208 *freebsd*)
209 # FreeBSD comes with an "integrated" libusb-1.0-style USB API.
210 AC_DEFINE_UNQUOTED(HAVE_LIBUSB_1_0, [1],
211 [Specifies whether we have a libusb.h header.])
212 ;;
213 *)
214 PKG_CHECK_MODULES([libusb], [libusb-1.0 >= 1.0.5],
215 [CFLAGS="$CFLAGS $libusb_CFLAGS";
216 LIBS="$LIBS $libusb_LIBS";
Uwe Hermann6dddd902012-03-31 11:28:24 +0200217 SR_PKGLIBS="$SR_PKGLIBS libusb-1.0"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100218 AC_CHECK_LIB(usb-1.0, libusb_init)
219 ;;
220 esac
221fi
222
223# libzip is always needed.
224PKG_CHECK_MODULES([libzip], [libzip >= 0.8],
225 [CFLAGS="$CFLAGS $libzip_CFLAGS"; LIBS="$LIBS $libzip_LIBS";
Uwe Hermann6dddd902012-03-31 11:28:24 +0200226 SR_PKGLIBS="$SR_PKGLIBS libzip"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100227
Uwe Hermann826938d2011-12-30 10:42:39 +0100228# libftdi is only needed for some hardware drivers.
229if test "x$LA_ASIX_SIGMA" != xno \
230 -o "x$LA_CHRONOVU_LA8" != xno; then
231 PKG_CHECK_MODULES([libftdi], [libftdi >= 0.16],
232 [CFLAGS="$CFLAGS $libftdi_CFLAGS";
233 LIBS="$LIBS $libftdi_LIBS";
Uwe Hermann6dddd902012-03-31 11:28:24 +0200234 SR_PKGLIBS="$SR_PKGLIBS libftdi"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100235fi
236
237# libudev is only needed for some hardware drivers.
238if test "x$LA_LINK_MSO19" != xno; then
239 PKG_CHECK_MODULES([libudev], [libudev >= 151],
240 [CFLAGS="$CFLAGS $libudev_CFLAGS"; LIBS="$LIBS $libudev_LIBS";
Uwe Hermann6dddd902012-03-31 11:28:24 +0200241 SR_PKGLIBS="$SR_PKGLIBS libudev"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100242fi
243
244# ALSA is only needed for some hardware drivers.
245if test "x$LA_ALSA" != xno; then
246 PKG_CHECK_MODULES([alsa], [alsa >= 1.0],
247 [CFLAGS="$CFLAGS $alsa_CFLAGS"; LIBS="$LIBS $alsa_LIBS";
Uwe Hermann6dddd902012-03-31 11:28:24 +0200248 SR_PKGLIBS="$SR_PKGLIBS alsa"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100249fi
250
Bert Vermeulen28b9dd12012-07-11 12:36:13 +0200251# EZUSB FX2 firmware helpers only needed for some hardware drivers
252AM_CONDITIONAL(NEED_EZUSB, \
253 test "x$LA_FX2LAFW" != xno \
254 -o "x$HW_HANTEK_DSO" != xno \
255)
256
257# Serial port helpers only needed for some hardware drivers
258AM_CONDITIONAL(NEED_SERIAL, \
259 test "x$LA_OLS" != xno \
Bert Vermeulen6ac0db12012-09-02 11:58:29 +0200260 -o "x$HW_AGILENT_DMM" != xno \
Bert Vermeulen28b9dd12012-07-11 12:36:13 +0200261 -o "x$HW_GENERICDMM" != xno \
262)
263
Uwe Hermann6dddd902012-03-31 11:28:24 +0200264AC_SUBST(SR_PKGLIBS)
Uwe Hermann826938d2011-12-30 10:42:39 +0100265
266# Checks for header files.
267# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
268AC_CHECK_HEADERS([fcntl.h sys/time.h termios.h])
269
270# Checks for typedefs, structures, and compiler characteristics.
271AC_C_INLINE
272AC_TYPE_INT8_T
273AC_TYPE_INT16_T
274AC_TYPE_INT32_T
275AC_TYPE_INT64_T
276AC_TYPE_UINT8_T
277AC_TYPE_UINT16_T
278AC_TYPE_UINT32_T
279AC_TYPE_UINT64_T
280AC_TYPE_SIZE_T
281
282# Checks for library functions.
283AC_CHECK_FUNCS([gettimeofday memset strchr strcspn strdup strerror strncasecmp strstr strtol strtoul strtoull])
284
Uwe Hermannfb6f1972012-05-30 00:00:33 +0200285AC_SUBST(FIRMWARE_DIR, "$datadir/sigrok-firmware")
Uwe Hermann826938d2011-12-30 10:42:39 +0100286AC_SUBST(MAKEFLAGS, '--no-print-directory')
287AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
288
Uwe Hermann6dddd902012-03-31 11:28:24 +0200289SR_PACKAGE_VERSION_MAJOR=sr_package_version_major
290SR_PACKAGE_VERSION_MINOR=sr_package_version_minor
291SR_PACKAGE_VERSION_MICRO=sr_package_version_micro
292SR_PACKAGE_VERSION=sr_package_version
Uwe Hermann826938d2011-12-30 10:42:39 +0100293
Uwe Hermann6dddd902012-03-31 11:28:24 +0200294AC_SUBST(SR_PACKAGE_VERSION_MAJOR)
295AC_SUBST(SR_PACKAGE_VERSION_MINOR)
296AC_SUBST(SR_PACKAGE_VERSION_MICRO)
297AC_SUBST(SR_PACKAGE_VERSION)
Uwe Hermann826938d2011-12-30 10:42:39 +0100298
Uwe Hermann826938d2011-12-30 10:42:39 +0100299AC_CONFIG_FILES([Makefile
Bert Vermeulen45c59c82012-07-05 00:55:07 +0200300 version.h
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +0100301 hardware/Makefile
Bert Vermeulen6ac0db12012-09-02 11:58:29 +0200302 hardware/agilent-dmm/Makefile
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +0100303 hardware/alsa/Makefile
304 hardware/asix-sigma/Makefile
305 hardware/chronovu-la8/Makefile
306 hardware/common/Makefile
307 hardware/demo/Makefile
Joel Holdsworthf302a082012-02-11 12:08:49 +0000308 hardware/fx2lafw/Makefile
Bert Vermeulenca3d84c2012-07-01 22:37:15 +0200309 hardware/genericdmm/Makefile
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +0100310 hardware/link-mso19/Makefile
311 hardware/openbench-logic-sniffer/Makefile
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +0100312 hardware/zeroplus-logic-cube/Makefile
Bert Vermeulen3b533202012-04-23 01:05:58 +0200313 hardware/hantek-dso/Makefile
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +0100314 input/Makefile
315 output/Makefile
316 output/text/Makefile
317 libsigrok.pc
Uwe Hermann826938d2011-12-30 10:42:39 +0100318 contrib/Makefile
Uwe Hermann826938d2011-12-30 10:42:39 +0100319 ])
320
321AC_OUTPUT
322
323echo
Uwe Hermann45aed072012-01-04 00:49:21 +0100324echo "libsigrok configuration summary:"
Uwe Hermann826938d2011-12-30 10:42:39 +0100325echo
Uwe Hermann6dddd902012-03-31 11:28:24 +0200326echo " - Package version (major.minor.micro): $SR_PACKAGE_VERSION"
327echo " - Library version (current:revision:age): $SR_LIB_VERSION"
Uwe Hermann45aed072012-01-04 00:49:21 +0100328echo " - Prefix: $prefix"
329echo
330echo "Detected libraries:"
331echo
332
333# Note: This only works for libs with pkg-config integration.
HÃ¥vard Espelande210c6c2012-04-22 14:31:40 +0200334for lib in "glib-2.0" "gthread-2.0" "libusb-1.0" "libzip" "libftdi" "libudev" "alsa"; do
Uwe Hermann45aed072012-01-04 00:49:21 +0100335 if `$PKG_CONFIG --exists $lib`; then
336 ver=`$PKG_CONFIG --modversion $lib`
337 answer="yes ($ver)"
338 else
339 answer="no"
340 fi
341 echo " - $lib: $answer"
342done
343
344echo
345echo "Enabled hardware drivers:"
346echo
Bert Vermeulen6ac0db12012-09-02 11:58:29 +0200347echo " - Agilent DMM..................... $HW_AGILENT_DMM"
Uwe Hermann6352d032012-05-02 19:02:03 +0200348echo " - ASIX SIGMA/SIGMA2............... $LA_ASIX_SIGMA"
Uwe Hermann45aed072012-01-04 00:49:21 +0100349echo " - ChronoVu LA8.................... $LA_CHRONOVU_LA8"
350echo " - Demo driver..................... $LA_DEMO"
Uwe Hermannb5750522012-03-21 19:45:46 +0100351echo " - fx2lafw (for FX2 LAs)........... $LA_FX2LAFW"
Bert Vermeulenca3d84c2012-07-01 22:37:15 +0200352echo " - Generic DMM..................... $HW_GENERICDMM"
Uwe Hermann45aed072012-01-04 00:49:21 +0100353echo " - Link MSO-19..................... $LA_LINK_MSO19"
354echo " - Openbench Logic Sniffer......... $LA_OLS"
Uwe Hermann8fdecce2012-05-30 22:55:03 +0200355echo " - ZEROPLUS Logic Cube............. $LA_ZEROPLUS_LOGIC_CUBE"
Bert Vermeulen3b533202012-04-23 01:05:58 +0200356echo " - Hantek DSO...................... $HW_HANTEK_DSO"
Uwe Hermann826938d2011-12-30 10:42:39 +0100357echo
358