diff --git a/stand/usb/usbcore.mk b/stand/usb/usbcore.mk index b43d9d247101..7e0cc989228b 100644 --- a/stand/usb/usbcore.mk +++ b/stand/usb/usbcore.mk @@ -1,7 +1,7 @@ # # $FreeBSD$ # -# Copyright (c) 2013 Hans Petter Selasky. +# Copyright (c) 2013-2020 Hans Petter Selasky. # Copyright (c) 2014 SRI International # All rights reserved. # @@ -162,6 +162,8 @@ KSRCS+= usb_template_audio.c KSRCS+= usb_template_phone.c KSRCS+= usb_template_serialnet.c KSRCS+= usb_template_midi.c +KSRCS+= usb_template_multi.c +KSRCS+= usb_template_cdceem.c # # USB mass storage support diff --git a/sys/modules/usb/template/Makefile b/sys/modules/usb/template/Makefile index ee44fb129f2f..e6179d69e087 100644 --- a/sys/modules/usb/template/Makefile +++ b/sys/modules/usb/template/Makefile @@ -1,7 +1,7 @@ # # $FreeBSD$ # -# Copyright (c) 2008 Hans Petter Selasky. All rights reserved. +# Copyright (c) 2008-2020 Hans Petter Selasky. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions @@ -45,4 +45,9 @@ SRCS= opt_bus.h opt_usb.h device_if.h bus_if.h usb_if.h vnode_if.h usbdevs.h \ usb_template_multi.c \ usb_template_cdceem.c +# +# NOTE: +# Keep source list above in sync with stand/usb/usbcore.mk +# + .include