* 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
102 lines
2.7 KiB
Diff
102 lines
2.7 KiB
Diff
From ad8464f799a4c96c7ab8bdfec3f95846cf54f9b0 Mon Sep 17 00:00:00 2001
|
|
From: Sebastian Huber <sebastian.huber@embedded-brains.de>
|
|
Date: Wed, 1 Jul 2020 19:29:55 +0200
|
|
Subject: [PATCH] sim/ppc: Fix linker error with -fno-common
|
|
|
|
GCC 10 enables -fno-common by default. This resulted in a multiple
|
|
definition linker error since global variables were declared and defined
|
|
in a header file:
|
|
|
|
ld: ld-insn.o:sim/ppc/ld-insn.h:221: multiple definition of
|
|
`max_model_fields_len'; igen.o:sim/ppc/ld-insn.h:221: first defined here
|
|
|
|
sim/ppc
|
|
|
|
* ld-insn.h (last_model, last_model_data, last_model_function,
|
|
last_model_internal, last_model_macro, last_model_static):
|
|
Delete.
|
|
(max_model_fields_len, model_data, model_functions,
|
|
model_internal, model_macros, model_static, models): Declare, but do not
|
|
define.
|
|
* ld-insn.c (last_model, last_model_data, last_model_function,
|
|
last_model_internal, last_model_macro, last_model_static,
|
|
max_model_fields_len, model_data, model_functions,
|
|
model_internal, model_macros, model_static, models): Define.
|
|
|
|
Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
|
|
Fetch from: https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=ad8464f799a4c96c7ab8bdfec3f95846cf54f9b0
|
|
---
|
|
sim/ppc/ld-insn.c | 18 ++++++++++++++++++
|
|
sim/ppc/ld-insn.h | 24 +++++++-----------------
|
|
2 files changed, 25 insertions(+), 17 deletions(-)
|
|
|
|
diff --git a/sim/ppc/ld-insn.c b/sim/ppc/ld-insn.c
|
|
index e39131ca133..585071a861f 100644
|
|
--- a/sim/ppc/ld-insn.c
|
|
+++ b/sim/ppc/ld-insn.c
|
|
@@ -28,6 +28,24 @@
|
|
|
|
#include "igen.h"
|
|
|
|
+static model *last_model;
|
|
+
|
|
+static insn *last_model_macro;
|
|
+static insn *last_model_function;
|
|
+static insn *last_model_internal;
|
|
+static insn *last_model_static;
|
|
+static insn *last_model_data;
|
|
+
|
|
+model *models;
|
|
+
|
|
+insn *model_macros;
|
|
+insn *model_functions;
|
|
+insn *model_internal;
|
|
+insn *model_static;
|
|
+insn *model_data;
|
|
+
|
|
+int max_model_fields_len;
|
|
+
|
|
static void
|
|
update_depth(insn_table *entry,
|
|
lf *file,
|
|
diff --git a/sim/ppc/ld-insn.h b/sim/ppc/ld-insn.h
|
|
index 88318ffa2b3..52baeaa2d84 100644
|
|
--- a/sim/ppc/ld-insn.h
|
|
+++ b/sim/ppc/ld-insn.h
|
|
@@ -200,25 +200,15 @@ extern insn_table *load_insn_table
|
|
table_include *includes,
|
|
cache_table **cache_rules);
|
|
|
|
-model *models;
|
|
-model *last_model;
|
|
+extern model *models;
|
|
|
|
-insn *model_macros;
|
|
-insn *last_model_macro;
|
|
+extern insn *model_macros;
|
|
+extern insn *model_functions;
|
|
+extern insn *model_internal;
|
|
+extern insn *model_static;
|
|
+extern insn *model_data;
|
|
|
|
-insn *model_functions;
|
|
-insn *last_model_function;
|
|
-
|
|
-insn *model_internal;
|
|
-insn *last_model_internal;
|
|
-
|
|
-insn *model_static;
|
|
-insn *last_model_static;
|
|
-
|
|
-insn *model_data;
|
|
-insn *last_model_data;
|
|
-
|
|
-int max_model_fields_len;
|
|
+extern int max_model_fields_len;
|
|
|
|
extern void insn_table_insert_insn
|
|
(insn_table *table,
|
|
--
|
|
2.18.4
|
|
|