Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
From 324e1ebc7b86f68f49fb4f1c34a4de60d18dd3c1 Mon Sep 17 00:00:00 2001
|
||||
From: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
Date: Sun, 23 Nov 2014 12:17:11 +0100
|
||||
Subject: [PATCH 2/3] Don't force -fstack-protector, the toolchain might lack
|
||||
support for it
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||
---
|
||||
Makefile.am | 1 -
|
||||
1 file changed, 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index 80633e7..8b5a2e4 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -43,7 +43,6 @@ DISABLE_WARNINGS = \
|
||||
|
||||
AM_CFLAGS = \
|
||||
-fno-strict-aliasing \
|
||||
- -fstack-protector \
|
||||
$(ENABLE_WARNINGS) \
|
||||
$(DISABLE_WARNINGS)
|
||||
|
||||
--
|
||||
2.1.0
|
||||
|
||||
8
deprecated/firmware/buildroot/package/radvd/Config.in
Normal file
8
deprecated/firmware/buildroot/package/radvd/Config.in
Normal file
@@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_RADVD
|
||||
bool "radvd"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_FLEX
|
||||
help
|
||||
IPv6 Router Advertisement Daemon.
|
||||
|
||||
http://www.litech.org/radvd/
|
||||
18
deprecated/firmware/buildroot/package/radvd/S50radvd
Executable file
18
deprecated/firmware/buildroot/package/radvd/S50radvd
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
RADVD=/usr/sbin/radvd
|
||||
|
||||
echo "1" > /proc/sys/net/ipv6/conf/all/forwarding
|
||||
|
||||
printf "Starting radvd: "
|
||||
if [ ! -x "${RADVD}" ]; then
|
||||
echo "missing"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ${RADVD} ; then
|
||||
echo "done"
|
||||
else
|
||||
echo "failed"
|
||||
exit 1
|
||||
fi
|
||||
3
deprecated/firmware/buildroot/package/radvd/radvd.hash
Normal file
3
deprecated/firmware/buildroot/package/radvd/radvd.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# From http://www.litech.org/radvd/dist/radvd-2.11.tar.gz.sha256
|
||||
sha256 04636288fc79fa151260eeb2bea1b05942f59c31f01358c57f930a4eb45b5acc radvd-2.11.tar.xz
|
||||
sha256 01d12bd2970fedf5695d9177a5ea45483d5e3c709ecceed636972c3049c47d0d 1d8973e13d89802eee0b648451e2b97ac65cf9e0.patch
|
||||
23
deprecated/firmware/buildroot/package/radvd/radvd.mk
Normal file
23
deprecated/firmware/buildroot/package/radvd/radvd.mk
Normal file
@@ -0,0 +1,23 @@
|
||||
################################################################################
|
||||
#
|
||||
# radvd
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RADVD_VERSION = 2.11
|
||||
RADVD_SOURCE = radvd-$(RADVD_VERSION).tar.xz
|
||||
RADVD_SITE = http://www.litech.org/radvd/dist
|
||||
RADVD_PATCH = \
|
||||
https://github.com/reubenhwk/radvd/commit/1d8973e13d89802eee0b648451e2b97ac65cf9e0.patch
|
||||
RADVD_DEPENDENCIES = host-bison flex host-flex host-pkgconf
|
||||
RADVD_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
|
||||
# We're patching configure.ac/Makefile.am.
|
||||
RADVD_AUTORECONF = YES
|
||||
RADVD_LICENSE = BSD-4c-like
|
||||
RADVD_LICENSE_FILES = COPYRIGHT
|
||||
|
||||
define RADVD_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -D -m 0755 package/radvd/S50radvd $(TARGET_DIR)/etc/init.d/S50radvd
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user