-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ref(baremetal): split baremetal guest recipe in run and tests build
Signed-off-by: Diogo Costa <[email protected]>
- Loading branch information
1 parent
10ae0fc
commit b025d2c
Showing
2 changed files
with
80 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# Copyright (c) Bao Project and Contributors. All rights reserved. | ||
|
||
{ stdenv | ||
, fetchFromGitHub | ||
, toolchain | ||
, python3 | ||
, python3Packages | ||
, rsync | ||
, setup-cfg | ||
, guest_name ? "baremetal" | ||
, baremetal_srcs_path ? " " | ||
, tests_path ? " " | ||
, list_tests ? " " | ||
, list_suites ? " " | ||
, log_level ? "2" | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
# Derivation to build the baremetal-guest to run the bao test framework | ||
# MUT: baremetal-guest | ||
pname = guest_name; | ||
version = "1.0.0"; | ||
|
||
guest_srcs = if baremetal_srcs_path == " " || baremetal_srcs_path == null then | ||
fetchFromGitHub { | ||
owner = "bao-project"; | ||
repo = "bao-baremetal-guest"; | ||
rev = "4010db4ba5f71bae72d4ceaf4efa3219812c6b12"; # branch demo | ||
sha256 = "sha256-aiKraDtjv+n/cXtdYdNDKlbzOiBxYTDrMT8bdG9B9vU="; | ||
} | ||
else | ||
baremetal_srcs_path; | ||
|
||
|
||
nativeBuildInputs = [ toolchain]; #build time dependencies | ||
buildInputs = [python3 python3Packages.numpy rsync]; | ||
|
||
unpackPhase = '' | ||
mkdir -p $out | ||
mkdir -p $out/tests | ||
mkdir -p $out/tests/src | ||
mkdir -p $out/tests/bao-tests | ||
rsync -r $guest_srcs/ $out | ||
rsync -r ${setup-cfg.tests_srcs}/* $out/tests/src | ||
rsync -r ${setup-cfg.bao-tests}/* $out/tests/bao-tests | ||
chmod -R +rwx $out | ||
cd $out/tests/bao-tests/framework | ||
python3 codegen.py -dir $out/tests/src -o $out/tests/bao-tests/src/testf_entry.c | ||
cd $out | ||
''; | ||
|
||
patches = [ | ||
"${setup-cfg.baremetal_patch}" | ||
]; | ||
|
||
buildPhase = '' | ||
export ARCH=${setup-cfg.arch} | ||
export CROSS_COMPILE=${setup-cfg.toolchain_name}- | ||
export TESTF_TESTS_DIR=$out/tests/src | ||
export TESTF_REPO_DIR=$out/tests/bao-tests | ||
make -C $out PLATFORM=${setup-cfg.platform_name} BAO_TEST=1 SUITES=${list_suites} TESTS=${list_tests} TESTF_LOG_LEVEL=${log_level} | ||
''; | ||
|
||
installPhase = '' | ||
mkdir -p $out/bin | ||
cp $out/build/${setup-cfg.platform_name}/baremetal.bin $out/bin/${guest_name}.bin | ||
''; | ||
|
||
} |