Skip to content

Commit

Permalink
Merge pull request #18364 from MrKevinWeiss/pr/fix/murdock
Browse files Browse the repository at this point in the history
.murdock: Fix kconfig hash check
  • Loading branch information
gschorcht authored Jul 27, 2022
2 parents e1ef2a0 + 43cc07f commit 6b57211
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .murdock
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ compile() {


if [ ${should_check_kconfig_hash} != 0 ]; then
if [ ${kconfig_hashes} != ${no_kconfig_hashes} ]; then
if [ "${kconfig_hashes}" != "${no_kconfig_hashes}" ]; then
echo "Hashes of binaries with and without Kconfig mismatch for ${appdir} with ${board}";
echo "Please check that all used modules are modelled in Kconfig and enabled";
echo "Input without KConfig:"
Expand Down
2 changes: 1 addition & 1 deletion cpu/esp32/Kconfig.esp32
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ config CPU_FAM_ESP32

select PACKAGE_ESP32_SDK if TEST_KCONFIG

select MODULE_LIBC_GETTIMEOFDAY if TEST_KCONFIG
select MODULE_MALLOC_THREAD_SAFE if !MODULE_ESP_IDF_HEAP && TEST_KCONFIG
select MODULE_PERIPH_RTT if HAS_PERIPH_RTT && MODULE_PM_LAYERED
select MODULE_PS if MODULE_SHELL
select MODULE_PTHREAD if MODULE_CPP
Expand Down
4 changes: 4 additions & 0 deletions cpu/esp32/esp-idf/gpio/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@ config MODULE_ESP_IDF_GPIO

help
ESP-IDF code for peripheral GPIO.

config MODULE_ESP_IDF_GPIO_HAL
bool "Use ESP-IDF GPIO Hardware Abstraction Layer"
depends on TEST_KCONFIG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Sets up configuration for openocd
CONFIG_MODULE_ESP_JTAG=y
CONFIG_MODULE_ESP_IDF_GPIO_HAL=y
CONFIG_MODULE_ESP_IDF_HEAP=y
CONFIG_MODULE_ESP_LOG_STARTUP=y
CONFIG_MODULE_ESP_LOG_TAGGED=y
Expand Down

0 comments on commit 6b57211

Please sign in to comment.