blob: 477d0a850eadbdb053bd7ba7beeb80802749d1be [file] [log] [blame]
Bob Badoure8af2842022-04-07 10:44:22 -07001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
Andrew Walbran68a8c162022-03-07 15:38:42 +00005rust_ffi_static {
6 name: "libpvmfw",
7 crate_name: "pvmfw",
David Brazdil30a7f082022-07-07 15:30:14 +01008 defaults: ["vmbase_ffi_defaults"],
Andrew Walbran68a8c162022-03-07 15:38:42 +00009 srcs: ["src/main.rs"],
Pierre-Clément Tosie8726e42022-10-17 13:35:27 +010010 features: [
11 "legacy",
12 ],
Andrew Walbranf2594882022-03-15 17:32:53 +000013 rustlibs: [
Pierre-Clément Tosia8a4a202022-11-03 14:16:46 +000014 "libaarch64_paging",
Alice Wang947f3f72023-09-29 09:04:07 +000015 "libbssl_avf_nostd",
Shikha Panwar8f7fc1a2024-04-10 10:41:34 +000016 "libcbor_util_nostd",
Alan Stokesd1ee63e2023-04-24 16:17:39 +010017 "libciborium_nostd",
18 "libciborium_io_nostd",
Alice Wang6823ffc2024-10-29 15:54:34 +000019 "libcoset_nostd",
Pierre-Clément Tosi1bf532b2023-11-13 11:06:20 +000020 "libcstr",
Alice Wangcb9d2f92023-02-06 10:29:00 +000021 "libdiced_open_dice_nostd",
Per Larsen7ec45d32024-11-02 00:56:46 +000022 "libhypervisor_backends",
Pierre-Clément Tosi992c2bb2024-10-02 10:37:42 +010023 "liblibfdt_nostd",
Pierre-Clément Tosi37105a62022-10-18 12:21:48 +010024 "liblog_rust_nostd",
Pierre-Clément Tosi2d652982023-01-09 19:30:17 +000025 "libpvmfw_avb_nostd",
Pierre-Clément Tosi4ef75222022-10-26 17:40:50 +010026 "libpvmfw_embedded_key",
Jiyong Park216793e2023-02-25 02:15:44 +090027 "libpvmfw_fdt_template",
Alice Wang12e4c862023-12-11 13:52:27 +000028 "libservice_vm_version",
Andrew Walbranf44f1602023-05-30 14:59:19 +000029 "libsmccc",
Pierre-Clément Tosi1cc5eb72023-02-02 11:09:18 +000030 "libstatic_assertions",
Pierre-Clément Tosi328dfb62022-11-25 18:20:42 +000031 "libtinyvec_nostd",
Pierre-Clément Tosi1cc5eb72023-02-02 11:09:18 +000032 "libuuid_nostd",
Andrew Walbrand1d03182022-12-09 18:20:01 +000033 "libvirtio_drivers",
Andrew Walbrandd74b902022-04-14 16:12:50 +000034 "libvmbase",
Alan Stokesa0e42962023-04-14 17:59:50 +010035 "libzerocopy_nostd",
Pierre-Clément Tosi8383c542022-11-01 14:07:29 +000036 "libzeroize_nostd",
Andrew Walbranf2594882022-03-15 17:32:53 +000037 ],
Andrew Walbran68a8c162022-03-07 15:38:42 +000038}
Andrew Walbran15068b02022-03-22 15:57:34 +000039
Alice Wang1c7e0eb2023-04-11 17:03:42 +000040// Generates an empty file.
41genrule {
42 name: "empty_file",
43 out: ["empty_file"],
44 cmd: "touch $(out)",
45}
46
Alan Stokesddb988c2023-11-27 11:13:06 +000047rust_defaults {
48 name: "libpvmfw.test.defaults",
Nikita Ioffeda1b2732023-09-04 13:46:56 +010049 defaults: ["avf_build_flags_rust"],
Jiyong Parkc5d2ef22023-04-11 01:23:46 +090050 test_suites: ["general-tests"],
51 test_options: {
52 unit_test: true,
53 },
Alan Stokesddb988c2023-11-27 11:13:06 +000054 prefer_rlib: true,
Jiyong Parkc5d2ef22023-04-11 01:23:46 +090055 rustlibs: [
Pierre-Clément Tosi1bf532b2023-11-13 11:06:20 +000056 "libcstr",
Alan Stokesddb988c2023-11-27 11:13:06 +000057 ],
58}
59
60rust_test {
61 name: "libpvmfw.bootargs.test",
62 host_supported: true,
63 // For now, only bootargs.rs is written to be conditionally compiled with std.
64 srcs: ["src/bootargs.rs"],
65 defaults: ["libpvmfw.test.defaults"],
66 rustlibs: [
Jiyong Parkc5d2ef22023-04-11 01:23:46 +090067 "libzeroize",
68 ],
69}
70
Alan Stokesddb988c2023-11-27 11:13:06 +000071rust_test {
72 name: "libpvmfw.device_assignment.test",
73 srcs: ["src/device_assignment.rs"],
74 defaults: ["libpvmfw.test.defaults"],
75 rustlibs: [
Jaewan Kim8f6f4662023-12-12 17:38:47 +090076 "libdts",
Alan Stokesddb988c2023-11-27 11:13:06 +000077 "liblibfdt",
78 "liblog_rust",
79 "libpvmfw_fdt_template",
Jaewan Kim8f6f4662023-12-12 17:38:47 +090080 "libzerocopy",
Alan Stokesddb988c2023-11-27 11:13:06 +000081 ],
82 data: [
83 ":test_pvmfw_devices_vm_dtbo",
84 ":test_pvmfw_devices_vm_dtbo_without_symbols",
Jaewan Kim19b984f2023-12-04 15:16:50 +090085 ":test_pvmfw_devices_vm_dtbo_with_duplicated_iommus",
Pierre-Clément Tosi49e26ce2024-03-12 16:31:50 +000086 ":test_pvmfw_devices_overlapping_pvmfw",
Jaewan Kim8f6f4662023-12-12 17:38:47 +090087 ":test_pvmfw_devices_vm_dtbo_with_dependencies",
Alan Stokesddb988c2023-11-27 11:13:06 +000088 ":test_pvmfw_devices_with_rng",
Alan Stokesddb988c2023-11-27 11:13:06 +000089 ":test_pvmfw_devices_with_multiple_devices_iommus",
90 ":test_pvmfw_devices_with_iommu_sharing",
91 ":test_pvmfw_devices_with_iommu_id_conflict",
Jaewan Kim52477ae2023-11-21 21:20:52 +090092 ":test_pvmfw_devices_without_device",
Jaewan Kima67e36a2023-11-29 16:50:23 +090093 ":test_pvmfw_devices_without_iommus",
Jaewan Kim19b984f2023-12-04 15:16:50 +090094 ":test_pvmfw_devices_with_duplicated_pviommus",
95 ":test_pvmfw_devices_with_multiple_reg_iommus",
Jaewan Kim8f6f4662023-12-12 17:38:47 +090096 ":test_pvmfw_devices_with_dependency",
97 ":test_pvmfw_devices_with_dependency_loop",
98 ":test_pvmfw_devices_with_multiple_dependencies",
99 ":test_pvmfw_devices_expected_dt",
Alan Stokesddb988c2023-11-27 11:13:06 +0000100 ],
Jaewan Kim8f6f4662023-12-12 17:38:47 +0900101 data_bins: ["dtc_static"],
102 compile_multilib: "first",
Alan Stokesddb988c2023-11-27 11:13:06 +0000103 // To use libpvmfw_fdt_template for testing
104 enabled: false,
105 target: {
106 android_arm64: {
107 enabled: true,
108 },
109 },
110}
111
112rust_test {
113 name: "libpvmfw.dice.test",
114 srcs: ["src/dice.rs"],
115 defaults: ["libpvmfw.test.defaults"],
116 rustlibs: [
117 "libcbor_util",
118 "libciborium",
Shikha Panwarf3acfd12024-05-28 15:48:13 +0000119 "libdiced_open_dice",
Alan Stokesddb988c2023-11-27 11:13:06 +0000120 "libpvmfw_avb_nostd",
Alan Stokesa17cfba2024-02-14 17:34:51 +0000121 "libzerocopy_nostd",
Shikha Panwarf3acfd12024-05-28 15:48:13 +0000122 "libhex",
Alan Stokesddb988c2023-11-27 11:13:06 +0000123 ],
124}
125
Jaewan Kimc6e023b2023-10-12 15:11:05 +0900126genrule {
127 name: "test_pvmfw_devices_vm_dtbo",
128 defaults: ["dts_to_dtb"],
129 srcs: ["testdata/test_pvmfw_devices_vm_dtbo.dts"],
130 out: ["test_pvmfw_devices_vm_dtbo.dtbo"],
131}
132
133genrule {
134 name: "test_pvmfw_devices_vm_dtbo_without_symbols",
135 defaults: ["dts_to_dtb"],
136 srcs: ["testdata/test_pvmfw_devices_vm_dtbo_without_symbols.dts"],
137 out: ["test_pvmfw_devices_vm_dtbo_without_symbols.dtbo"],
138}
139
Jaewan Kim19b984f2023-12-04 15:16:50 +0900140genrule {
141 name: "test_pvmfw_devices_vm_dtbo_with_duplicated_iommus",
142 defaults: ["dts_to_dtb"],
143 srcs: ["testdata/test_pvmfw_devices_vm_dtbo_with_duplicated_iommus.dts"],
144 out: ["test_pvmfw_devices_vm_dtbo_with_duplicated_iommus.dtbo"],
145}
146
Jaewan Kim8f6f4662023-12-12 17:38:47 +0900147genrule {
148 name: "test_pvmfw_devices_vm_dtbo_with_dependencies",
149 tools: ["dtc"],
150 cmd: "$(location dtc) -@ -I dts -O dtb $(in) -o $(out)",
151 srcs: ["testdata/test_pvmfw_devices_vm_dtbo_with_dependencies.dts"],
152 out: ["test_pvmfw_devices_vm_dtbo_with_dependencies.dtbo"],
153}
154
Jaewan Kimcb0d45d2023-11-30 15:40:12 +0900155genrule_defaults {
156 name: "test_device_assignment_dts_to_dtb",
157 defaults: ["dts_to_dtb"],
158 srcs: ["testdata/test_crosvm_dt_base.dtsi"],
159}
160
Jaewan Kimc6e023b2023-10-12 15:11:05 +0900161genrule {
Pierre-Clément Tosi49e26ce2024-03-12 16:31:50 +0000162 name: "test_pvmfw_devices_overlapping_pvmfw",
163 defaults: ["test_device_assignment_dts_to_dtb"],
164 srcs: ["testdata/test_pvmfw_devices_overlapping_pvmfw.dts"],
165 out: ["test_pvmfw_devices_overlapping_pvmfw.dtb"],
166}
167
168genrule {
Jaewan Kimc6e023b2023-10-12 15:11:05 +0900169 name: "test_pvmfw_devices_with_rng",
Jaewan Kimcb0d45d2023-11-30 15:40:12 +0900170 defaults: ["test_device_assignment_dts_to_dtb"],
Jaewan Kimc6e023b2023-10-12 15:11:05 +0900171 srcs: ["testdata/test_pvmfw_devices_with_rng.dts"],
172 out: ["test_pvmfw_devices_with_rng.dtb"],
173}
174
Jaewan Kim51ccfed2023-11-08 13:51:58 +0900175genrule {
Jaewan Kima67e36a2023-11-29 16:50:23 +0900176 name: "test_pvmfw_devices_without_iommus",
Jaewan Kimcb0d45d2023-11-30 15:40:12 +0900177 defaults: ["test_device_assignment_dts_to_dtb"],
Jaewan Kima67e36a2023-11-29 16:50:23 +0900178 srcs: ["testdata/test_pvmfw_devices_without_iommus.dts"],
179 out: ["test_pvmfw_devices_without_iommus.dtb"],
Jaewan Kim51ccfed2023-11-08 13:51:58 +0900180}
181
182genrule {
Jaewan Kim52477ae2023-11-21 21:20:52 +0900183 name: "test_pvmfw_devices_without_device",
184 defaults: ["test_device_assignment_dts_to_dtb"],
185 srcs: ["testdata/test_pvmfw_devices_without_device.dts"],
186 out: ["test_pvmfw_devices_without_device.dtb"],
187}
188
189genrule {
Jaewan Kim51ccfed2023-11-08 13:51:58 +0900190 name: "test_pvmfw_devices_with_multiple_devices_iommus",
Jaewan Kimcb0d45d2023-11-30 15:40:12 +0900191 defaults: ["test_device_assignment_dts_to_dtb"],
Jaewan Kim51ccfed2023-11-08 13:51:58 +0900192 srcs: ["testdata/test_pvmfw_devices_with_multiple_devices_iommus.dts"],
193 out: ["test_pvmfw_devices_with_multiple_devices_iommus.dtb"],
194}
195
196genrule {
197 name: "test_pvmfw_devices_with_iommu_sharing",
Jaewan Kimcb0d45d2023-11-30 15:40:12 +0900198 defaults: ["test_device_assignment_dts_to_dtb"],
Jaewan Kim51ccfed2023-11-08 13:51:58 +0900199 srcs: ["testdata/test_pvmfw_devices_with_iommu_sharing.dts"],
200 out: ["test_pvmfw_devices_with_iommu_sharing.dtb"],
201}
202
203genrule {
204 name: "test_pvmfw_devices_with_iommu_id_conflict",
Jaewan Kimcb0d45d2023-11-30 15:40:12 +0900205 defaults: ["test_device_assignment_dts_to_dtb"],
Jaewan Kim51ccfed2023-11-08 13:51:58 +0900206 srcs: ["testdata/test_pvmfw_devices_with_iommu_id_conflict.dts"],
207 out: ["test_pvmfw_devices_with_iommu_id_conflict.dtb"],
208}
209
Jaewan Kim19b984f2023-12-04 15:16:50 +0900210genrule {
211 name: "test_pvmfw_devices_with_duplicated_pviommus",
212 defaults: ["test_device_assignment_dts_to_dtb"],
213 srcs: ["testdata/test_pvmfw_devices_with_duplicated_pviommus.dts"],
214 out: ["test_pvmfw_devices_with_duplicated_pviommus.dtb"],
215}
216
217genrule {
218 name: "test_pvmfw_devices_with_multiple_reg_iommus",
219 defaults: ["test_device_assignment_dts_to_dtb"],
220 srcs: ["testdata/test_pvmfw_devices_with_multiple_reg_iommus.dts"],
221 out: ["test_pvmfw_devices_with_multiple_reg_iommus.dtb"],
222}
223
Jaewan Kim8f6f4662023-12-12 17:38:47 +0900224genrule {
225 name: "test_pvmfw_devices_with_dependency",
226 defaults: ["test_device_assignment_dts_to_dtb"],
227 srcs: ["testdata/test_pvmfw_devices_with_dependency.dts"],
228 out: ["test_pvmfw_devices_with_dependency.dtb"],
229}
230
231genrule {
232 name: "test_pvmfw_devices_with_multiple_dependencies",
233 defaults: ["test_device_assignment_dts_to_dtb"],
234 srcs: ["testdata/test_pvmfw_devices_with_multiple_dependencies.dts"],
235 out: ["test_pvmfw_devices_with_multiple_dependencies.dtb"],
236}
237
238genrule {
239 name: "test_pvmfw_devices_with_dependency_loop",
240 defaults: ["test_device_assignment_dts_to_dtb"],
241 srcs: ["testdata/test_pvmfw_devices_with_dependency_loop.dts"],
242 out: ["test_pvmfw_devices_with_dependency_loop.dtb"],
243}
244
245// We can't use genrule because preprocessed platform DT is built with cc_object.
246// cc_genrule doesn't support default, so we'll build all expected DTs in
247// a single build rule.
248cc_genrule {
249 name: "test_pvmfw_devices_expected_dt",
250 srcs: [
251 ":pvmfw_platform.dts.preprocessed",
252 "testdata/expected_dt_with_dependency.dts",
253 "testdata/expected_dt_with_multiple_dependencies.dts",
254 "testdata/expected_dt_with_dependency_loop.dts",
255 ],
256 out: [
257 "expected_dt_with_dependency.dtb",
258 "expected_dt_with_multiple_dependencies.dtb",
259 "expected_dt_with_dependency_loop.dtb",
260 ],
261 tools: ["dtc"],
262 cmd: "FILES=($(in));" +
263 "cp $${FILES[0]} $(genDir)/platform_preprocessed.dts;" +
264 "for DTS in $${FILES[@]:1}; do" +
265 " DTB=$$(basename -s .dts $${DTS}).dtb;" +
266 " $(location dtc) -@ -i $(genDir) -I dts -O dtb $${DTS} -o $(genDir)/$${DTB};" +
267 "done",
268 visibility: ["//visibility:private"],
269}
270
Andrew Walbran15068b02022-03-22 15:57:34 +0000271cc_binary {
Pierre-Clément Tosib1300352022-09-09 11:01:06 +0100272 name: "pvmfw",
David Brazdil30a7f082022-07-07 15:30:14 +0100273 defaults: ["vmbase_elf_defaults"],
Andrew Walbran15068b02022-03-22 15:57:34 +0000274 srcs: [
Andrew Walbran267f6c12022-03-24 11:26:36 +0000275 "idmap.S",
Andrew Walbran15068b02022-03-22 15:57:34 +0000276 ],
277 static_libs: [
278 "libpvmfw",
279 ],
Andrew Walbrana5b7af52022-07-06 15:06:20 +0000280 linker_scripts: [
281 "image.ld",
282 ":vmbase_sections",
283 ],
Jiyong Park17b8d752022-12-16 14:36:24 +0900284 // `installable: false` is inherited from vmbase_elf_defaults, and that
285 // hides this module from Make, which makes it impossible for the Make world
286 // to place the unstripped binary to the symbols directory. Marking back as
287 // installable exposes this module to the Make world again. Note that this
288 // module (pvmfw) still is NOT installed to any of the filesystem images. It
289 // is fed into pvmfw_bin and then into pvmfw_img to become a standalone
290 // partition image. This is just to package the unstripped file into the
291 // symbols zip file for debugging purpose.
292 installable: true,
Andrew Walbran15068b02022-03-22 15:57:34 +0000293}
David Brazdil05d4e072022-04-25 14:47:06 +0100294
295raw_binary {
Pierre-Clément Tosib1300352022-09-09 11:01:06 +0100296 name: "pvmfw_bin",
297 stem: "pvmfw.bin",
298 src: ":pvmfw",
David Brazdil05d4e072022-04-25 14:47:06 +0100299 enabled: false,
300 target: {
301 android_arm64: {
302 enabled: true,
303 },
304 },
305}
David Brazdilac216b52022-04-25 15:07:22 +0100306
Jaewan Kim2cf6f392023-02-10 01:35:47 +0900307// Provide pvmfw.bin binary regardless of the architecture for building test.
308// Note that skipping tests on unsupported device is easy
309// while configuring server configuration to make such tests to run on working
310// devices.
311prebuilt_etc {
312 name: "pvmfw_test",
313 filename: "pvmfw_test.bin",
314 target: {
315 android_arm64: {
316 src: ":pvmfw_bin",
317 },
318 },
Alice Wang1c7e0eb2023-04-11 17:03:42 +0000319 src: ":empty_file",
Jaewan Kim2cf6f392023-02-10 01:35:47 +0900320 installable: false,
321}
322
Pierre-Clément Tosi8b5533d2024-05-24 10:47:59 +0100323filegroup {
Pierre-Clément Tosi6ec2ae22022-10-26 15:14:45 +0100324 name: "pvmfw_embedded_key",
Pierre-Clément Tosi8b5533d2024-05-24 10:47:59 +0100325 srcs: [":avb_testkey_rsa4096"],
326}
327
328genrule {
329 name: "pvmfw_embedded_key_pub_bin",
330 tools: ["avbtool"],
331 srcs: [":pvmfw_embedded_key"],
332 out: ["pvmfw_embedded_key_pub.bin"],
333 cmd: "$(location avbtool) extract_public_key --key $(in) --output $(out)",
Pierre-Clément Tosi6ec2ae22022-10-26 15:14:45 +0100334}
335
Pierre-Clément Tosi4ef75222022-10-26 17:40:50 +0100336genrule {
337 name: "pvmfw_embedded_key_rs",
Pierre-Clément Tosi8b5533d2024-05-24 10:47:59 +0100338 srcs: [":pvmfw_embedded_key_pub_bin"],
Pierre-Clément Tosi4ef75222022-10-26 17:40:50 +0100339 out: ["lib.rs"],
340 cmd: "(" +
341 " echo '#![no_std]';" +
342 " echo '#![allow(missing_docs)]';" +
343 " echo 'pub const PUBLIC_KEY: &[u8] = &[';" +
344 " xxd -i < $(in);" +
345 " echo '];';" +
346 ") > $(out)",
347}
348
349rust_library_rlib {
350 name: "libpvmfw_embedded_key",
Pierre-Clément Tosi4894b432023-06-27 14:02:26 +0000351 defaults: ["vmbase_rlib_defaults"],
Pierre-Clément Tosi4ef75222022-10-26 17:40:50 +0100352 srcs: [":pvmfw_embedded_key_rs"],
353 crate_name: "pvmfw_embedded_key",
Pierre-Clément Tosi4ef75222022-10-26 17:40:50 +0100354}
355
Pierre-Clément Tosi6ec2ae22022-10-26 15:14:45 +0100356prebuilt_etc {
Pierre-Clément Tosib5771c02022-09-06 16:01:35 +0100357 name: "pvmfw_sign_key",
358 src: ":avb_testkey_rsa4096",
359 installable: false,
360}
361
Jiyong Park9c1c8182023-05-25 15:40:11 +0900362// We need to rename *.dts into *.cpp as cc_object doesn't accept *.dts as an
363// input
Jiyong Park216793e2023-02-25 02:15:44 +0900364genrule {
Jiyong Park9c1c8182023-05-25 15:40:11 +0900365 name: "pvmfw_platform.dts.renamed",
366 srcs: ["platform.dts"],
367 out: ["out.cpp"],
368 cmd: "cp $(in) $(out)",
369 visibility: ["//visibility:private"],
370}
371
372// Then run the macro processor to replace symbols like GIC_SPI into actual
373// numbers defined in the ARM DT binding headers
374cc_object {
375 name: "pvmfw_platform.dts.preprocessed",
Nikita Ioffe38b9e712024-02-08 15:55:07 +0000376 defaults: ["avf_build_flags_cc"],
Jiyong Park9c1c8182023-05-25 15:40:11 +0900377 header_libs: ["arm_dt_bindings_headers"],
378 host_supported: true,
379 srcs: [":pvmfw_platform.dts.renamed"],
380 cflags: [
381 "-E",
382 "-P",
383 "-xassembler-with-cpp", // allow C preprocessor directives
Jiyong Park216793e2023-02-25 02:15:44 +0900384 ],
Jiyong Park9c1c8182023-05-25 15:40:11 +0900385 visibility: ["//visibility:private"],
386}
387
388// Compile the preprocessed dts into binary and create a rust library source
389// having the binary.
390cc_genrule {
391 name: "pvmfw_fdt_template_rs",
392 srcs: [":pvmfw_platform.dts.preprocessed"],
Jiyong Park216793e2023-02-25 02:15:44 +0900393 out: ["lib.rs"],
394 tools: ["dtc"],
Jaewan Kim96411e92023-11-13 15:54:02 +0900395 cmd: "$(location dtc) -@ -I dts -O dtb -o $(genDir)/compiled.dtbo $(in) && " +
Jiyong Park216793e2023-02-25 02:15:44 +0900396 "(" +
397 " echo '#![no_std]';" +
398 " echo '#![allow(missing_docs)]';" +
399 " echo 'pub const RAW: &[u8] = &[';" +
400 " xxd -i < $(genDir)/compiled.dtbo;" +
401 " echo '];';" +
402 ") > $(out)",
Jiyong Park9c1c8182023-05-25 15:40:11 +0900403 visibility: ["//visibility:private"],
Jiyong Park216793e2023-02-25 02:15:44 +0900404}
405
406rust_library_rlib {
407 name: "libpvmfw_fdt_template",
Pierre-Clément Tosi4894b432023-06-27 14:02:26 +0000408 defaults: ["vmbase_rlib_defaults"],
Jiyong Park216793e2023-02-25 02:15:44 +0900409 srcs: [":pvmfw_fdt_template_rs"],
410 crate_name: "pvmfw_fdt_template",
411}
412
David Brazdilac216b52022-04-25 15:07:22 +0100413bootimg {
414 name: "pvmfw_img",
415 stem: "pvmfw.img",
416 kernel_prebuilt: ":pvmfw_bin",
417 header_version: "3",
418 partition_name: "pvmfw",
419 enabled: false,
420 target: {
421 android_arm64: {
422 enabled: true,
423 },
424 },
Pierre-Clément Tosib5771c02022-09-06 16:01:35 +0100425 use_avb: true,
426 avb_private_key: ":pvmfw_sign_key",
David Brazdilac216b52022-04-25 15:07:22 +0100427}