1# Private config options for NXP S32 NETC sample app
2
3# Copyright 2022 NXP
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "NXP S32 NETC sample application"
7
8config NET_SAMPLE_IFACE2_MY_IPV6_ADDR
9	string "My IPv6 address for second interface"
10	help
11	  The value depends on your network setup.
12
13config NET_SAMPLE_IFACE2_MY_IPV4_ADDR
14	string "My IPv4 address for second interface"
15	help
16	  The value depends on your network setup.
17
18config NET_SAMPLE_IFACE2_MY_IPV4_NETMASK
19	string "My IPv4 netmask for second interface"
20	default "255.255.255.0"
21	help
22	  Static netmask to use.
23
24source "Kconfig.zephyr"
25