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:
parent
1f48a8019c
commit
b38a8677a2
1 changed files with 1 additions and 1 deletions
|
@ -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.";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue