From de365de89b2f0f86aaad0cd7fdee5b55836e4c33 Mon Sep 17 00:00:00 2001 From: Sarat Chand Savitala Date: Mon, 6 Apr 2015 19:32:59 +0530 Subject: [PATCH] sw_apps:zynqmp_fsbl: Check for supported OS platform This patch adds call to check the supported OS platform when application is Zynq MP FSBL. This enables correct error message to be displayed when trying to create FSBL project with OS platform other than Standalone. Signed-off-by: Sarat Chand Savitala --- lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl b/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl index d87661f5..47b13294 100755 --- a/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl +++ b/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl @@ -56,7 +56,7 @@ proc check_standalone_os {} { proc swapp_is_supported_sw {} { # make sure we are using standalone OS - #check_standalone_os; + check_standalone_os; # make sure xilffs is available set librarylist [get_libs -filter "NAME==xilffs"];