CONFIG_ETH_INIT_PRIORITY¶
Ethernet driver init priority
Type: int
Help¶
Ethernet device driver initialization priority.
Do not mess with it unless you know what you are doing.
Note that the priority needs to be lower than the net stack
so that it can start before the networking sub-system.
Default¶
- 80 
Kconfig definition¶
At <Zephyr Driver>/ethernet/Kconfig:15
Included via Kconfig:8 → Kconfig.zephyr:42 → <Zephyr Driver>/Kconfig:20
Menu path: (Top) → Device Drivers → Ethernet Drivers
config ETH_INIT_PRIORITY
    int "Ethernet driver init priority"
    default 80
    depends on NET_L2_ETHERNET
    help
      Ethernet device driver initialization priority.
      Do not mess with it unless you know what you are doing.
      Note that the priority needs to be lower than the net stack
      so that it can start before the networking sub-system.
(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)