mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-08 12:10:59 +00:00
bootloader: Kconfig files in bootloader_components is now part of menuconfig
It is now possible to configure the options (Kconfig) of bootloader components directly from the menuconfig
This commit is contained in:
@@ -10,7 +10,10 @@ def test_custom_bootloader_impl_example(env, _): # type: ignore
|
||||
dut.start_app()
|
||||
|
||||
# Expect to read a message from the custom bootloader
|
||||
dut.expect('Custom bootloader has been initialized correctly.')
|
||||
# This message is defined in the Kconfig file, retrieve it while deleting
|
||||
# leading and trailing quotes (")
|
||||
welcome_message = dut.app.get_sdkconfig()['CONFIG_EXAMPLE_BOOTLOADER_WELCOME_MESSAGE'].strip("\"")
|
||||
dut.expect(welcome_message)
|
||||
|
||||
# Expect to read a message from the user application
|
||||
dut.expect('Application started!')
|
||||
|
Reference in New Issue
Block a user