mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00

* mpc85xx: add support for cpu type 8548 8540 cpu type corresponds to e500v1 core while 8548 cpu type corresponds to e500v2 core See https://www.nxp.com/products/processors-and-microcontrollers/legacy-mpu-mcus/powerquicc-processors:POWERQUICC_HOME#powerquicc-iii-mpc85xx and https://www.nxp.com/docs/en/application-note/AN2807.pdf . Co-authored-by: Josef Schlehofer <josef.schlehofer@nic.cz> Co-authored-by: Pali Rohár <pali@kernel.org> Signed-off-by: Šimon Bořek <simon.borek@nic.cz> * tree-wide: Do not use package librt and libpthread The libraries libpthread, libdl, libutil, libanl have been integrated into the libc library in version 2.34. it is not needed to explicitly link them any more. Most of the functions have been moved from the librt.so into libc.so some time ago already. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> * toolchain/binutils: backport stable patches Add the patches with real changes from the binutils 2.39 stable branch. I am not aware that we ran into any of these problems, but I think it is better to take the existing stable patches. They were exported like this: git format-patch binutils-2_39...origin/binutils-2_39-branch I removed the patches changing the version numbers only. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> * toolchain/binutils: switch to version 2.39 by default This was build tested with all core packages on all targets successfully. This was run tested on the following systems: * lantiq/xrx200 musl * sunxi/cortex53 musl * x86/64 musl * x86/64 glibc Some trusted firmware arm builds needed some fixes to build with binutils 2.39, this was merged before. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> * tools: Improve diffability/maintainability There's no purpose to squish multiple tools into a single line (and spread those out over multiple lines). It might look 'nice' in certain conditions, but it's annoying to maintain. For example, but not limited to: * adding/removing tools, causes hard to read diffs * Duplicates are harder to spot * Sorting can not be (easily?) automated With this proposed change, the above annoyances go away. Inserting a new tool can be done with a single line-change-diff, sorting can be done by any editor (in vi, select, :sort for example) and dupes are much easier to spot. Signed-off-by: Olliver Schinagl <oliver@schinagl.nl> * rules: drop -Wno-error additional flags from default TARGET_CFLAGS We currently enable -Wno-error=unused-but-set-variable and -Wno-error=unused-result by default on every compile package. While this is (relatively) unharmful, we should follow other project direction and starts enforcing good code quality. For example the linux kernel recently started to enforce Wall by default and clean code is mandatory for inclusion. Drop for good these flags and and make it mandatory to correctly handle return values at least with a warning log if they are not strictly error condition. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com> * bridger: update to the latest version def7755c459d add missing copyright headers f68307fd96d7 add hairpin mode support 9ee8f433ba4e nl: do not pass NDA_VLAN with vid=0 978c1f9eed07 add support for the bridge port isolated flag Signed-off-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Šimon Bořek <simon.borek@nic.cz> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Signed-off-by: Olliver Schinagl <oliver@schinagl.nl> Signed-off-by: Christian Marangi <ansuelsmth@gmail.com> Signed-off-by: Felix Fietkau <nbd@nbd.name> Co-authored-by: Šimon Bořek <simon.borek@nic.cz> Co-authored-by: Josef Schlehofer <josef.schlehofer@nic.cz> Co-authored-by: Pali Rohár <pali@kernel.org> Co-authored-by: Hauke Mehrtens <hauke@hauke-m.de> Co-authored-by: Olliver Schinagl <oliver@schinagl.nl> Co-authored-by: Christian Marangi <ansuelsmth@gmail.com> Co-authored-by: Felix Fietkau <nbd@nbd.name>
90 lines
2.6 KiB
Diff
90 lines
2.6 KiB
Diff
From a98316d5cf970cbc99689797d84c2ea832bcdcbb Mon Sep 17 00:00:00 2001
|
|
From: "H.J. Lu" <hjl.tools@gmail.com>
|
|
Date: Mon, 1 Aug 2022 16:02:39 -0700
|
|
Subject: [PATCH 058/160] elf: Reset alignment for each PT_LOAD segment
|
|
|
|
Reset alignment for each PT_LOAD segment to avoid using alignment from
|
|
the previous PT_LOAD segment.
|
|
|
|
bfd/
|
|
|
|
PR ld/29435
|
|
* elf.c (assign_file_positions_for_load_sections): Reset
|
|
alignment for each PT_LOAD segment.
|
|
|
|
ld/
|
|
|
|
PR ld/29435
|
|
* testsuite/ld-elf/pr29435.d: New file.
|
|
* testsuite/ld-elf/pr29435.s: Likewise.
|
|
|
|
(cherry picked from commit 59f214544c50ec7ebbca285ff2b4949f48671690)
|
|
---
|
|
bfd/elf.c | 7 ++++---
|
|
ld/testsuite/ld-elf/pr29435.d | 11 +++++++++++
|
|
ld/testsuite/ld-elf/pr29435.s | 6 ++++++
|
|
3 files changed, 21 insertions(+), 3 deletions(-)
|
|
create mode 100644 ld/testsuite/ld-elf/pr29435.d
|
|
create mode 100644 ld/testsuite/ld-elf/pr29435.s
|
|
|
|
--- a/bfd/elf.c
|
|
+++ b/bfd/elf.c
|
|
@@ -5438,8 +5438,6 @@ assign_file_positions_for_load_sections
|
|
Elf_Internal_Phdr *p;
|
|
file_ptr off; /* Octets. */
|
|
bfd_size_type maxpagesize;
|
|
- bfd_size_type p_align;
|
|
- bool p_align_p = false;
|
|
unsigned int alloc, actual;
|
|
unsigned int i, j;
|
|
struct elf_segment_map **sorted_seg_map;
|
|
@@ -5524,7 +5522,6 @@ assign_file_positions_for_load_sections
|
|
qsort (sorted_seg_map, alloc, sizeof (*sorted_seg_map),
|
|
elf_sort_segments);
|
|
|
|
- p_align = bed->p_align;
|
|
maxpagesize = 1;
|
|
if ((abfd->flags & D_PAGED) != 0)
|
|
{
|
|
@@ -5559,6 +5556,8 @@ assign_file_positions_for_load_sections
|
|
asection **secpp;
|
|
bfd_vma off_adjust; /* Octets. */
|
|
bool no_contents;
|
|
+ bfd_size_type p_align;
|
|
+ bool p_align_p;
|
|
|
|
/* An ELF segment (described by Elf_Internal_Phdr) may contain a
|
|
number of sections with contents contributing to both p_filesz
|
|
@@ -5569,6 +5568,8 @@ assign_file_positions_for_load_sections
|
|
p = phdrs + m->idx;
|
|
p->p_type = m->p_type;
|
|
p->p_flags = m->p_flags;
|
|
+ p_align = bed->p_align;
|
|
+ p_align_p = false;
|
|
|
|
if (m->count == 0)
|
|
p->p_vaddr = m->p_vaddr_offset * opb;
|
|
--- /dev/null
|
|
+++ b/ld/testsuite/ld-elf/pr29435.d
|
|
@@ -0,0 +1,11 @@
|
|
+#ld: -shared -z separate-code -z relro
|
|
+#xfail: ![check_shared_lib_support]
|
|
+#xfail: ![check_relro_support]
|
|
+#readelf: -Wl
|
|
+
|
|
+#failif
|
|
+#...
|
|
+ +LOAD +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ .* 0x8000
|
|
+#...
|
|
+ +LOAD +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ .* 0x8000
|
|
+#...
|
|
--- /dev/null
|
|
+++ b/ld/testsuite/ld-elf/pr29435.s
|
|
@@ -0,0 +1,6 @@
|
|
+ .text
|
|
+ .balign 0x8000
|
|
+ .globl foo
|
|
+ .type foo, %function
|
|
+foo:
|
|
+ .byte 0
|