mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-19 12:05:22 +00:00
When used suitable config overlay, qemu_cortex_m3 with Ethernet support can be started with just usual "make run". An example of such overlay is included with samples/net/echo_server, can be built and run with: make BOARD=qemu_cortex_m3 \ CONF_FILE="prj.conf overlay-qemu_cortex_m3_eth.conf" run Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
22 lines
488 B
Plaintext
22 lines
488 B
Plaintext
# Kconfig - ETH_STELLARIS Ethernet driver configuration options
|
|
|
|
#
|
|
# Copyright (c) 2018 Zilogic Systems
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig ETH_STELLARIS
|
|
bool "Enable TI Stellaris MCU family ethernet driver."
|
|
help
|
|
Stellaris on-board Ethernet Controller
|
|
|
|
# Hidden option
|
|
config ETH_NIC_MODEL
|
|
string
|
|
default "stellaris"
|
|
depends on ETH_STELLARIS
|
|
help
|
|
Tells what Qemu network model to use. This value is given as
|
|
a parameter to -nic qemu command line option.
|