From 1856379a9c7cd81e8bece76f4e991561d388099d Mon Sep 17 00:00:00 2001 From: Anurag Kumar Vulisha Date: Wed, 7 Oct 2015 12:14:02 +0530 Subject: [PATCH] rsa_auth_app: Added new procedures for providing support info Added below procedures in rsa_auth_app.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: Punnaiah Choudary Kalluri --- lib/sw_apps/rsa_auth_app/data/rsa_auth_app.tcl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/sw_apps/rsa_auth_app/data/rsa_auth_app.tcl b/lib/sw_apps/rsa_auth_app/data/rsa_auth_app.tcl index ca70be6e..219418b9 100755 --- a/lib/sw_apps/rsa_auth_app/data/rsa_auth_app.tcl +++ b/lib/sw_apps/rsa_auth_app/data/rsa_auth_app.tcl @@ -80,3 +80,10 @@ proc swapp_get_linker_constraints {} { return ""; } +proc swapp_get_supported_processors {} { + return "ps7_cortexa9"; +} + +proc swapp_get_supported_os {} { + return "standalone"; +}