Date: Thu, 23 Jan 2020 10:40:34 +0000 (UTC) From: Hans Petter Selasky <hselasky@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r357041 - in head: stand/usb sys/modules/usb/template Message-ID: <202001231040.00NAeYFE064353@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: hselasky Date: Thu Jan 23 10:40:34 2020 New Revision: 357041 URL: https://svnweb.freebsd.org/changeset/base/357041 Log: Fix build of stand/usb . MFC after: 1 week Sponsored by: Mellanox Technologies Modified: head/stand/usb/usbcore.mk head/sys/modules/usb/template/Makefile Modified: head/stand/usb/usbcore.mk ============================================================================== --- head/stand/usb/usbcore.mk Thu Jan 23 10:13:56 2020 (r357040) +++ head/stand/usb/usbcore.mk Thu Jan 23 10:40:34 2020 (r357041) @@ -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 Modified: head/sys/modules/usb/template/Makefile ============================================================================== --- head/sys/modules/usb/template/Makefile Thu Jan 23 10:13:56 2020 (r357040) +++ head/sys/modules/usb/template/Makefile Thu Jan 23 10:40:34 2020 (r357041) @@ -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 @@ -44,5 +44,10 @@ SRCS= opt_bus.h opt_usb.h device_if.h bus_if.h usb_if. usb_template_midi.c \ usb_template_multi.c \ usb_template_cdceem.c + +# +# NOTE: +# Keep source list above in sync with stand/usb/usbcore.mk +# .include <bsd.kmod.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001231040.00NAeYFE064353>