You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
751 B
16 lines
751 B
# Run boringssl self test for each ABI so that later processes can skip it. http://b/139348610
|
|
on early-init && property:ro.product.cpu.abilist32=*
|
|
exec_start boringssl_self_test32_vendor
|
|
on early-init && property:ro.product.cpu.abilist64=*
|
|
exec_start boringssl_self_test64_vendor
|
|
|
|
service boringssl_self_test32_vendor /vendor/bin/boringssl_self_test32
|
|
setenv BORINGSSL_SELF_TEST_CREATE_FLAG true # Any nonempty value counts as true
|
|
reboot_on_failure reboot,boringssl-self-check-failed
|
|
stdio_to_kmsg
|
|
|
|
service boringssl_self_test64_vendor /vendor/bin/boringssl_self_test64
|
|
setenv BORINGSSL_SELF_TEST_CREATE_FLAG true # Any nonempty value counts as true
|
|
reboot_on_failure reboot,boringssl-self-check-failed
|
|
stdio_to_kmsg
|