Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
From 30642d5b1a3f479987c4d50a237311d84d5f0581 Mon Sep 17 00:00:00 2001
|
||||
From: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
||||
Date: Thu, 24 Dec 2015 12:04:57 +0100
|
||||
Subject: [PATCH] configure: check for execinfo.h
|
||||
|
||||
Not all toolchains have execinfo.h. For example, support for it is
|
||||
optional in uClibc, while it is entirely missing from musl.
|
||||
|
||||
Add a check in configure to look for it.
|
||||
|
||||
Since execinfo.h is /only/ used to dump a backtrace in case of failure,
|
||||
just do nothing when execinfo.h is missing.
|
||||
|
||||
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
||||
---
|
||||
configure.ac | 2 ++
|
||||
src/log.c | 4 ++++
|
||||
2 files changed, 6 insertions(+)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index b51d6b3..28e657b 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -182,6 +182,8 @@ AC_CHECK_LIB(resolv, ns_initparse, dummy=yes, [
|
||||
AC_MSG_ERROR(resolver library support is required))
|
||||
])
|
||||
|
||||
+AC_CHECK_HEADERS([execinfo.h])
|
||||
+
|
||||
AC_CHECK_FUNC(signalfd, dummy=yes,
|
||||
AC_MSG_ERROR(signalfd support is required))
|
||||
|
||||
diff --git a/src/log.c b/src/log.c
|
||||
index a693bd0..76e10e7 100644
|
||||
--- a/src/log.c
|
||||
+++ b/src/log.c
|
||||
@@ -30,7 +30,9 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <syslog.h>
|
||||
+#if defined(HAVE_EXECINFO_H)
|
||||
#include <execinfo.h>
|
||||
+#endif
|
||||
#include <dlfcn.h>
|
||||
|
||||
#include "connman.h"
|
||||
@@ -112,6 +114,7 @@ void connman_debug(const char *format, ...)
|
||||
|
||||
static void print_backtrace(unsigned int offset)
|
||||
{
|
||||
+#if defined(HAVE_EXECINFO_H)
|
||||
void *frames[99];
|
||||
size_t n_ptrs;
|
||||
unsigned int i;
|
||||
@@ -210,6 +213,7 @@ static void print_backtrace(unsigned int offset)
|
||||
|
||||
close(outfd[1]);
|
||||
close(infd[0]);
|
||||
+#endif /* HAVE_EXECINFO_H */
|
||||
}
|
||||
|
||||
static void signal_handler(int signo)
|
||||
--
|
||||
1.9.1
|
||||
|
||||
73
deprecated/firmware/buildroot/package/connman/Config.in
Normal file
73
deprecated/firmware/buildroot/package/connman/Config.in
Normal file
@@ -0,0 +1,73 @@
|
||||
config BR2_PACKAGE_CONNMAN
|
||||
bool "connman"
|
||||
select BR2_PACKAGE_DBUS
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_IPTABLES
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
|
||||
depends on BR2_USE_MMU # dbus, libglib2
|
||||
depends on !BR2_STATIC_LIBS # needs dlopen()
|
||||
depends on !BR2_sparc # needs atomic operation __sync_fetch_and_add
|
||||
help
|
||||
The Connection Manager (ConnMan) project provides a daemon
|
||||
for managing internet connections within embedded devices
|
||||
running the Linux operating system.
|
||||
|
||||
For more information, see https://01.org/connman
|
||||
|
||||
if BR2_PACKAGE_CONNMAN
|
||||
|
||||
config BR2_PACKAGE_CONNMAN_ETHERNET
|
||||
bool "enable Ethernet support"
|
||||
default y
|
||||
|
||||
config BR2_PACKAGE_CONNMAN_WIFI
|
||||
bool "enable WiFi support"
|
||||
select BR2_PACKAGE_WPA_SUPPLICANT # runtime
|
||||
select BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW # runtime
|
||||
help
|
||||
Enable WiFi support (scan and static/dhcp interface
|
||||
setup). ConnMan detects the start of wpa_supplicant
|
||||
automatically.
|
||||
|
||||
config BR2_PACKAGE_CONNMAN_WISPR
|
||||
bool "enable WISPr support"
|
||||
select BR2_PACKAGE_GNUTLS
|
||||
help
|
||||
Enable support for Wireless Internet Service Provider
|
||||
roaming (WISPr). A RADIUS server is used to authenticate the
|
||||
subscriber's credentials.
|
||||
|
||||
config BR2_PACKAGE_CONNMAN_BLUETOOTH
|
||||
bool "enable Bluetooth support"
|
||||
help
|
||||
Enable Bluetooth support. The start of bluetoothd is
|
||||
automatically detected and only a runtime dependency.
|
||||
|
||||
config BR2_PACKAGE_CONNMAN_LOOPBACK
|
||||
bool "enable loopback support"
|
||||
|
||||
config BR2_PACKAGE_CONNMAN_NEARD
|
||||
bool "enable neard support"
|
||||
select BR2_PACKAGE_NEARD
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # neard
|
||||
|
||||
config BR2_PACKAGE_CONNMAN_OFONO
|
||||
bool "enable ofono support"
|
||||
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII # libcap-ng
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # ofono
|
||||
select BR2_PACKAGE_OFONO
|
||||
|
||||
config BR2_PACKAGE_CONNMAN_DEBUG
|
||||
bool "enable compiling with debugging information"
|
||||
|
||||
config BR2_PACKAGE_CONNMAN_CLIENT
|
||||
bool "enable command line client"
|
||||
select BR2_PACKAGE_READLINE
|
||||
|
||||
endif # BR2_PACKAGE_CONNMAN
|
||||
|
||||
comment "connman needs a toolchain w/ wchar, threads, resolver, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_sparc
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
22
deprecated/firmware/buildroot/package/connman/S45connman
Executable file
22
deprecated/firmware/buildroot/package/connman/S45connman
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/bin/sh
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
printf "Starting connman ... "
|
||||
start-stop-daemon -S -q -m -b -p /var/run/connmand.pid --exec /usr/sbin/connmand -- -n
|
||||
echo "done."
|
||||
;;
|
||||
stop)
|
||||
printf "Stopping connman ..."
|
||||
start-stop-daemon -K -q -p /var/run/connmand.pid
|
||||
echo "done."
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
sleep 1
|
||||
$0 start
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 {start|stop|restart}"
|
||||
;;
|
||||
esac
|
||||
@@ -0,0 +1,2 @@
|
||||
# From https://www.kernel.org/pub/linux/network/connman/sha256sums.asc
|
||||
sha256 88fcf0b6df334796b90e2fd2e434d6f5b36cd6f13b886a119b8c90276b72b8e2 connman-1.31.tar.xz
|
||||
54
deprecated/firmware/buildroot/package/connman/connman.mk
Normal file
54
deprecated/firmware/buildroot/package/connman/connman.mk
Normal file
@@ -0,0 +1,54 @@
|
||||
################################################################################
|
||||
#
|
||||
# connman
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CONNMAN_VERSION = 1.31
|
||||
CONNMAN_SOURCE = connman-$(CONNMAN_VERSION).tar.xz
|
||||
CONNMAN_SITE = $(BR2_KERNEL_MIRROR)/linux/network/connman
|
||||
CONNMAN_DEPENDENCIES = libglib2 dbus iptables
|
||||
CONNMAN_INSTALL_STAGING = YES
|
||||
CONNMAN_LICENSE = GPLv2
|
||||
CONNMAN_LICENSE_FILES = COPYING
|
||||
CONNMAN_CONF_OPTS += \
|
||||
--with-dbusconfdir=/etc \
|
||||
$(if $(BR2_PACKAGE_CONNMAN_DEBUG),--enable-debug,--disable-debug) \
|
||||
$(if $(BR2_PACKAGE_CONNMAN_ETHERNET),--enable-ethernet,--disable-ethernet) \
|
||||
$(if $(BR2_PACKAGE_CONNMAN_WIFI),--enable-wifi,--disable-wifi) \
|
||||
$(if $(BR2_PACKAGE_CONNMAN_WISPR),--enable-wispr,--disable-wispr) \
|
||||
$(if $(BR2_PACKAGE_CONNMAN_BLUETOOTH),--enable-bluetooth,--disable-bluetooth) \
|
||||
$(if $(BR2_PACKAGE_CONNMAN_LOOPBACK),--enable-loopback,--disable-loopback) \
|
||||
$(if $(BR2_PACKAGE_CONNMAN_NEARD),--enable-neard,--disable-neard) \
|
||||
$(if $(BR2_PACKAGE_CONNMAN_OFONO),--enable-ofono,--disable-ofono) \
|
||||
$(if $(BR2_INIT_SYSTEMD),--with-systemdunitdir=/usr/lib/systemd/system)
|
||||
|
||||
CONNMAN_DEPENDENCIES += \
|
||||
$(if $(BR2_PACKAGE_CONNMAN_NEARD),neard) \
|
||||
$(if $(BR2_PACKAGE_CONNMAN_OFONO),ofono) \
|
||||
$(if $(BR2_PACKAGE_CONNMAN_WISPR),gnutls)
|
||||
|
||||
define CONNMAN_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -m 0755 -D package/connman/S45connman $(TARGET_DIR)/etc/init.d/S45connman
|
||||
endef
|
||||
|
||||
define CONNMAN_INSTALL_INIT_SYSTEMD
|
||||
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
||||
ln -fs ../../../../usr/lib/systemd/system/connman.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/connman.service
|
||||
endef
|
||||
|
||||
ifeq ($(BR2_PACKAGE_CONNMAN_CLIENT),y)
|
||||
CONNMAN_CONF_OPTS += --enable-client
|
||||
CONNMAN_DEPENDENCIES += readline
|
||||
|
||||
define CONNMAN_INSTALL_CM
|
||||
$(INSTALL) -m 0755 -D $(@D)/client/connmanctl $(TARGET_DIR)/usr/bin/connmanctl
|
||||
endef
|
||||
|
||||
CONNMAN_POST_INSTALL_TARGET_HOOKS += CONNMAN_INSTALL_CM
|
||||
else
|
||||
CONNMAN_CONF_OPTS += --disable-client
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user