From 05ce8ca682550a8ae87c4918d86baf37e1dd6f37 Mon Sep 17 00:00:00 2001 From: Anurag Kumar Vulisha Date: Mon, 5 Oct 2015 20:20:31 +0530 Subject: [PATCH] openamp_echo_test: Added new procedures for providing support info Added new procedures in openamp_echo_test.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 Acked by: Kinjal Pravinbhai Patel --- lib/sw_apps/openamp_echo_test/data/openamp_echo_test.tcl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/sw_apps/openamp_echo_test/data/openamp_echo_test.tcl b/lib/sw_apps/openamp_echo_test/data/openamp_echo_test.tcl index 6c574e9d..da30c118 100755 --- a/lib/sw_apps/openamp_echo_test/data/openamp_echo_test.tcl +++ b/lib/sw_apps/openamp_echo_test/data/openamp_echo_test.tcl @@ -112,3 +112,11 @@ proc swapp_get_linker_constraints {} { # don't generate a linker script. fsbl has its own linker script return "lscript no"; } + +proc swapp_get_supported_processors {} { + return "psu_cortexr5"; +} + +proc swapp_get_supported_os {} { + return "freertos821_xilinx standalone"; +}