From fbb0783eb51228ae11bac2700bdacd0ea58bccdd Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Thu, 15 Jun 2023 07:53:25 -0700 Subject: [PATCH] Fix boot2_is25lp080.S section naming (#1430) When the BOOT2.S files were updated, the section name in the IS25LP080 code was set to "text" and not ".text". The missing "." causes the actual boot code to be thrown out since the rest of the infrastructure expects "section .text" and not "section text" Re-add the missing period. --- src/rp2_common/boot_stage2/boot2_is25lp080.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rp2_common/boot_stage2/boot2_is25lp080.S b/src/rp2_common/boot_stage2/boot2_is25lp080.S index e2c24d42..80b7a74a 100644 --- a/src/rp2_common/boot_stage2/boot2_is25lp080.S +++ b/src/rp2_common/boot_stage2/boot2_is25lp080.S @@ -82,7 +82,7 @@ pico_default_asm_setup -.section text +.section .text regular_func _stage2_boot push {lr}