From ceff3de773b8ab452e43efe3a0f5c9ba92146fd2 Mon Sep 17 00:00:00 2001 From: Nava kishore Manne Date: Wed, 21 Oct 2015 15:29:48 +0530 Subject: [PATCH] Revert "sw_apps: freertos hello world app tcl is modified to add cortex-a53 support" This reverts commit e14fc5b34e0aaab92ab08d1067cf45953c105bac. --- .../data/freertos_hello_world.tcl | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/lib/sw_apps/freertos_hello_world/data/freertos_hello_world.tcl b/lib/sw_apps/freertos_hello_world/data/freertos_hello_world.tcl index 64d19237..2cac61ac 100755 --- a/lib/sw_apps/freertos_hello_world/data/freertos_hello_world.tcl +++ b/lib/sw_apps/freertos_hello_world/data/freertos_hello_world.tcl @@ -65,13 +65,9 @@ proc swapp_is_supported_hw {} { set hw_processor [common::get_property HW_INSTANCE $proc_instance] set proc_type [common::get_property IP_NAME [hsi::get_cells -hier $hw_processor]]; - set procdrv [::hsi::get_sw_processor] - set compiler [common::get_property CONFIG.compiler $procdrv] - if {[string compare -nocase $compiler "arm-none-eabi-gcc"] == 0} { - error "ERROR: FreeRTOS is not supported for 32bit A53" - } - if { $proc_type != "psu_cortexr5" && $proc_type != "ps7_cortexa9" && $proc_type != "psu_cortexa53" && $proc_type != "microblaze" } { - error "This application is supported only for CortexR5/CortexA9/CortexA53/MicroBlaze processors."; + + if { $proc_type != "psu_cortexr5" && $proc_type != "ps7_cortexa9" && $proc_type != "microblaze" } { + error "This application is supported only for CortexR5/CortexA9/MicroBlaze processors."; } return 1; @@ -95,7 +91,7 @@ proc swapp_get_linker_constraints {} { } proc swapp_get_supported_processors {} { - return "psu_cortexr5 ps7_cortexa9 psu_cortexa53 microblaze"; + return "psu_cortexr5 ps7_cortexa9 microblaze"; } proc swapp_get_supported_os {} {