If user sets CONFIG_NUM_PREEMPT_PRIORITIES=0, then the priority of the net_mgmt thread will be -1 which is the same as idle thread. This will trigger assert in kernel as then the minimum coop priority is -2 in this case. Remove the net_mgmt thread priority setting from Kconfig file as it is low value and set the coop thread priority the same way as other network threads are doing it. Fixes #32375 Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
19 lines
412 B
Plaintext
19 lines
412 B
Plaintext
CONFIG_NETWORKING=y
|
|
CONFIG_NET_TEST=y
|
|
CONFIG_ENTROPY_GENERATOR=y
|
|
CONFIG_TEST_RANDOM_GENERATOR=y
|
|
CONFIG_NET_L2_DUMMY=y
|
|
CONFIG_DNS_RESOLVER=y
|
|
CONFIG_DNS_RESOLVER_MAX_SERVERS=2
|
|
CONFIG_DNS_NUM_CONCUR_QUERIES=1
|
|
CONFIG_NET_LOG=y
|
|
CONFIG_NET_MGMT=y
|
|
CONFIG_NET_MGMT_EVENT=y
|
|
CONFIG_NET_MGMT_EVENT_QUEUE_SIZE=2
|
|
CONFIG_NET_IPV4=y
|
|
CONFIG_NET_IPV6=y
|
|
CONFIG_NET_ARP=n
|
|
CONFIG_PRINTK=y
|
|
CONFIG_ZTEST=y
|
|
CONFIG_MAIN_STACK_SIZE=2048
|