Add package nss-mdns.
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
8ac6a2f94c
commit
28943cf005
@ -426,6 +426,7 @@ source "package/libsoup/Config.in"
|
||||
source "package/libtorrent/Config.in"
|
||||
source "package/libupnp/Config.in"
|
||||
source "package/libvncserver/Config.in"
|
||||
source "package/nss-mdns/Config.in"
|
||||
source "package/ortp/Config.in"
|
||||
source "package/zeromq/Config.in"
|
||||
endmenu
|
||||
|
13
package/nss-mdns/Config.in
Normal file
13
package/nss-mdns/Config.in
Normal file
@ -0,0 +1,13 @@
|
||||
config BR2_PACKAGE_NSS_MDNS
|
||||
bool "nss-mdns"
|
||||
depends on BR2_TOOLCHAIN_EXTERNAL_GLIBC || BR2_TOOLCHAIN_CTNG_eglibc || BR2_TOOLCHAIN_CTNG_glibc
|
||||
depends on BR2_PACKAGE_AVAHI_DAEMON
|
||||
help
|
||||
nss-mdns is a plugin for the GNU Name Service Switch (NSS)
|
||||
functionality of the GNU C Library (glibc) providing host
|
||||
name resolution via Multicast DNS (aka Zeroconf, aka Apple
|
||||
Rendezvous, aka Apple Bonjour), effectively allowing name
|
||||
resolution by common Unix/Linux programs in the ad-hoc
|
||||
mDNS domain .local.
|
||||
|
||||
http://0pointer.de/lennart/projects/nss-mdns/
|
15
package/nss-mdns/nss-mdns.mk
Normal file
15
package/nss-mdns/nss-mdns.mk
Normal file
@ -0,0 +1,15 @@
|
||||
#############################################################
|
||||
#
|
||||
# nss_mdns
|
||||
#
|
||||
#############################################################
|
||||
NSS_MDNS_VERSION=0.10
|
||||
NSS_MDNS_SITE=http://0pointer.de/lennart/projects/nss-mdns
|
||||
|
||||
define NSS_MDNS_INSTALL_CONFIG
|
||||
$(INSTALL) -D -m 0664 package/nss-mdns/nsswitch.conf $(TARGET_DIR)/etc/nsswitch.conf
|
||||
endef
|
||||
|
||||
NSS_MDNS_POST_INSTALL_TARGET_HOOKS += NSS_MDNS_INSTALL_CONFIG
|
||||
|
||||
$(eval $(call AUTOTARGETS))
|
15
package/nss-mdns/nsswitch.conf
Normal file
15
package/nss-mdns/nsswitch.conf
Normal file
@ -0,0 +1,15 @@
|
||||
# /etc/nsswitch.conf
|
||||
|
||||
passwd: compat
|
||||
group: compat
|
||||
shadow: compat
|
||||
|
||||
hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4
|
||||
networks: files
|
||||
|
||||
protocols: db files
|
||||
services: db files
|
||||
ethers: db files
|
||||
rpc: db files
|
||||
|
||||
netgroup: nis
|
Loading…
Reference in New Issue
Block a user