summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Homescu <ahomescu@google.com>2024-06-12 00:23:21 +0000
committerAndrei Homescu <ahomescu@google.com>2024-06-12 00:23:21 +0000
commit5d03b02c2d9284d98017d814e65d48a6f93e1fa9 (patch)
treecd52d9f39c774f9cd17c1dccf9b775aef2aabfd1
parentb87b61791c9562cddf91c744901e5f24f09b6c3f (diff)
downloadtrusty-main.tar.gz
Rename targets for consistency with virtual-devicemain
Bug: 346648287 Change-Id: I5413efa962e63ae105c5e5d2f1f3144be53b1cf7
-rw-r--r--BUILD.bazel20
1 files changed, 10 insertions, 10 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index e4852b5..b019054 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -10,7 +10,7 @@ load(
)
kernel_build(
- name = "trusty_kernel_aarch64",
+ name = "trusty_aarch64",
srcs = ["//common:kernel_aarch64_sources"],
outs = [],
base_kernel = "//common:kernel_aarch64",
@@ -51,7 +51,7 @@ ddk_module(
out = "trusty-core.ko",
defconfig = "trusty_defconfig.fragment",
kconfig = "drivers/trusty/Kconfig",
- kernel_build = ":trusty_kernel_aarch64",
+ kernel_build = ":trusty_aarch64",
deps = [
":headers",
"//common:all_headers_aarch64",
@@ -66,7 +66,7 @@ ddk_module(
out = "trusty-ipc.ko",
defconfig = "trusty_defconfig.fragment",
kconfig = "drivers/trusty/Kconfig",
- kernel_build = ":trusty_kernel_aarch64",
+ kernel_build = ":trusty_aarch64",
deps = [
":headers",
":trusty-core",
@@ -82,7 +82,7 @@ ddk_module(
out = "trusty-log.ko",
defconfig = "trusty_defconfig.fragment",
kconfig = "drivers/trusty/Kconfig",
- kernel_build = ":trusty_kernel_aarch64",
+ kernel_build = ":trusty_aarch64",
deps = [
":headers",
":trusty-core",
@@ -98,7 +98,7 @@ ddk_module(
out = "trusty-test.ko",
defconfig = "trusty_defconfig.fragment",
kconfig = "drivers/trusty/Kconfig",
- kernel_build = ":trusty_kernel_aarch64",
+ kernel_build = ":trusty_aarch64",
deps = [
":headers",
":trusty-core",
@@ -114,7 +114,7 @@ ddk_module(
out = "trusty-virtio.ko",
defconfig = "trusty_defconfig.fragment",
kconfig = "drivers/trusty/Kconfig",
- kernel_build = ":trusty_kernel_aarch64",
+ kernel_build = ":trusty_aarch64",
deps = [
":headers",
":trusty-core",
@@ -123,7 +123,7 @@ ddk_module(
)
kernel_module_group(
- name = "trusty",
+ name = "trusty_aarch64_external_modules",
srcs = [
":trusty-core",
":trusty-ipc",
@@ -134,10 +134,10 @@ kernel_module_group(
)
copy_to_dist_dir(
- name = "trusty_dist",
+ name = "trusty_aarch64_dist",
data = [
- ":trusty",
- ":trusty_kernel_aarch64",
+ ":trusty_aarch64",
+ ":trusty_aarch64_external_modules",
],
flat = True,
)