Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
From bfe43f4b4f249cee8c77059d7c89ebbc521d4d93 Mon Sep 17 00:00:00 2001
From: Peter Korsgaard <peter@korsgaard.com>
Date: Mon, 14 Sep 2015 22:25:12 +0200
Subject: [PATCH] sha2.c: explicitly include endian.h for BYTE_ORDER macro
Fixes a build issue with the musl C library, which doesn't indirectly
include endian.h from any of the included system headers:
http://autobuild.buildroot.net/results/17b/17bde543db253c008079b04c5e341f804160f59c/build-end.log
Upstream-Status: submitted (https://github.com/ffainelli/faifa/pull/12)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
sha2.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sha2.c b/sha2.c
index f2f5132..4c8a72d 100644
--- a/sha2.c
+++ b/sha2.c
@@ -40,6 +40,7 @@
#include <inttypes.h>
#include <string.h>
+#include "endian.h"
#include "sha2.h"
/*
--
2.1.4

View File

@@ -0,0 +1,32 @@
From 36eed08a3783df6bb8d92d3c80cd47d0660eeb12 Mon Sep 17 00:00:00 2001
From: Bernd Kuhls <bernd.kuhls@t-online.de>
Date: Sat, 30 Jan 2016 16:27:37 +0100
Subject: [PATCH 1/1] hpav_cfg.c: do not include linux/if_ether.h for musl
compatibility
Fixes a build issue with the musl C library
http://autobuild.buildroot.net/results/dc6/dc6e4d7327d2031ef921cccd814605dec73a0f9c/build-end.log
Patch sent upstream: https://github.com/ffainelli/faifa/pull/13
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
hpav_cfg.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/hpav_cfg.c b/hpav_cfg.c
index 7cc53af..45d3f0a 100644
--- a/hpav_cfg.c
+++ b/hpav_cfg.c
@@ -53,8 +53,6 @@
#include <arpa/inet.h>
#include <net/if.h>
-#include <linux/if_ether.h>
-
#include "homeplug_av.h"
#include "crypto.h"
--
2.7.0.rc3

View File

@@ -0,0 +1,16 @@
config BR2_PACKAGE_FAIFA
bool "faifa"
select BR2_PACKAGE_LIBPCAP
depends on !BR2_STATIC_LIBS
depends on BR2_TOOLCHAIN_HAS_THREADS
help
Faifa can configure any Intellon-based Power Line
Communication device using Intellon INT5000 and INT6000
series chips (6000 and 6300 chips). It supports all
Intellon-specific management and control frames as well as
standard management frames.
https://dev.open-plc.org
comment "faifa needs a toolchain w/ dynamic library, threads"
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS

View File

@@ -0,0 +1,41 @@
################################################################################
#
# faifa
#
################################################################################
FAIFA_VERSION = v0.1
FAIFA_SITE = $(call github,ffainelli,faifa,$(FAIFA_VERSION))
FAIFA_INSTALL_STAGING = YES
FAIFA_DEPENDENCIES = libpcap host-autoconf
FAIFA_LICENSE = BSD-3c
FAIFA_LICENSE_FILES = COPYING
FAIFA_MAKE_OPTS += GIT_REV=$(FAIFA_VERSION)
# This package uses autoconf, but not automake, so we need to call
# their special autogen.sh script, and have custom target and staging
# installation commands.
define FAIFA_RUN_AUTOGEN
cd $(@D) && PATH=$(BR_PATH) ./autogen.sh
endef
FAIFA_PRE_CONFIGURE_HOOKS += FAIFA_RUN_AUTOGEN
define FAIFA_INSTALL_TARGET_CMDS
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
PREFIX=/usr \
STRIP=/bin/true \
DESTDIR=$(TARGET_DIR) \
install
endef
define FAIFA_INSTALL_STAGING_CMDS
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
PREFIX=/usr \
STRIP=/bin/true \
DESTDIR=$(STAGING_DIR) \
install
endef
$(eval $(autotools-package))