Skip to content

Commit fbb0783

Browse files
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.
1 parent 88fa391 commit fbb0783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rp2_common/boot_stage2/boot2_is25lp080.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282

8383
pico_default_asm_setup
8484

85-
.section text
85+
.section .text
8686
regular_func _stage2_boot
8787
push {lr}
8888

0 commit comments

Comments
 (0)