Bump buildroot to 2020.11-rc1 (#985)
* Update buildroot-patches for 2020.11-rc1 buildroot * Update buildroot to 2020.11-rc1 Signed-off-by: Stefan Agner <stefan@agner.ch> * Don't rely on sfdisk --list-free output The --list-free (-F) argument does not allow machine readable mode. And it seems that the output format changes over time (different spacing, using size postfixes instead of raw blocks). Use sfdisk json output and calculate free partition space ourselfs. This works for 2.35 and 2.36 and is more robust since we rely on output which is meant for scripts to parse. * Migrate defconfigs for Buildroot 2020.11-rc1 In particular, rename BR2_TARGET_UBOOT_BOOT_SCRIPT(_SOURCE) to BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT(_SOURCE). * Rebase/remove systemd patches for systemd 246 * Drop apparmor/libapparmor from buildroot-external * hassos-persists: use /run as directory for lockfiles The U-Boot tools use /var/lock by default which is not created any more by systemd by default (it is under tmpfiles legacy.conf, which we no longer install). * Disable systemd-update-done.service The service is not suited for pure read-only systems. In particular the service needs to be able to write a file in /etc and /var. Remove the service. Note: This is a static service and cannot be removed using systemd-preset. * Disable apparmor.service for now The service loads all default profiles. Some might actually cause problems. E.g. the profile for ping seems not to match our setup for /etc/resolv.conf: [85503.634653] audit: type=1400 audit(1605286002.684:236): apparmor="DENIED" operation="open" profile="ping" name="/run/resolv.conf" pid=27585 comm="ping" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
This commit is contained in:
@@ -1,31 +0,0 @@
|
||||
From f87ae3963e651fe9f4b3125192c77aae86c007e0 Mon Sep 17 00:00:00 2001
|
||||
From: Patrick Havelange <patrick.havelange@essensium.com>
|
||||
Date: Mon, 21 Jan 2019 09:49:23 +0100
|
||||
Subject: [PATCH] Force to keep TPipedTransport::peek() to avoid linker error.
|
||||
|
||||
Otherwise got the "defined in discarded section" linker error
|
||||
with x86-64-musl toolchain. This is probably a toolchain issue - the
|
||||
compiler shouldn't remove that function.
|
||||
|
||||
Signed-off-by: Patrick Havelange <patrick.havelange@essensium.com>
|
||||
Upstream-status: Not Applicable
|
||||
---
|
||||
lib/cpp/src/thrift/transport/TTransportUtils.h | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/lib/cpp/src/thrift/transport/TTransportUtils.h b/lib/cpp/src/thrift/transport/TTransportUtils.h
|
||||
index f3b4c5a..7589182 100644
|
||||
--- a/lib/cpp/src/thrift/transport/TTransportUtils.h
|
||||
+++ b/lib/cpp/src/thrift/transport/TTransportUtils.h
|
||||
@@ -114,7 +114,7 @@ public:
|
||||
|
||||
bool isOpen() { return srcTrans_->isOpen(); }
|
||||
|
||||
- bool peek() {
|
||||
+ bool __attribute__ ((used)) peek() {
|
||||
if (rPos_ >= rLen_) {
|
||||
// Double the size of the underlying buffer if it is full
|
||||
if (rLen_ == rBufSize_) {
|
||||
--
|
||||
2.17.1
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# From https://www.apache.org/dist/thrift/0.12.0/thrift-0.12.0.tar.gz.sha256
|
||||
sha256 c336099532b765a6815173f62df0ed897528a9d551837d627c1f87fadad90428 thrift-0.12.0.tar.gz
|
||||
# From https://www.apache.org/dist/thrift/0.13.0/thrift-0.13.0.tar.gz.sha256
|
||||
sha256 7ad348b88033af46ce49148097afe354d513c1fca7c607b59c33ebb6064b5179 thrift-0.13.0.tar.gz
|
||||
# License files, locally calculated
|
||||
sha256 23df881cec3192d1f4474633c14eb2ec30a45b84f8daeb82b9de5d2bd3ac8218 LICENSE
|
||||
sha256 23df881cec3192d1f4474633c14eb2ec30a45b84f8daeb82b9de5d2bd3ac8218 LICENSE
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
THRIFT_VERSION = 0.12.0
|
||||
THRIFT_VERSION = 0.13.0
|
||||
THRIFT_SITE = http://www.us.apache.org/dist/thrift/$(THRIFT_VERSION)
|
||||
THRIFT_LICENSE = Apache-2.0
|
||||
THRIFT_LICENSE_FILES = LICENSE
|
||||
|
||||
Reference in New Issue
Block a user