mirror of
https://github.com/zephyrproject-rtos/zephyr.git
synced 2024-12-04 10:18:24 +08:00
c54086da54
Now that ethernet drivers are enabled based on devicetree we need to remove any cases of them getting enabled by Kconfig.defconfig* files as this can lead to errors. Signed-off-by: Kumar Gala <galak@kernel.org>
19 lines
284 B
Plaintext
19 lines
284 B
Plaintext
# SAM E54 Xplained Pro board configuration
|
|
#
|
|
# Copyright (c) 2019 Benjamin Valentin
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_ATSAME54_XPRO
|
|
|
|
config BOARD
|
|
default "atsame54_xpro"
|
|
|
|
if NETWORKING
|
|
|
|
config NET_L2_ETHERNET
|
|
default y
|
|
|
|
endif # NETWORKING
|
|
|
|
endif # BOARD_ATSAME54_XPRO
|