externalize wipe sdcard (#2502)

This commit is contained in:
gullradriel
2025-01-27 22:10:33 +01:00
committed by GitHub
parent aef7c2be93
commit 8dc3851b55
10 changed files with 69 additions and 8 deletions
+6
View File
@@ -61,6 +61,7 @@ MEMORY
ram_external_app_app_manager(rwx) : org = 0xADD40000, len = 32k
ram_external_app_antenna_length(rwx) : org = 0xADD50000, len = 32k
ram_external_app_view_wav(rwx) : org = 0xADD60000, len = 32k
ram_external_app_sd_wipe(rwx) : org = 0xADD70000, len = 32k
}
SECTIONS
@@ -294,4 +295,9 @@ SECTIONS
*(*ui*external_app*view_wav*);
} > ram_external_app_view_wav
.external_app_sd_wipe : ALIGN(4) SUBALIGN(4)
{
KEEP(*(.external_app.app_sd_wipe.application_information));
*(*ui*external_app*sd_wipe*);
} > ram_external_app_sd_wipe
}