Skip to content

Commit 8fc4685

Browse files
committed
Merge branch '✅-sbi-entry' into 🦆
2 parents 171289c + d2d1179 commit 8fc4685

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/actions/install-qemu/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: r3-install-qemu
2-
description: Install QEMU 5.1.0 from Source
2+
description: Install QEMU from source
33
inputs:
44
version:
55
description: QEMU version to install
66
required: true
7-
default: 6.1.0
7+
default: 7.0.0
88
target-list:
99
description: List of targets to build
1010
required: true

src/r3_port_riscv_test_driver/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ macro_rules! instantiate_test {
9090
port::use_rt!(unsafe SystemTraits);
9191

9292
#[cfg(feature = "boot-minimal-s")]
93+
#[link_section = ".text_pre"]
9394
#[no_mangle]
9495
#[naked]
9596
extern "C" fn start() {

src/r3_test_runner/src/targets.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ impl LinkerScripts {
8181
8282
.text :
8383
{
84+
KEEP(*(.text_pre .text_pre.*));
8485
*(.text .text.*);
8586
. = ALIGN(4);
8687
__etext = .;

0 commit comments

Comments
 (0)