openamp_rpc_demo: Added new procedures for providing support info

Added below procedures in openamp_rpc_demo.tcl file,
swapp_get_supported_processors: This returns the list of processors supported for this application.
swapp_get_supported_os: This returns the list of OS supported for this application.

Signed-off-by: Anurag Kumar Vulisha <anuragku@xilinx.com>
Acked by: Kinjal Pravinbhai Patel <patelki@xilinx.com>
This commit is contained in:
Anurag Kumar Vulisha 2015-10-05 20:20:33 +05:30 committed by Nava kishore Manne
parent 15bb986169
commit 1b5e7fd767

View file

@ -98,3 +98,11 @@ proc swapp_get_linker_constraints {} {
# don't generate a linker script. fsbl has its own linker script
return "lscript no";
}
proc swapp_get_supported_processors {} {
return "psu_cortexr5";
}
proc swapp_get_supported_os {} {
return "standalone";
}