From d9dbbbfc5e426778b62f33dbd93007155d99e0a6 Mon Sep 17 00:00:00 2001 From: "J. German Rivera" Date: Sat, 20 Apr 2024 10:59:58 -0400 Subject: [PATCH] Addressed PR review comments Signed-off-by: J. German Rivera --- index/hi/hirtos/hirtos-2.0.0.toml | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/index/hi/hirtos/hirtos-2.0.0.toml b/index/hi/hirtos/hirtos-2.0.0.toml index 25d2aee0e..0977b75cf 100644 --- a/index/hi/hirtos/hirtos-2.0.0.toml +++ b/index/hi/hirtos/hirtos-2.0.0.toml @@ -1,6 +1,11 @@ # -# NOTE: Before building for the first time with `alr build`, select the -# corresponding cross compiler toolchain by running `alr toolchain --select` +# Copyright (c) 2022-2024, German Rivera +# +# SPDX-License-Identifier: Apache-2.0 +# +# NOTE: This crate is not meant to be built with the native compiler. +# A dependency on a cross-compiler must be specified in the client +# crate. See example client crates in the sample_apps folder. # name = "hirtos" description = "High-Integrity RTOS" @@ -15,17 +20,17 @@ maintainers-logins = ["jgrivera67"] [configuration.variables] Platform = {type = "Enum", values = ["arm_fvp", "esp32_c3"], default = "arm_fvp"} -[[depends-on]] -gnat_arm_elf = "^13.2.1" -#gnat_riscv64_elf = "^13.2.1" -gnatprove = "^13.2.1" - -[gpr-set-externals] -CPU_Core = "arm_cortex_r52" -#CPU_Core = "riscv32" +[[actions]] +type = "test" +command = ["alr", "build"] +directory = "sample_apps/fvp_armv8r_aarch32_hello" +[[actions]] +type = "test" +command = ["alr", "build"] +directory = "sample_apps/esp32_c3_hello" [origin] -commit = "63f7fdd2a01e061990a8921c64bb7966fad35e40" +commit = "0c01280da07399a8a7fa8cb7980c3b7c3713801d" url = "git+https://github.com/jgrivera67/HiRTOS.git"