From 8564df571a685da4170e6560e31a5681bb3bdc61 Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Tue, 3 Dec 2024 15:48:07 +0100 Subject: [PATCH] samples/tests: bluetooth: remove ENTROPY_GENERATOR selection ENTROPY_GENERATOR is now automatically enabled if the board has "zephyr,entropy" chosen property set, so there is no need to manually select it. Signed-off-by: Valerio Setti --- samples/bluetooth/central_ht/boards/frdm_rw612.conf | 1 - samples/bluetooth/central_ht/boards/rd_rw612_bga.conf | 1 - samples/bluetooth/iso_connected_benchmark/prj.conf | 2 -- .../bluetooth/peripheral/boards/nucleo_l4r5zi_stm32l4r5xx.conf | 1 - samples/bluetooth/peripheral_csc/prj.conf | 1 - samples/bluetooth/peripheral_ht/boards/frdm_rw612.conf | 1 - .../peripheral_ht/boards/mimxrt1020_evk_mimxrt1021.conf | 1 - samples/bluetooth/peripheral_ht/boards/rd_rw612_bga.conf | 1 - samples/bluetooth/st_ble_sensor/prj.conf | 1 - samples/boards/st/power_mgmt/stm32wb_ble/prj.conf | 1 - tests/bluetooth/shell/audio.conf | 3 --- tests/bluetooth/tester/boards/frdm_rw612.conf | 1 - tests/bluetooth/tester/boards/rd_rw612_bga.conf | 1 - 13 files changed, 16 deletions(-) delete mode 100644 samples/bluetooth/peripheral/boards/nucleo_l4r5zi_stm32l4r5xx.conf delete mode 100644 samples/bluetooth/peripheral_ht/boards/mimxrt1020_evk_mimxrt1021.conf diff --git a/samples/bluetooth/central_ht/boards/frdm_rw612.conf b/samples/bluetooth/central_ht/boards/frdm_rw612.conf index 6bec2cd6b37..2df782efc71 100644 --- a/samples/bluetooth/central_ht/boards/frdm_rw612.conf +++ b/samples/bluetooth/central_ht/boards/frdm_rw612.conf @@ -1,2 +1 @@ CONFIG_PM=y -CONFIG_ENTROPY_GENERATOR=y diff --git a/samples/bluetooth/central_ht/boards/rd_rw612_bga.conf b/samples/bluetooth/central_ht/boards/rd_rw612_bga.conf index 6bec2cd6b37..2df782efc71 100644 --- a/samples/bluetooth/central_ht/boards/rd_rw612_bga.conf +++ b/samples/bluetooth/central_ht/boards/rd_rw612_bga.conf @@ -1,2 +1 @@ CONFIG_PM=y -CONFIG_ENTROPY_GENERATOR=y diff --git a/samples/bluetooth/iso_connected_benchmark/prj.conf b/samples/bluetooth/iso_connected_benchmark/prj.conf index eb099a3497a..09781083adb 100644 --- a/samples/bluetooth/iso_connected_benchmark/prj.conf +++ b/samples/bluetooth/iso_connected_benchmark/prj.conf @@ -15,5 +15,3 @@ CONFIG_MAIN_STACK_SIZE=2048 CONFIG_LOG=y CONFIG_CBPRINTF_FP_SUPPORT=y CONFIG_LOG_BUFFER_SIZE=2048 - -CONFIG_ENTROPY_GENERATOR=y diff --git a/samples/bluetooth/peripheral/boards/nucleo_l4r5zi_stm32l4r5xx.conf b/samples/bluetooth/peripheral/boards/nucleo_l4r5zi_stm32l4r5xx.conf deleted file mode 100644 index 5858c7b6db1..00000000000 --- a/samples/bluetooth/peripheral/boards/nucleo_l4r5zi_stm32l4r5xx.conf +++ /dev/null @@ -1 +0,0 @@ -CONFIG_ENTROPY_GENERATOR=y diff --git a/samples/bluetooth/peripheral_csc/prj.conf b/samples/bluetooth/peripheral_csc/prj.conf index fc1993bc808..59dbb7799df 100644 --- a/samples/bluetooth/peripheral_csc/prj.conf +++ b/samples/bluetooth/peripheral_csc/prj.conf @@ -1,4 +1,3 @@ -CONFIG_ENTROPY_GENERATOR=y CONFIG_TEST_RANDOM_GENERATOR=y CONFIG_BT=y CONFIG_BT_PERIPHERAL=y diff --git a/samples/bluetooth/peripheral_ht/boards/frdm_rw612.conf b/samples/bluetooth/peripheral_ht/boards/frdm_rw612.conf index 6bec2cd6b37..2df782efc71 100644 --- a/samples/bluetooth/peripheral_ht/boards/frdm_rw612.conf +++ b/samples/bluetooth/peripheral_ht/boards/frdm_rw612.conf @@ -1,2 +1 @@ CONFIG_PM=y -CONFIG_ENTROPY_GENERATOR=y diff --git a/samples/bluetooth/peripheral_ht/boards/mimxrt1020_evk_mimxrt1021.conf b/samples/bluetooth/peripheral_ht/boards/mimxrt1020_evk_mimxrt1021.conf deleted file mode 100644 index 5858c7b6db1..00000000000 --- a/samples/bluetooth/peripheral_ht/boards/mimxrt1020_evk_mimxrt1021.conf +++ /dev/null @@ -1 +0,0 @@ -CONFIG_ENTROPY_GENERATOR=y diff --git a/samples/bluetooth/peripheral_ht/boards/rd_rw612_bga.conf b/samples/bluetooth/peripheral_ht/boards/rd_rw612_bga.conf index 6bec2cd6b37..2df782efc71 100644 --- a/samples/bluetooth/peripheral_ht/boards/rd_rw612_bga.conf +++ b/samples/bluetooth/peripheral_ht/boards/rd_rw612_bga.conf @@ -1,2 +1 @@ CONFIG_PM=y -CONFIG_ENTROPY_GENERATOR=y diff --git a/samples/bluetooth/st_ble_sensor/prj.conf b/samples/bluetooth/st_ble_sensor/prj.conf index 4bcba44c606..eb6dae37fbe 100644 --- a/samples/bluetooth/st_ble_sensor/prj.conf +++ b/samples/bluetooth/st_ble_sensor/prj.conf @@ -4,4 +4,3 @@ CONFIG_BT_DEVICE_NAME="P2PSRV1" CONFIG_BT_GATT_CLIENT=y CONFIG_LOG=y CONFIG_LOG_BUFFER_SIZE=2048 -CONFIG_ENTROPY_GENERATOR=y diff --git a/samples/boards/st/power_mgmt/stm32wb_ble/prj.conf b/samples/boards/st/power_mgmt/stm32wb_ble/prj.conf index a04a0c309c3..1dff53f1da7 100644 --- a/samples/boards/st/power_mgmt/stm32wb_ble/prj.conf +++ b/samples/boards/st/power_mgmt/stm32wb_ble/prj.conf @@ -2,4 +2,3 @@ CONFIG_BT=y CONFIG_BT_DEVICE_NAME="Test beacon" CONFIG_POWEROFF=y CONFIG_PM=y -CONFIG_ENTROPY_GENERATOR=y diff --git a/tests/bluetooth/shell/audio.conf b/tests/bluetooth/shell/audio.conf index ea738538c4d..5e4e57ff561 100644 --- a/tests/bluetooth/shell/audio.conf +++ b/tests/bluetooth/shell/audio.conf @@ -248,6 +248,3 @@ CONFIG_BT_CTLR_ADV_ISO_STREAM_MAX=4 # Match the number of unicast streams supported in BAP CONFIG_BT_CTLR_ISOAL_SOURCES=2 CONFIG_BT_CTLR_ISOAL_SINKS=2 - -# Enable entropy source for Mbed TLS's PSA Crypto core -CONFIG_ENTROPY_GENERATOR=y diff --git a/tests/bluetooth/tester/boards/frdm_rw612.conf b/tests/bluetooth/tester/boards/frdm_rw612.conf index fc61f3bc7d2..ba1ae16dc7c 100644 --- a/tests/bluetooth/tester/boards/frdm_rw612.conf +++ b/tests/bluetooth/tester/boards/frdm_rw612.conf @@ -1,5 +1,4 @@ CONFIG_BT_MAX_CONN=16 -CONFIG_ENTROPY_GENERATOR=y # debug options # CONFIG_UART_CONSOLE=y diff --git a/tests/bluetooth/tester/boards/rd_rw612_bga.conf b/tests/bluetooth/tester/boards/rd_rw612_bga.conf index fc61f3bc7d2..ba1ae16dc7c 100644 --- a/tests/bluetooth/tester/boards/rd_rw612_bga.conf +++ b/tests/bluetooth/tester/boards/rd_rw612_bga.conf @@ -1,5 +1,4 @@ CONFIG_BT_MAX_CONN=16 -CONFIG_ENTROPY_GENERATOR=y # debug options # CONFIG_UART_CONSOLE=y