Add radvd to the list of packages
Add radvd, the IPv6 router advertisement daemon. Signed-off-by: Amand Tihon <amand.tihon@alrj.org>
This commit is contained in:
parent
2389a4591b
commit
d459b1bc3d
@ -189,6 +189,7 @@ source "package/openvpn/Config.in"
|
||||
source "package/openswan/Config.in"
|
||||
source "package/portmap/Config.in"
|
||||
source "package/pppd/Config.in"
|
||||
source "package/radvd/Config.in"
|
||||
source "package/rp-pppoe/Config.in"
|
||||
source "package/pptp-linux/Config.in"
|
||||
source "package/proftpd/Config.in"
|
||||
|
8
package/radvd/Config.in
Normal file
8
package/radvd/Config.in
Normal file
@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_RADVD
|
||||
bool "radvd"
|
||||
select BR2_PACKAGE_FLEX
|
||||
depends on BR2_INET_IPV6
|
||||
help
|
||||
IPv6 Router Advertisement Daemon.
|
||||
|
||||
http://www.litech.org/radvd/
|
18
package/radvd/S50radvd
Executable file
18
package/radvd/S50radvd
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
RADVD=/usr/sbin/radvd
|
||||
|
||||
echo "1" > /proc/sys/net/ipv6/conf/all/forwarding
|
||||
|
||||
echo -n "Starting radvd: "
|
||||
if [ ! -x "${RADVD}" ]; then
|
||||
echo "missing"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ${RADVD} ; then
|
||||
echo "done"
|
||||
else
|
||||
echo "failed"
|
||||
exit 1
|
||||
fi
|
20
package/radvd/radvd.mk
Normal file
20
package/radvd/radvd.mk
Normal file
@ -0,0 +1,20 @@
|
||||
#############################################################
|
||||
#
|
||||
# radvd
|
||||
#
|
||||
#############################################################
|
||||
RADVD_VERSION:=1.2
|
||||
RADVD_SOURCE:=radvd-$(RADVD_VERSION).tar.gz
|
||||
RADVD_SITE:=http://www.litech.org/radvd/dist/
|
||||
RADVD_AUTORECONF:=no
|
||||
RADVD_INSTALL_STAGING:=no
|
||||
RADVD_INSTALL_TARGET:=YES
|
||||
RADVD_DEPENDENCIES:=uclibc flex
|
||||
RADVD_MAKE:=$(MAKE1)
|
||||
RADVD_CONF_OPT:= --program-prefix=''
|
||||
|
||||
$(eval $(call AUTOTARGETS,package,radvd))
|
||||
|
||||
$(RADVD_HOOK_POST_INSTALL): $(RADVD_TARGET_INSTALL_TARGET)
|
||||
$(INSTALL) -m 0755 package/radvd/S50radvd $(TARGET_DIR)/etc/init.d
|
||||
touch $@
|
Loading…
Reference in New Issue
Block a user