mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
ifplugd: misc fixes
* Busybox provides ifplugd, so build after it and make the menu option conditional on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS * Style cleanup [Peter: really make it depend on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
b79ab02d46
commit
16eb3ed2f1
@ -417,7 +417,9 @@ source "package/dropbear/Config.in"
|
|||||||
source "package/ebtables/Config.in"
|
source "package/ebtables/Config.in"
|
||||||
source "package/ethtool/Config.in"
|
source "package/ethtool/Config.in"
|
||||||
source "package/hostapd/Config.in"
|
source "package/hostapd/Config.in"
|
||||||
|
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
||||||
source "package/ifplugd/Config.in"
|
source "package/ifplugd/Config.in"
|
||||||
|
endif
|
||||||
source "package/iperf/Config.in"
|
source "package/iperf/Config.in"
|
||||||
source "package/iproute2/Config.in"
|
source "package/iproute2/Config.in"
|
||||||
source "package/ipsec-tools/Config.in"
|
source "package/ipsec-tools/Config.in"
|
||||||
|
@ -3,19 +3,20 @@
|
|||||||
# ifplugd
|
# ifplugd
|
||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
|
|
||||||
IFPLUGD_VERSION = 0.28
|
IFPLUGD_VERSION = 0.28
|
||||||
IFPLUGD_SOURCE = ifplugd-$(IFPLUGD_VERSION).tar.gz
|
IFPLUGD_SITE = http://0pointer.de/lennart/projects/ifplugd
|
||||||
IFPLUGD_SITE = http://0pointer.de/lennart/projects/ifplugd/
|
|
||||||
IFPLUGD_AUTORECONF = YES
|
IFPLUGD_AUTORECONF = YES
|
||||||
IFPLUGD_INSTALL_STAGING = NO
|
|
||||||
IFPLUGD_INSTALL_TARGET = YES
|
|
||||||
# install-strip unconditionally overwrites $(TARGET_DIR)/etc/ifplugd/ifplugd.*
|
# install-strip unconditionally overwrites $(TARGET_DIR)/etc/ifplugd/ifplugd.*
|
||||||
IFPLUGD_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install-exec
|
IFPLUGD_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install-exec
|
||||||
|
|
||||||
IFPLUGD_CONF_OPT = --disable-lynx
|
IFPLUGD_CONF_OPT = --disable-lynx
|
||||||
|
|
||||||
IFPLUGD_DEPENDENCIES = libdaemon
|
IFPLUGD_DEPENDENCIES = libdaemon
|
||||||
|
|
||||||
|
# Prefer big ifplugd
|
||||||
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
||||||
|
IFPLUGD_DEPENDENCIES += busybox
|
||||||
|
endif
|
||||||
|
|
||||||
define IFPLUGD_INSTALL_FIXUP
|
define IFPLUGD_INSTALL_FIXUP
|
||||||
$(INSTALL) -d $(TARGET_DIR)/etc/ifplugd
|
$(INSTALL) -d $(TARGET_DIR)/etc/ifplugd
|
||||||
@if [ ! -f $(TARGET_DIR)/etc/ifplugd/ifplugd.conf ]; then \
|
@if [ ! -f $(TARGET_DIR)/etc/ifplugd/ifplugd.conf ]; then \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user