sw_apps: modified openamp matrix multiply for proper OS check

This patch modifies openamp matrix multiply application tcl file
to check if OS is standalone or freertos for which the application
is being built

Signed-off-by: Kinjal Pravinbhai Patel <patelki@xilinx.com>
Acked by: Anirudha Sarangi <anirudh@xilinx.com>
This commit is contained in:
Kinjal Pravinbhai Patel 2015-08-20 16:23:07 +05:30 committed by Nava kishore Manne
parent 1f48a8019c
commit b38a8677a2

View file

@ -46,7 +46,7 @@ proc check_standalone_os {} {
}
set os [lindex $oslist 0];
if {{ $os != "standalone" } || { $os != "freertos821_xilinx" }} {
if { ( $os != "standalone" ) && ( $os != "freertos821_xilinx" ) } {
error "This application is supported only on the Standalone Board Support Package and freertos821.";
}
}