initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
@@ -0,0 +1,46 @@
From 73fa408f51ec25121075aaccac9c9db1c68567cd Mon Sep 17 00:00:00 2001
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Date: Thu, 12 Mar 2020 10:02:18 +0100
Subject: [PATCH] linux.c: fix musl build
Remove include on linux/if_link.h to avoid the following build failure
with musl:
In file included from /home/buildroot/autobuild/instance-2/output-1/host/i586-buildroot-linux-musl/sysroot/usr/include/linux/kernel.h:4,
from /home/buildroot/autobuild/instance-2/output-1/host/i586-buildroot-linux-musl/sysroot/usr/include/linux/netlink.h:4,
from /home/buildroot/autobuild/instance-2/output-1/host/i586-buildroot-linux-musl/sysroot/usr/include/linux/if_link.h:5,
from linux.c:21:
/home/buildroot/autobuild/instance-2/output-1/host/i586-buildroot-linux-musl/sysroot/usr/include/linux/sysinfo.h:7:8: error: redefinition of 'struct sysinfo'
struct sysinfo {
^~~~~~~
In file included from linux.c:19:
/home/buildroot/autobuild/instance-2/output-1/host/i586-buildroot-linux-musl/sysroot/usr/include/sys/sysinfo.h:10:8: note: originally defined here
struct sysinfo {
^~~~~~~
CC mini_snmpd-globals.o
Fixes:
- http://autobuild.buildroot.org/results/6903a0f685076b4a2c2824de6158da40e9e712d8
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Retrieved from:
https://github.com/troglobit/mini-snmpd/commit/73fa408f51ec25121075aaccac9c9db1c68567cd]
---
linux.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/linux.c b/linux.c
index a657912..86a7085 100644
--- a/linux.c
+++ b/linux.c
@@ -18,7 +18,6 @@
#include <netpacket/packet.h>
#include <sys/sysinfo.h>
#include <sys/socket.h>
-#include <linux/if_link.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/time.h>
--
2.25.1
+7
View File
@@ -0,0 +1,7 @@
config BR2_PACKAGE_MINI_SNMPD
bool "mini-snmpd"
help
Mini SNMPd is a minimal implementation targeted at small or
embedded UNIX systems with limited resources
http://troglobit.com/mini-snmpd.html
+2
View File
@@ -0,0 +1,2 @@
# Require client authentication, thus SNMP version 2c
EXTRA_PARAMS=-a
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 de00c475a3c70c56f3ee97cd683cb71009d3521d60b1f589c5a91b4671ede9f3 mini-snmpd-1.6.tar.gz
sha256 8a43b895972a24567297f44f35dab0f5f9ed3b7db6dac0bf6094075b27ab9d56 COPYING
+23
View File
@@ -0,0 +1,23 @@
################################################################################
#
# mini-snmpd
#
################################################################################
MINI_SNMPD_VERSION = 1.6
MINI_SNMPD_SITE = $(call github,troglobit,mini-snmpd,v$(MINI_SNMPD_VERSION))
MINI_SNMPD_LICENSE = GPL-2.0
MINI_SNMPD_LICENSE_FILES = COPYING
MINI_SNMPD_CPE_ID_VENDOR = minisnmpd_project
MINI_SNMPD_CPE_ID_PRODUCT = minisnmpd
MINI_SNMPD_AUTORECONF = YES
MINI_SNMPD_DEPENDENCIES = host-pkgconf
define MINI_SNMPD_INSTALL_ETC_DEFAULT
$(INSTALL) -D -m 644 package/mini-snmpd/mini-snmpd \
$(TARGET_DIR)/etc/default/mini-snmpd
endef
MINI_SNMPD_POST_INSTALL_TARGET_HOOKS += MINI_SNMPD_INSTALL_ETC_DEFAULT
$(eval $(autotools-package))