walnux/drivers/net/Make.defs
michal matias 4a4235b5a2 drivers/net: Remove the NCV7410 10BASE-T1S MAC-PHY driver
This commit removes existing support for the NCV7410 10BASE-T1S MAC-PHY.
The driver will be replaced by its generalized version with different organization.
The new driver has naming clashes with the old, therefore the old has to be removed first.

Signed-off-by: michal matias <mich4l.matias@gmail.com>
2025-08-25 20:32:35 +08:00

118 lines
2.4 KiB
Text

############################################################################
# drivers/net/Make.defs
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
# ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
############################################################################
# Include nothing if networking is disabled
ifeq ($(CONFIG_NET),y)
# Include network interface drivers
ifeq ($(CONFIG_MM_IOB),y)
CSRCS += netdev_upperhalf.c
endif
ifeq ($(CONFIG_NET_LOOPBACK),y)
CSRCS += loopback.c
endif
ifeq ($(CONFIG_NET_RPMSG_DRV),y)
CSRCS += rpmsgdrv.c
endif
ifeq ($(CONFIG_NETDEV_TELNET),y)
CSRCS += telnet.c
endif
ifeq ($(CONFIG_NET_DM90x0),y)
CSRCS += dm90x0.c
endif
ifeq ($(CONFIG_ENC28J60),y)
CSRCS += enc28j60.c
endif
ifeq ($(CONFIG_ENCX24J600),y)
CSRCS += encx24j600.c
endif
ifeq ($(CONFIG_NET_SLIP),y)
CSRCS += slip.c
endif
ifeq ($(CONFIG_NET_TUN),y)
CSRCS += tun.c
endif
ifeq ($(CONFIG_NET_FTMAC100),y)
CSRCS += ftmac100.c
endif
ifeq ($(CONFIG_NET_LAN91C111),y)
CSRCS += lan91c111.c
endif
ifeq ($(CONFIG_NET_SKELETON),y)
CSRCS += skeleton.c
endif
ifeq ($(CONFIG_NET_W5500),y)
CSRCS += w5500.c
endif
ifeq ($(CONFIG_NET_LAN9250),y)
CSRCS += lan9250.c
endif
ifeq ($(CONFIG_ARCH_PHY_INTERRUPT),y)
CSRCS += phy_notify.c
endif
ifeq ($(CONFIG_NET_KSZ9477),y)
CSRCS += ksz9477.c
ifeq ($(CONFIG_NET_KSZ9477_I2C),y)
CSRCS += ksz9477_i2c.c
endif
endif
ifeq ($(CONFIG_NET_E1000),y)
CSRCS += e1000.c
endif
ifeq ($(CONFIG_NET_IGB),y)
CSRCS += igb.c
endif
ifeq ($(CONFIG_NET_IGC),y)
CSRCS += igc.c
endif
ifeq ($(CONFIG_DRIVERS_WIFI_SIM),y)
CSRCS += wifi_sim.c
endif
# Include network build support
DEPPATH += --dep-path net
VPATH += :net
endif