2006-12-12 23:26:51 +01:00
|
|
|
config BR2_PACKAGE_AVAHI
|
|
|
|
bool "avahi"
|
2012-11-28 04:24:03 +01:00
|
|
|
# libdaemon uses fork()
|
|
|
|
depends on BR2_USE_MMU
|
2013-04-04 02:39:16 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2014-12-03 22:41:29 +01:00
|
|
|
depends on !BR2_STATIC_LIBS
|
2006-12-12 23:26:51 +01:00
|
|
|
help
|
2007-05-09 15:38:37 +02:00
|
|
|
Avahi is a system which facilitates service
|
|
|
|
discovery on a local network.
|
2006-12-12 23:26:51 +01:00
|
|
|
|
|
|
|
http://www.avahi.org/
|
2007-05-09 15:38:37 +02:00
|
|
|
|
2013-07-15 21:46:48 +02:00
|
|
|
if BR2_PACKAGE_AVAHI
|
|
|
|
|
2007-05-09 15:38:37 +02:00
|
|
|
config BR2_PACKAGE_AVAHI_AUTOIPD
|
2007-07-06 13:42:03 +02:00
|
|
|
bool "IPv4LL network address configuration daemon"
|
2007-05-09 15:38:37 +02:00
|
|
|
default y
|
2009-03-05 22:38:40 +01:00
|
|
|
select BR2_PACKAGE_LIBDAEMON
|
2007-05-09 15:38:37 +02:00
|
|
|
help
|
|
|
|
Avahi-autoipd implements IPv4LL, "Dynamic Configuration of
|
|
|
|
IPv4 Link-Local Addresses" (IETF RFC3927), a protocol for
|
|
|
|
automatic IP address configuration from the link-local
|
|
|
|
169.254.0.0/16 range without the need for a central server.
|
|
|
|
It is primarily intended to be used in ad-hoc networks which
|
|
|
|
lack a DHCP server.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_AVAHI_DAEMON
|
2007-07-06 13:42:03 +02:00
|
|
|
bool "mDNS/DNS-SD daemon"
|
2009-03-05 22:38:40 +01:00
|
|
|
select BR2_PACKAGE_LIBDAEMON
|
2008-08-04 21:08:15 +02:00
|
|
|
select BR2_PACKAGE_EXPAT
|
2007-05-09 15:38:37 +02:00
|
|
|
help
|
|
|
|
The Avahi mDNS/DNS-SD daemon implementing Apple's ZeroConf
|
|
|
|
architecture (also known as "Rendezvous" or "Bonjour").
|
|
|
|
The daemon registers local IP addresses and services using
|
|
|
|
mDNS/DNS-SD.
|
2013-04-04 02:39:16 +02:00
|
|
|
|
2022-01-12 21:31:17 +01:00
|
|
|
# This hidden option allows packages that need the libavahi-client to
|
|
|
|
# more easily determine if it's available or not.
|
|
|
|
config BR2_PACKAGE_AVAHI_LIBAVAHI_CLIENT
|
|
|
|
bool
|
|
|
|
default y if BR2_PACKAGE_AVAHI_DAEMON && BR2_PACKAGE_DBUS
|
|
|
|
|
2014-09-22 23:04:59 +02:00
|
|
|
config BR2_PACKAGE_AVAHI_LIBDNSSD_COMPATIBILITY
|
|
|
|
bool "libdns_sd compatibility (Bonjour)"
|
|
|
|
depends on BR2_PACKAGE_AVAHI_DAEMON
|
|
|
|
select BR2_PACKAGE_DBUS
|
|
|
|
help
|
|
|
|
Enable the libdns_sd (Bonjour) compatibility library support
|
|
|
|
for legacy applications.
|
|
|
|
|
2020-12-04 18:45:08 +01:00
|
|
|
config BR2_PACKAGE_AVAHI_DEFAULT_SERVICES
|
|
|
|
bool "install default service definitions"
|
|
|
|
depends on BR2_PACKAGE_AVAHI_DAEMON
|
|
|
|
help
|
|
|
|
Install the SSH/SFTP service definitions included with the
|
|
|
|
Avahi daemon by default.
|
|
|
|
|
2013-07-15 21:46:48 +02:00
|
|
|
endif
|
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "avahi needs a toolchain w/ threads"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_USE_MMU
|
2013-04-04 02:39:16 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|