rp: add precompiled boot2 to avoid depending on gcc

This commit is contained in:
Dario Nieuwenhuis
2021-03-29 22:28:36 +02:00
parent 4371302da8
commit d938b95430
8 changed files with 31 additions and 25 deletions

8
embassy-rp/link-rp.x.in Normal file
View File

@ -0,0 +1,8 @@
SECTIONS {
/* ### Boot loader */
.boot2 ORIGIN(BOOT2) :
{
KEEP(*(.boot2));
} > BOOT2
}