Update buildroot to 2024.02.2, kernel to 6.6.2, GPU & DRM drivers, nwipe to v0.37 plus many others.

This commit is contained in:
PartialVolume
2024-05-17 17:38:43 +01:00
parent bb87d66c65
commit c000e2a83d
3975 changed files with 50769 additions and 113784 deletions

View File

@@ -0,0 +1,11 @@
config BR2_PACKAGE_HOST_SDBUS_CPP
bool "host sdbus-c++"
depends on BR2_HOST_GCC_AT_LEAST_7
help
sdbus-c++ is a high-level C++ D-Bus library for Linux
designed to provide expressive, easy-to-use API in modern C++.
This will build the stub code generator for the adaptor and
proxy interfaces from D-Bus IDL.
https://github.com/Kistler-Group/sdbus-cpp

View File

@@ -1,4 +1,4 @@
# Locally computed:
sha256 7f7231904abb6a996b8c18ddc5fb50078ef5dff5191649abf9f127aff41d24e9 v1.2.0.tar.gz
sha256 ca7405c7f0f9ae3023dcfa37bc68974c4b8a1c9ea2909b970e0aedc3e8657ee6 sdbus-cpp-1.4.0.tar.gz
sha256 20c17d8b8c48a600800dfd14f95d5cb9ff47066a9641ddeab48dc54aec96e331 COPYING
sha256 be43debbf06a38325616054a39e44ed5afde4ed21b99de197488a4a306d47e39 COPYING-LGPL-Exception
sha256 a1c9e75e25d8f2ce18017c88978edab2f0dbc7814ad0697d4ff2e5e59959f657 COPYING-LGPL-Exception

View File

@@ -4,12 +4,20 @@
#
################################################################################
SDBUS_CPP_VERSION = 1.2.0
SDBUS_CPP_SOURCE = v$(SDBUS_CPP_VERSION).tar.gz
SDBUS_CPP_VERSION = 1.4.0
SDBUS_CPP_SITE = $(call github,Kistler-Group,sdbus-cpp,v$(SDBUS_CPP_VERSION))
SDBUS_CPP_INSTALL_STAGING = YES
SDBUS_CPP_DEPENDENCIES = host-pkgconf systemd
SDBUS_CPP_LICENSE = LGPL-2.1+ with exception (headers)
SDBUS_CPP_LICENSE_FILES = COPYING COPYING-LGPL-Exception
# Host build for sdbus-c++-xml2cpp
HOST_SDBUS_CPP_DEPENDENCIES = host-pkgconf host-systemd
HOST_SDBUS_CPP_CONF_OPTS = \
-DBUILD_CODE_GEN=ON \
-DBUILD_DOC=OFF \
-DBUILD_TESTS=OFF \
-DBUILD_LIBSYSTEMD=OFF
$(eval $(cmake-package))
$(eval $(host-cmake-package))