subsys/bindesc: Fix kconfig dependency
BINDESC can be used with any POSIX arch based target, not just native_posix. Fix the kconfig filter and the sample yaml filter. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
This commit is contained in:
parent
0ce4de8eec
commit
4a0dec6a5a
|
@ -3,7 +3,6 @@ sample:
|
|||
tests:
|
||||
sample.bindesc:
|
||||
tags: bindesc
|
||||
filter: CONFIG_ARCH_SUPPORTS_ROM_START
|
||||
build_only: true
|
||||
filter: CONFIG_ARCH_SUPPORTS_ROM_START or CONFIG_ARCH_POSIX
|
||||
integration_platforms:
|
||||
- native_posix
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
menuconfig BINDESC
|
||||
bool "Binary Descriptors"
|
||||
depends on ARCH_SUPPORTS_ROM_START || BOARD_NATIVE_POSIX
|
||||
depends on ARCH_SUPPORTS_ROM_START || ARCH_POSIX
|
||||
help
|
||||
Binary Descriptors - constant data accessible outside of the executable image
|
||||
|
||||
|
|
Loading…
Reference in a new issue