sw_apps:zynq_fsbl: Added tcl procedures to validate processor and os

tcl procedures are added to facilitate validating the supported processor(s) and
os platform by FSBL.

Signed-off-by: Sarat Chand Savitala <saratcha@xilinx.com>
Acked-by: Srikanth Vemula <svemula@xilinx.com>
This commit is contained in:
Sarat Chand Savitala 2015-10-06 23:02:12 +05:30 committed by Nava kishore Manne
parent f6f21678a4
commit b92ef0b31e

View file

@ -9,6 +9,14 @@ proc swapp_get_description {} {
and each partition can be a code image or a bit stream.";
}
proc swapp_get_supported_processors {} {
return "ps7_cortexa9";
}
proc swapp_get_supported_os {} {
return "standalone";
}
proc check_standalone_os {} {
set oslist [hsi::get_os];