lwip_echo_server: Add new procedures providing support info

Add two new procedures to provide information on what is supported by
lwip_echo_server:
swapp_get_supported_processors
swapp_get_supported_os

Signed-off-by: Harini Katakam <harinik@xilinx.com>
Reviewed-by: Punnaiah Choudary Kalluri <punnaia@xilinx.com>
This commit is contained in:
Harini Katakam 2015-10-05 16:17:07 +05:30 committed by Nava kishore Manne
parent 8b606d32ba
commit a82d03ddb7

View file

@ -348,3 +348,13 @@ proc swapp_generate {} {
proc swapp_get_linker_constraints {} {
return "stack 40k heap 40k"
}
proc swapp_get_supported_processors {} {
return "psu_cortexa53 psu_cortexr5 ps7_cortexa9 microblaze";
}
proc swapp_get_supported_os {} {
return "standalone freertos821_xilinx";
}