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.
22 lines
536 B
22 lines
536 B
# Copyright 2024 Nordic Semiconductor ASA |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
config TEST_FOO_VAL |
|
int "Test value" |
|
default 0 |
|
help |
|
This option's value should be overridden by the 'foo' snippet config overlay. |
|
|
|
config EXPECTED_SB_TEST_FOO_VAL |
|
int "Expected sysbuild test value" |
|
default 999999 |
|
help |
|
Expected sysbuild value for the test. |
|
|
|
config EXPECTED_APP_TEST_FOO_VAL |
|
int "Expected application test value" |
|
default 999999 |
|
help |
|
Expected application value for the test. |
|
|
|
source "${ZEPHYR_BASE}/share/sysbuild/Kconfig"
|
|
|