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.
pull/14301/head
Harrison Mutai 2021-02-18 10:24:08 +00:00
parent 26606218ad
commit 15a263f453
1 changed files with 23 additions and 1 deletions

View File

@ -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"],