Skip to content

Commit

Permalink
DO NOT MERGE: this is a test
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Trippel <[email protected]>
  • Loading branch information
timothytrippel committed Dec 4, 2024
1 parent f8a137f commit 473f2cb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
4 changes: 3 additions & 1 deletion sw/device/silicon_creator/manuf/base/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,9 @@ filegroup(
[
":ft_fw_bundle_{}".format(sku)
for sku in EARLGREY_SKUS.keys()
],
] + [
"//sw/device/silicon_creator/manuf/base/binaries:perso_bins",
],
)

[
Expand Down
9 changes: 9 additions & 0 deletions sw/device/silicon_creator/manuf/base/binaries/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ load("//rules/opentitan:cc.bzl", "exec_env_filegroup")

package(default_visibility = ["//visibility:public"])

filegroup(
name = "perso_bins",
srcs = [
"ft_personalize_sival_fpga_cw340_rom_with_fake_keys.signed.bin",
"ft_personalize_sival_fpga_hyper310_rom_with_fake_keys.signed.bin",
"ft_personalize_sival_silicon_creator.signed.bin",
],
)

exec_env_filegroup(
name = "ft_personalize_sival",
testonly = True,
Expand Down
3 changes: 2 additions & 1 deletion sw/host/provisioning/orchestrator/src/ot_dut.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
_BASE_DEV_DIR = "sw/device/silicon_creator/manuf/base" # noqa: E221
_CP_DEVICE_ELF = "{base_dir}/sram_cp_provision_{target}.elf" # noqa: E221
_FT_INDIVID_DEVICE_ELF = "{base_dir}/sram_ft_individualize_{sku}_{target}.elf" # noqa: E221
_FT_PERSO_DEVICE_BIN = "{base_dir}/ft_personalize_{sku}_{target}.prod_key_0.prod_key_0.signed.bin" # noqa: E221, E501
# _FT_PERSO_DEVICE_BIN = "{base_dir}/ft_personalize_{sku}_{target}.prod_key_0.prod_key_0.signed.bin" # noqa: E221, E501
_FT_PERSO_DEVICE_BIN = "{base_dir}/binaries/ft_personalize_{sku}_{target}.signed.bin" # noqa: E221, E501
_FT_FW_BUNDLE_BIN = "{base_dir}/ft_fw_bundle_{sku}_{target}.img" # noqa: E221
# CP & FT Host Binaries
_CP_HOST_BIN = "sw/host/provisioning/cp/cp"
Expand Down

0 comments on commit 473f2cb

Please sign in to comment.