Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
From 4f849e1d2287206cfb7ff0fdeca96c22383b0d53 Mon Sep 17 00:00:00 2001
|
||||
From: Samuel Martin <s.martin49@gmail.com>
|
||||
Date: Mon, 29 Dec 2014 19:05:13 +0100
|
||||
Subject: [PATCH] cmake: libxml2 detection: try first the CMake module from
|
||||
libxml2
|
||||
|
||||
Libxml2 >=2.9.2 provides its own CMake module, so check for it before
|
||||
falling back on the CMake's module FindLibXml2.cmake.
|
||||
|
||||
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
|
||||
---
|
||||
CMakeLists.txt | 14 +++++++++++++-
|
||||
1 file changed, 13 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 393fee3..b4f1d26 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -38,7 +38,19 @@ endif()
|
||||
find_library(AVAHI_CLIENT_LIBRARIES avahi-client)
|
||||
find_library(AVAHI_COMMON_LIBRARIES avahi-common)
|
||||
find_library(PTHREAD_LIBRARIES pthread)
|
||||
-include(FindLibXml2)
|
||||
+
|
||||
+# Since libxml2-2.9.2, libxml2 provides its own LibXml2-config.cmake, with all
|
||||
+# variables correctly set.
|
||||
+# So, try first to find the CMake module provided by libxml2 package, then fallback
|
||||
+# on the CMake's FindLibXml2.cmake module (which can lack some definition, especially
|
||||
+# in static build case).
|
||||
+find_package(LibXml2 QUIET NO_MODULE)
|
||||
+if(DEFINED LIBXML2_VERSION_STRING)
|
||||
+ set(LIBXML2_FOUND ON)
|
||||
+ set(LIBXML2_INCLUDE_DIR ${LIBXML2_INCLUDE_DIRS})
|
||||
+else()
|
||||
+ include(FindLibXml2)
|
||||
+endif()
|
||||
|
||||
set(LIBIIO_CFILES channel.c device.c context.c buffer.c utilities.c)
|
||||
set(LIBIIO_HEADERS iio.h)
|
||||
--
|
||||
2.2.1
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
From 2e6fa357ffbe755bfecaecad4fc82e3307fe2831 Mon Sep 17 00:00:00 2001
|
||||
From: Paul Cercueil <paul.cercueil@analog.com>
|
||||
Date: Wed, 22 Jul 2015 10:25:01 +0200
|
||||
Subject: [PATCH] CMake: Fix build on UNIX systems without a C++ compiler
|
||||
|
||||
Signed-off-by: Paul Cercueil <paul.cercueil@analog.com>
|
||||
---
|
||||
bindings/csharp/CMakeLists.txt | 2 +-
|
||||
bindings/python/CMakeLists.txt | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/bindings/csharp/CMakeLists.txt b/bindings/csharp/CMakeLists.txt
|
||||
index 8aafb8f..fceab88 100644
|
||||
--- a/bindings/csharp/CMakeLists.txt
|
||||
+++ b/bindings/csharp/CMakeLists.txt
|
||||
@@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 2.8.7)
|
||||
-project(libiio-sharp)
|
||||
+project(libiio-sharp LANGUAGES NONE)
|
||||
|
||||
find_program(MCS_EXECUTABLE
|
||||
NAMES mcs csc
|
||||
diff --git a/bindings/python/CMakeLists.txt b/bindings/python/CMakeLists.txt
|
||||
index 22ffdb4..76ceae8 100644
|
||||
--- a/bindings/python/CMakeLists.txt
|
||||
+++ b/bindings/python/CMakeLists.txt
|
||||
@@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 2.8.7)
|
||||
-project(libiio-py)
|
||||
+project(libiio-py LANGUAGES NONE)
|
||||
|
||||
include(FindPythonInterp)
|
||||
|
||||
--
|
||||
2.1.4
|
||||
|
||||
59
deprecated/firmware/buildroot/package/libiio/Config.in
Normal file
59
deprecated/firmware/buildroot/package/libiio/Config.in
Normal file
@@ -0,0 +1,59 @@
|
||||
config BR2_PACKAGE_LIBIIO
|
||||
bool "libiio"
|
||||
select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND if !BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
|
||||
help
|
||||
Libiio is a library to ease the development of software
|
||||
interfacing Linux Industrial I/O (IIO) devices.
|
||||
|
||||
http://wiki.analog.com/resources/tools-software/linux-software/libiio
|
||||
|
||||
if BR2_PACKAGE_LIBIIO
|
||||
|
||||
config BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
|
||||
bool "Local backend"
|
||||
default y
|
||||
help
|
||||
Enable the local backend of the library.
|
||||
|
||||
config BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
|
||||
bool "Network backend"
|
||||
select BR2_PACKAGE_LIBXML2
|
||||
default y
|
||||
help
|
||||
Enable the network backend of the library.
|
||||
|
||||
config BR2_PACKAGE_LIBIIO_IIOD
|
||||
bool "IIO Daemon"
|
||||
select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
default y
|
||||
help
|
||||
Install the IIO Daemon.
|
||||
|
||||
comment "IIO Daemon needs a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_LIBIIO_TESTS
|
||||
bool "Install test programs"
|
||||
select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
|
||||
select BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
Install the test programs (iio_info, iio_genxml, iio_readdev).
|
||||
|
||||
comment "IIO test programs need a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_LIBIIO_BINDINGS_CSHARP
|
||||
bool "Install C# bindings"
|
||||
depends on BR2_PACKAGE_MONO
|
||||
help
|
||||
Install the C# bindings.
|
||||
|
||||
config BR2_PACKAGE_LIBIIO_BINDINGS_PYTHON
|
||||
bool "Install Python bindings"
|
||||
depends on BR2_PACKAGE_PYTHON
|
||||
help
|
||||
Install the Python bindings.
|
||||
|
||||
endif
|
||||
30
deprecated/firmware/buildroot/package/libiio/S99iiod
Normal file
30
deprecated/firmware/buildroot/package/libiio/S99iiod
Normal file
@@ -0,0 +1,30 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Server-side demuxing by default
|
||||
IIOD_OPTS=-D
|
||||
|
||||
[ -r /etc/default/iiod ] && . /etc/default/iiod
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
echo "Starting IIO Server Daemon"
|
||||
start-stop-daemon -S -b -q -m -p /var/run/iiod.pid -x /usr/sbin/iiod -- $IIOD_OPTS
|
||||
exit $?
|
||||
;;
|
||||
|
||||
stop)
|
||||
echo "Stopping IIO Server Daemon"
|
||||
start-stop-daemon -K -q -p /var/run/iiod.pid 2>/dev/null
|
||||
exit $?
|
||||
;;
|
||||
|
||||
restart)
|
||||
$0 stop
|
||||
sleep 1
|
||||
$0 start
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
esac
|
||||
2
deprecated/firmware/buildroot/package/libiio/libiio.hash
Normal file
2
deprecated/firmware/buildroot/package/libiio/libiio.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# From https://github.com/analogdevicesinc/libiio/archive/v0.5/
|
||||
sha256 c41cdcfeae8717e72f1100b4dac9d7cc9d86f4e0731da3354149cb7e051666f3 libiio-0.5.tar.gz
|
||||
76
deprecated/firmware/buildroot/package/libiio/libiio.mk
Normal file
76
deprecated/firmware/buildroot/package/libiio/libiio.mk
Normal file
@@ -0,0 +1,76 @@
|
||||
################################################################################
|
||||
#
|
||||
# libiio
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBIIO_VERSION = 0.5
|
||||
LIBIIO_SITE = $(call github,analogdevicesinc,libiio,v$(LIBIIO_VERSION))
|
||||
LIBIIO_INSTALL_STAGING = YES
|
||||
LIBIIO_LICENSE = LGPLv2.1+
|
||||
LIBIIO_LICENSE_FILES = COPYING
|
||||
|
||||
LIBIIO_CONF_OPTS = -DENABLE_IPV6=ON \
|
||||
-DWITH_LOCAL_BACKEND=$(if $(BR2_PACKAGE_LIBIIO_LOCAL_BACKEND),ON,OFF) \
|
||||
-DWITH_TESTS=$(if $(BR2_PACKAGE_LIBIIO_TESTS),ON,OFF) \
|
||||
-DWITH_DOC=OFF
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBIIO_NETWORK_BACKEND),y)
|
||||
LIBIIO_DEPENDENCIES += libxml2
|
||||
LIBIIO_CONF_OPTS += -DWITH_NETWORK_BACKEND=ON
|
||||
else
|
||||
LIBIIO_CONF_OPTS += -DWITH_NETWORK_BACKEND=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBIIO_IIOD),y)
|
||||
LIBIIO_DEPENDENCIES += host-flex host-bison
|
||||
LIBIIO_CONF_OPTS += -DWITH_IIOD=ON
|
||||
else
|
||||
LIBIIO_CONF_OPTS += -DWITH_IIOD=OFF
|
||||
endif
|
||||
|
||||
# Avahi support in libiio requires avahi-client, which needs avahi-daemon
|
||||
ifeq ($(BR2_PACKAGE_AVAHI)$(BR2_PACKAGE_AVAHI_DAEMON),yy)
|
||||
LIBIIO_DEPENDENCIES += avahi
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBIIO_BINDINGS_PYTHON),y)
|
||||
LIBIIO_DEPENDENCIES += python
|
||||
LIBIIO_CONF_OPTS += -DPYTHON_BINDINGS=ON
|
||||
else
|
||||
LIBIIO_CONF_OPTS += -DPYTHON_BINDINGS=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBIIO_BINDINGS_CSHARP),y)
|
||||
define LIBIIO_INSTALL_CSHARP_BINDINGS_TO_TARGET
|
||||
rm $(TARGET_DIR)/usr/lib/cli/libiio-sharp-$(LIBIIO_VERSION)/libiio-sharp.dll.mdb
|
||||
$(HOST_DIR)/usr/bin/gacutil -root $(TARGET_DIR)/usr/lib -i \
|
||||
$(TARGET_DIR)/usr/lib/cli/libiio-sharp-$(LIBIIO_VERSION)/libiio-sharp.dll
|
||||
endef
|
||||
define LIBIIO_INSTALL_CSHARP_BINDINGS_TO_STAGING
|
||||
$(HOST_DIR)/usr/bin/gacutil -root $(STAGING_DIR)/usr/lib -i \
|
||||
$(STAGING_DIR)/usr/lib/cli/libiio-sharp-$(LIBIIO_VERSION)/libiio-sharp.dll
|
||||
endef
|
||||
LIBIIO_POST_INSTALL_TARGET_HOOKS += LIBIIO_INSTALL_CSHARP_BINDINGS_TO_TARGET
|
||||
LIBIIO_POST_INSTALL_STAGING_HOOKS += LIBIIO_INSTALL_CSHARP_BINDINGS_TO_STAGING
|
||||
LIBIIO_DEPENDENCIES += mono
|
||||
LIBIIO_CONF_OPTS += -DCSHARP_BINDINGS=ON
|
||||
else
|
||||
LIBIIO_CONF_OPTS += -DCSHARP_BINDINGS=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBIIO_IIOD),y)
|
||||
define LIBIIO_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -D -m 0755 package/libiio/S99iiod \
|
||||
$(TARGET_DIR)/etc/init.d/S99iiod
|
||||
endef
|
||||
define LIBIIO_INSTALL_INIT_SYSTEMD
|
||||
$(INSTALL) -d $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
||||
$(INSTALL) -D -m 0644 $(@D)/debian/iiod.service \
|
||||
$(TARGET_DIR)/usr/lib/systemd/system/iiod.service
|
||||
ln -fs ../../../../usr/lib/systemd/system/iiod.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/iiod.service
|
||||
endef
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user