From 4a0331e0862782c78f7372c91e9e3d5d2a856906 Mon Sep 17 00:00:00 2001 From: Andrew Robbins Date: Mon, 2 Oct 2017 21:39:52 -0400 Subject: Build only depthcharge in depthcharge build action Makes things easier to maintain if a project only builds itself--less moving parts, etc. --- projects/depthcharge/depthcharge | 3 --- 1 file changed, 3 deletions(-) (limited to 'projects/depthcharge') diff --git a/projects/depthcharge/depthcharge b/projects/depthcharge/depthcharge index ca31d4be..f7645092 100755 --- a/projects/depthcharge/depthcharge +++ b/projects/depthcharge/depthcharge @@ -76,9 +76,6 @@ build() { local arch=$( depthcharge_arch "$@" ) local device=$( depthcharge_device "$@" ) - project_action "build" "crossgcc" "$arch" - project_action "build" "libpayload" "$project" "$@" - project_action "checkout" "vboot" "devices" mkdir -p "$build_path" -- cgit v1.2.3-70-g09d2 From 99a40b772cb87b03ddce47ec076d13e454ba7caa Mon Sep 17 00:00:00 2001 From: Andrew Robbins Date: Mon, 2 Oct 2017 21:43:09 -0400 Subject: Replace project_action call in depthcharge script It seems like 'project_action_arguments' was the intended function to use, as 'project_action' does not actually /carry out/ the action given as its first argument. --- projects/depthcharge/depthcharge | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'projects/depthcharge') diff --git a/projects/depthcharge/depthcharge b/projects/depthcharge/depthcharge index f7645092..fe64c7d9 100755 --- a/projects/depthcharge/depthcharge +++ b/projects/depthcharge/depthcharge @@ -76,7 +76,7 @@ build() { local arch=$( depthcharge_arch "$@" ) local device=$( depthcharge_device "$@" ) - project_action "checkout" "vboot" "devices" + project_action_arguments "checkout" "vboot" "devices" mkdir -p "$build_path" -- cgit v1.2.3-70-g09d2 From e707e69b6cac697b01416187230178b02541fa42 Mon Sep 17 00:00:00 2001 From: Andrew Robbins Date: Wed, 4 Oct 2017 04:02:56 -0400 Subject: Add veyron minnie/speedy depthcharge targets These are necessary so that the build action for depthcharge can locate the correct configuration for veyron targets in the depthcharge source repository. Prior, the build action was looking for 'veyron' instead of 'veyron_minnie' or 'veyron_speedy', causing it to fail. --- projects/depthcharge/configs/veyron/targets | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 projects/depthcharge/configs/veyron/targets (limited to 'projects/depthcharge') diff --git a/projects/depthcharge/configs/veyron/targets b/projects/depthcharge/configs/veyron/targets new file mode 100644 index 00000000..1722192f --- /dev/null +++ b/projects/depthcharge/configs/veyron/targets @@ -0,0 +1,2 @@ +minnie +speedy -- cgit v1.2.3-70-g09d2