Skip to content

Commit ae1b6c2

Browse files
Only list the SPI ELF Bootloader as template for supported configurations.
1 parent 01b3115 commit ae1b6c2

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

lib/sw_apps/elf-bootloader/data/elf-bootloader.tcl

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,18 @@ proc swapp_is_supported_sw {} {
5555
if { $os != "standalone"} {
5656
error "This application is supported only on the standalone Board Support Package.";
5757
}
58+
59+
return 1;
5860
}
5961

60-
proc swapp_generate {} {
62+
proc swapp_get_supported_processors {} {
63+
return "microblaze";
64+
}
6165

66+
proc swapp_get_supported_os {} {
67+
return "standalone";
68+
}
69+
70+
proc swapp_generate {} {
71+
return;
6272
}

0 commit comments

Comments
 (0)