diff options
Diffstat (limited to 'roms/u-boot/drivers/usb/eth/Makefile')
-rw-r--r-- | roms/u-boot/drivers/usb/eth/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roms/u-boot/drivers/usb/eth/Makefile b/roms/u-boot/drivers/usb/eth/Makefile new file mode 100644 index 00000000..94551c4c --- /dev/null +++ b/roms/u-boot/drivers/usb/eth/Makefile @@ -0,0 +1,12 @@ +# +# Copyright (c) 2011 The Chromium OS Authors. +# SPDX-License-Identifier: GPL-2.0+ +# + +# new USB host ethernet layer dependencies +obj-$(CONFIG_USB_HOST_ETHER) += usb_ether.o +ifdef CONFIG_USB_ETHER_ASIX +obj-y += asix.o +endif +obj-$(CONFIG_USB_ETHER_MCS7830) += mcs7830.o +obj-$(CONFIG_USB_ETHER_SMSC95XX) += smsc95xx.o |