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 e94589ed36c4a311355efc46ba3f76523c546057 Mon Sep 17 00:00:00 2001
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Date: Wed, 7 Aug 2019 16:17:16 +0200
Subject: [PATCH] Add RISC-V endian detection
3rdparty/msgpack-c/include/msgpack/predef/other/endian.h (which comes
from Boost) two ways of detecting the endianess:
(1) It includes <endian.h> if BOOST_LIB_C_GNU is defined, and then
use __BYTE_ORDER to decide the endianness.
(2) Otherwise, if (1) was not possible for some reason, it uses
architecture defines to decide the endianness.
(1) works perfectly fine with glibc toolchains, because
BOOST_LIB_C_GNU is defined, but it doesn't work with musl. Due to
this, <endian.h> is not included, __BYTE_ORDER is not defined, and
method (1) does not work, causing build failures on musl toolchains
that don't have explicit handling by architecture name (method 2).
So this commit fixes RISC-V musl build by adding support for the
__riscv architecture define, to determine that the endianness is
little endian.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
3rdparty/msgpack-c/include/msgpack/predef/other/endian.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/3rdparty/msgpack-c/include/msgpack/predef/other/endian.h b/3rdparty/msgpack-c/include/msgpack/predef/other/endian.h
index 3c609fa..63a5722 100644
--- a/3rdparty/msgpack-c/include/msgpack/predef/other/endian.h
+++ b/3rdparty/msgpack-c/include/msgpack/predef/other/endian.h
@@ -127,7 +127,8 @@ information and acquired knowledge:
defined(__AARCH64EL__) || \
defined(_MIPSEL) || \
defined(__MIPSEL) || \
- defined(__MIPSEL__)
+ defined(__MIPSEL__) || \
+ defined(__riscv)
# undef MSGPACK_ENDIAN_LITTLE_BYTE
# define MSGPACK_ENDIAN_LITTLE_BYTE MSGPACK_VERSION_NUMBER_AVAILABLE
# endif
--
2.21.0
@@ -0,0 +1,38 @@
From 9c2559434b752df3dc8460ee242d321670a40847 Mon Sep 17 00:00:00 2001
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Date: Mon, 1 Jun 2020 11:41:54 +0200
Subject: [PATCH] include/wampcc/platform.h: fix build with musl 1.2.0
Fix the following build failure on musl 1.2.0 due to time_t being on 64
bits:
/home/naourr/work/instance-0/output-1/build/wampcc-1.6/libs/wampcc/utils.cc: In function 'std::__cxx11::string wampcc::local_timestamp()':
/home/naourr/work/instance-0/output-1/build/wampcc-1.6/libs/wampcc/utils.cc:205:15: error: cannot convert 'wampcc::time_val::type_type*' {aka 'long int*'} to 'const time_t*' {aka 'const long long int*'}
localtime_r(&now.sec, &parts);
^~~~~~~~
Fixes:
- http://autobuild.buildroot.org/results/da996e189220499b85efbdb541a891ac18db38c6
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Upstream status: https://github.com/darrenjs/wampcc/pull/62]
---
include/wampcc/platform.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/wampcc/platform.h b/include/wampcc/platform.h
index 24d0868..aebf950 100644
--- a/include/wampcc/platform.h
+++ b/include/wampcc/platform.h
@@ -27,7 +27,7 @@ namespace wampcc
struct time_val
{
#ifndef _WIN32
- typedef long type_type;
+ typedef time_t type_type;
#else
typedef __time64_t type_type;
#endif
--
2.26.2
@@ -0,0 +1,27 @@
From eaa70a289288db1e8d90a2a9bcde435a8975fe74 Mon Sep 17 00:00:00 2001
From: Sergey Lukashevich <sergey.lukashevi4@gmail.com>
Date: Fri, 26 Jul 2019 21:58:34 +0300
Subject: [PATCH] Broken build on Windows: "http_parser.h(66,18): error C2039:
'runtime_error': is not a member of 'std'"
Add missing <stdexcept> include.
[Retrieved from:
https://github.com/darrenjs/wampcc/commit/eaa70a289288db1e8d90a2a9bcde435a8975fe74]
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
include/wampcc/http_parser.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/wampcc/http_parser.h b/include/wampcc/http_parser.h
index a9405dd..4c20417 100644
--- a/include/wampcc/http_parser.h
+++ b/include/wampcc/http_parser.h
@@ -11,6 +11,7 @@
#include <map>
#include <string>
#include <memory>
+#include <stdexcept>
// types brought in from nodejs http-parser project
struct http_parser;
+30
View File
@@ -0,0 +1,30 @@
config BR2_PACKAGE_WAMPCC
bool "wampcc"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv
depends on BR2_USE_MMU # libuv
depends on !BR2_STATIC_LIBS # libuv
depends on BR2_TOOLCHAIN_HAS_ATOMIC
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libuv
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::shared_future
select BR2_PACKAGE_LIBUV
select BR2_PACKAGE_JANSSON
select BR2_PACKAGE_OPENSSL
help
wampcc is a C++ library that implements the Web Application
Messaging Protocol.
https://github.com/darrenjs/wampcc
comment "wampcc needs a toolchain w/ C++, NPTL, dynamic library"
depends on BR2_USE_MMU
depends on BR2_TOOLCHAIN_HAS_ATOMIC
depends on BR2_TOOLCHAIN_HAS_SYNC_4
depends on !BR2_INSTALL_LIBSTDCPP || \
!BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
comment "wampcc needs a toolchain not affected by GCC bug 64735"
depends on BR2_USE_MMU
depends on BR2_TOOLCHAIN_HAS_ATOMIC
depends on BR2_TOOLCHAIN_HAS_SYNC_4
depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 b3c3633b4c6a74d7ac8a676a7ea30fbfde7ae19aa1fc37de3b8aa3a553b674a2 wampcc-1.6.tar.gz
sha256 bd185b1ec8a292d42b42346757ff6e198073e13c1e080e9ea548d34dd42d30d8 LICENSE
+19
View File
@@ -0,0 +1,19 @@
################################################################################
#
# wampcc
#
################################################################################
WAMPCC_VERSION = 1.6
WAMPCC_SITE = $(call github,darrenjs,wampcc,v$(WAMPCC_VERSION))
WAMPCC_DEPENDENCIES = host-pkgconf libuv jansson openssl
WAMPCC_INSTALL_STAGING = YES
WAMPCC_LICENSE = MIT
WAMPCC_LICENSE_FILES = LICENSE
# Uses __atomic_fetch_add_8
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
WAMPCC_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-latomic
endif
$(eval $(cmake-package))