File tree Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -32,5 +32,14 @@ config UART_CONSOLE
32
32
33
33
endif # CONSOLE
34
34
35
+ # BT relies on PSA Crypto API to perform crypto operations. On this platform
36
+ # this is implemented by Mbed TLS which requires a (possibly true) random
37
+ # number generator to initialize properly. We enable ENTROPY_GENERATOR here
38
+ # instead of manually adding it to all samples/tests configuration files because
39
+ # it looks more compact and easier to maintain.
40
+ config ENTROPY_GENERATOR
41
+ bool
42
+ default y if BT
43
+
35
44
36
45
endif # BOARD_NATIVE_SIM
Original file line number Diff line number Diff line change @@ -56,6 +56,15 @@ endif # BOARD_NRF5340BSIM_NRF5340_CPUAPP
56
56
57
57
if BOARD_NRF5340BSIM_NRF5340_CPUAPP || BOARD_NRF52_BSIM
58
58
59
+ # BT relies on PSA Crypto API to perform crypto operations. On this platform
60
+ # this is implemented by Mbed TLS which requires a (possibly true) random
61
+ # number generator to initialize properly. We enable ENTROPY_GENERATOR here
62
+ # instead of manually adding it to all samples/tests configuration files because
63
+ # it looks more compact and easier to maintain.
64
+ config ENTROPY_GENERATOR
65
+ bool
66
+ default y if BT
67
+
59
68
endif # BOARD_NRF5340BSIM_NRF5340_CPUAPP || BOARD_NRF52_BSIM
60
69
61
70
# The 15.4 driver Tx encryption is currently not functional with this
Original file line number Diff line number Diff line change @@ -55,6 +55,15 @@ endif # BOARD_NRF5340_AUDIO_DK_NRF5340_CPUAPP_NS
55
55
56
56
if BOARD_NRF5340_AUDIO_DK_NRF5340_CPUAPP
57
57
58
+ # BT relies on PSA Crypto API to perform crypto operations. On this platform
59
+ # this is implemented by Mbed TLS which requires a (possibly true) random
60
+ # number generator to initialize properly. We enable ENTROPY_GENERATOR here
61
+ # instead of manually adding it to all samples/tests configuration files because
62
+ # it looks more compact and easier to maintain.
63
+ config ENTROPY_GENERATOR
64
+ bool
65
+ default y if BT
66
+
58
67
endif # BOARD_NRF5340_AUDIO_DK_NRF5340_CPUAPP
59
68
60
69
config BT_HCI_IPC
Original file line number Diff line number Diff line change @@ -45,6 +45,15 @@ endif # BOARD_NRF5340DK_NRF5340_CPUAPP && TRUSTED_EXECUTION_SECURE
45
45
46
46
if BOARD_NRF5340DK_NRF5340_CPUAPP
47
47
48
+ # BT relies on PSA Crypto API to perform crypto operations. On this platform
49
+ # this is implemented by Mbed TLS which requires a (possibly true) random
50
+ # number generator to initialize properly. We enable ENTROPY_GENERATOR here
51
+ # instead of manually adding it to all samples/tests configuration files because
52
+ # it looks more compact and easier to maintain.
53
+ config ENTROPY_GENERATOR
54
+ bool
55
+ default y if BT
56
+
48
57
endif # BOARD_NRF5340DK_NRF5340_CPUAPP
49
58
50
59
if BOARD_NRF5340DK_NRF5340_CPUAPP_NS
You can’t perform that action at this time.
0 commit comments