From: "Alex Bennée" <alex.bennee@linaro.org>
To: qemu-devel@nongnu.org
Cc: "Gustavo Romero" <gustavo.romero@linaro.org>,
"Richard Henderson" <richard.henderson@linaro.org>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Peter Maydell" <peter.maydell@linaro.org>,
qemu-arm@nongnu.org (open list:ARM TCG CPUs)
Subject: [PULL 09/10] tests/tcg/aarch64: Improve linker script organization
Date: Wed, 11 Sep 2024 07:46:44 +0100 [thread overview]
Message-ID: <20240911064645.357592-10-alex.bennee@linaro.org> (raw)
In-Reply-To: <20240911064645.357592-1-alex.bennee@linaro.org>
From: Gustavo Romero <gustavo.romero@linaro.org>
Improve kernel.ld linker script organization by using MEMORY command.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
Message-Id: <20240906143316.657436-5-gustavo.romero@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240910173900.4154726-10-alex.bennee@linaro.org>
diff --git a/tests/tcg/aarch64/system/kernel.ld b/tests/tcg/aarch64/system/kernel.ld
index 7b3a76dcbf..5f39258d32 100644
--- a/tests/tcg/aarch64/system/kernel.ld
+++ b/tests/tcg/aarch64/system/kernel.ld
@@ -1,23 +1,23 @@
ENTRY(__start)
-SECTIONS
-{
- /* virt machine, RAM starts at 1gb */
- . = (1 << 30);
+MEMORY {
+ /* On virt machine RAM starts at 1 GiB. */
+
+ /* Align text and rodata to the 1st 2 MiB chunk. */
+ TXT (rx) : ORIGIN = 1 << 30, LENGTH = 2M
+ /* Align r/w data to the 2nd 2 MiB chunk. */
+ DAT (rw) : ORIGIN = (1 << 30) + 2M, LENGTH = 2M
+}
+
+SECTIONS {
.text : {
*(.text)
- }
- .rodata : {
*(.rodata)
- }
- /* align r/w section to next 2mb */
- . = ALIGN(1 << 21);
+ } >TXT
.data : {
*(.data)
- }
- .bss : {
*(.bss)
- }
+ } >DAT
/DISCARD/ : {
*(.ARM.attributes)
}
--
2.39.2
next prev parent reply other threads:[~2024-09-11 6:47 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-11 6:46 [PULL 00/10] testing and gdbstub updates Alex Bennée
2024-09-11 6:46 ` [PULL 01/10] tests/docker: remove debian-armel-cross Alex Bennée
2024-09-11 6:46 ` [PULL 02/10] tests/docker: update debian i686 and mipsel images to bookworm Alex Bennée
2024-09-11 6:46 ` [PULL 03/10] tests/docker: use debian-all-test-cross for mips64el tests Alex Bennée
2024-09-11 6:46 ` [PULL 04/10] docs/devel: fix duplicate line Alex Bennée
2024-09-11 6:46 ` [PULL 05/10] scripts/ci: update the gitlab-runner playbook Alex Bennée
2024-09-11 6:46 ` [PULL 06/10] gdbstub: Use specific MMU index when probing MTE addresses Alex Bennée
2024-09-11 6:46 ` [PULL 07/10] gdbstub: Add support for MTE in system mode Alex Bennée
2024-09-11 6:46 ` [PULL 08/10] tests/guest-debug: Support passing arguments to the GDB test script Alex Bennée
2024-09-11 6:46 ` Alex Bennée [this message]
2024-09-11 6:46 ` [PULL 10/10] tests/tcg/aarch64: Extend MTE gdbstub tests to system mode Alex Bennée
2024-09-11 18:27 ` [PULL 00/10] testing and gdbstub updates Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240911064645.357592-10-alex.bennee@linaro.org \
--to=alex.bennee@linaro.org \
--cc=gustavo.romero@linaro.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).