From bb0b5db53e777fe3f966ec6f0cbddcf00153d4bf Mon Sep 17 00:00:00 2001 From: Andrew Robbins Date: Sat, 23 Sep 2017 20:33:22 -0400 Subject: Build only Coreboot project in its build action Helps keeps things more modular if each project only builds itself rather than, for example, Coreboot's build action also building crossgcc and an embedded controller firmware; this makes it possible to rebuild only one project if its compilation fails. --- projects/coreboot/coreboot | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'projects') diff --git a/projects/coreboot/coreboot b/projects/coreboot/coreboot index 5a3c3c7f..f3f5d783 100755 --- a/projects/coreboot/coreboot +++ b/projects/coreboot/coreboot @@ -74,8 +74,6 @@ build() { local crossgcc_bin_path="$crossgcc_build_path/bin/" local vboot_sources_path=$( project_sources_path "vboot" "vboot" "devices" ) - project_action "build" "crossgcc" "$arch" - if git_project_check "$repository" then git_project_checkout "$project" "$repository" "$payload" "$@" @@ -83,15 +81,6 @@ build() { project_action "checkout" "vboot" "devices" - project_action "build" "$payload" "$@" - - if coreboot_ec_check "$payload" "$@" - then - ec=$( coreboot_ec "$payload" "$@" ) - - project_action "build" "$ec" "$@" - fi - rm -f "$sources_path/.xcompile" mkdir -p "$build_path" -- cgit v1.2.3-70-g09d2 From a433b359f74228c4b9106d1c7ee38f864a909a13 Mon Sep 17 00:00:00 2001 From: Andrew Robbins Date: Sat, 23 Sep 2017 20:53:26 -0400 Subject: Replace a function call in Coreboot action script 'project_action' was used instead of the intended 'project_action_arguments' function, I presume, as project_action does not actually carry out the argument action--contrary to what the name may seem to imply. --- projects/coreboot/coreboot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'projects') diff --git a/projects/coreboot/coreboot b/projects/coreboot/coreboot index f3f5d783..f577ca26 100755 --- a/projects/coreboot/coreboot +++ b/projects/coreboot/coreboot @@ -79,7 +79,7 @@ build() { git_project_checkout "$project" "$repository" "$payload" "$@" fi - project_action "checkout" "vboot" "devices" + project_action_arguments "checkout" "vboot" "devices" rm -f "$sources_path/.xcompile" -- cgit v1.2.3-70-g09d2 From dbedae0ce6e99cceefb00b40ab42145302718104 Mon Sep 17 00:00:00 2001 From: Andrew Robbins Date: Sun, 1 Oct 2017 01:09:45 -0400 Subject: Add SeaBIOS target to Coreboot targets file --- projects/coreboot/configs/targets | 1 + 1 file changed, 1 insertion(+) (limited to 'projects') diff --git a/projects/coreboot/configs/targets b/projects/coreboot/configs/targets index d7e90413..5b8e87b0 100644 --- a/projects/coreboot/configs/targets +++ b/projects/coreboot/configs/targets @@ -1 +1,2 @@ depthcharge +seabios -- cgit v1.2.3-70-g09d2