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.
This commit is contained in:
Earle F. Philhower, III 2023-06-15 07:53:25 -07:00 committed by GitHub
parent 88fa39165e
commit fbb0783eb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,7 +82,7 @@
pico_default_asm_setup
.section text
.section .text
regular_func _stage2_boot
push {lr}