Disable Link Instruments MSO-19 for 0.1.

This commit is contained in:
Uwe Hermann 2011-01-19 23:55:03 +01:00
parent 26ce0bbfd8
commit 07c81bfad1
2 changed files with 9 additions and 10 deletions

View File

@ -21,7 +21,6 @@ SUBDIRS = \
asix-sigma \
common \
demo \
link-mso19 \
openbench-logic-sniffer \
saleae-logic \
zeroplus-logic-cube
@ -41,9 +40,9 @@ if LA_ASIX_SIGMA
libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
endif
if LA_LINK_MSO19
libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
endif
# if LA_LINK_MSO19
# libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
# endif
if LA_OLS
libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la

View File

@ -58,9 +58,9 @@ extern struct device_plugin zeroplus_logic_cube_plugin_info;
#ifdef HAVE_LA_ASIX_SIGMA
extern struct device_plugin asix_sigma_plugin_info;
#endif
#ifdef HAVE_LA_LINK_MSO19
extern struct device_plugin link_mso19_plugin_info;
#endif
// #ifdef HAVE_LA_LINK_MSO19
// extern struct device_plugin link_mso19_plugin_info;
// #endif
/* TODO: No linked list needed, this can be a simple array. */
int load_hwplugins(void)
@ -82,9 +82,9 @@ int load_hwplugins(void)
#ifdef HAVE_LA_ASIX_SIGMA
plugins = g_slist_append(plugins, (gpointer *)&asix_sigma_plugin_info);
#endif
#ifdef HAVE_LA_LINK_MSO19
plugins = g_slist_append(plugins, (gpointer *)&link_mso19_plugin_info);
#endif
// #ifdef HAVE_LA_LINK_MSO19
// plugins = g_slist_append(plugins, (gpointer *)&link_mso19_plugin_info);
// #endif
return SIGROK_OK;
}