rsa_auth_app: Added new procedures for providing support info

Added below procedures in rsa_auth_app.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: Punnaiah Choudary Kalluri <punnaia@xilinx.com>
This commit is contained in:
Anurag Kumar Vulisha 2015-10-07 12:14:02 +05:30 committed by Nava kishore Manne
parent 2a85a408e8
commit 1856379a9c

View file

@ -80,3 +80,10 @@ proc swapp_get_linker_constraints {} {
return "";
}
proc swapp_get_supported_processors {} {
return "ps7_cortexa9";
}
proc swapp_get_supported_os {} {
return "standalone";
}