From 15a263f453695fd1ec2f02d584c2f57d8d3d5ccc Mon Sep 17 00:00:00 2001 From: Harrison Mutai Date: Thu, 18 Feb 2021 10:24:08 +0000 Subject: [PATCH 1/2] Add bare metal support to Renesas targets Modify RZ_A1XX and RZ_A2XX target configurations to include bare metal as a supported profile,and add list of supported standard libraries. Changes affect the following targets: RZ_A1H, GR_LYCHEE, GR_MANGO. --- targets/targets.json | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/targets/targets.json b/targets/targets.json index 76f7fd73d0..c4a4d10506 100644 --- a/targets/targets.json +++ b/targets/targets.json @@ -4841,6 +4841,17 @@ "program_cycle_s": 2, "overrides": { "network-default-interface-type": "ETHERNET" + }, + "supported_application_profiles" : ["full", "bare-metal"], + "supported_c_libs": { + "arm": [ + "std", + "small" + ], + "gcc_arm": [ + "std", + "small" + ] } }, "RZ_A1H": { @@ -4956,7 +4967,18 @@ "STDIO_MESSAGES", "USBDEVICE" ], - "program_cycle_s": 2 + "program_cycle_s": 2, + "supported_application_profiles" : ["full", "bare-metal"], + "supported_c_libs": { + "arm": [ + "std", + "small" + ], + "gcc_arm": [ + "std", + "small" + ] + } }, "GR_MANGO": { "inherits": ["RZ_A2XX"], From 15e851194c622228873f9600449cc88395197567 Mon Sep 17 00:00:00 2001 From: Harrison Mutai Date: Thu, 25 Feb 2021 14:11:46 +0000 Subject: [PATCH 2/2] Remove IAR from list of supported toolchains --- targets/targets.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/targets/targets.json b/targets/targets.json index c4a4d10506..55f122d266 100644 --- a/targets/targets.json +++ b/targets/targets.json @@ -4808,8 +4808,7 @@ "core": "Cortex-A9", "supported_toolchains": [ "ARM", - "GCC_ARM", - "IAR" + "GCC_ARM" ], "extra_labels": [ "RENESAS", @@ -4941,7 +4940,7 @@ "inherits": ["Target"], "public": false, "core": "Cortex-A9", - "supported_toolchains": ["ARM", "GCC_ARM", "IAR"], + "supported_toolchains": ["ARM", "GCC_ARM"], "extra_labels": ["RENESAS", "RZ_A2XX"], "device_has": [ "SLEEP",