Date: Mon, 3 Feb 2020 10:53:04 +0000 (UTC) From: Hans Petter Selasky <hselasky@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r357433 - in stable/12: stand/usb sys/modules/usb/template Message-ID: <202002031053.013Ar4Ac053552@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: hselasky Date: Mon Feb 3 10:53:03 2020 New Revision: 357433 URL: https://svnweb.freebsd.org/changeset/base/357433 Log: MFC r357041: Fix build of stand/usb . Sponsored by: Mellanox Technologies Modified: stable/12/stand/usb/usbcore.mk stable/12/sys/modules/usb/template/Makefile Directory Properties: stable/12/ (props changed) Modified: stable/12/stand/usb/usbcore.mk ============================================================================== --- stable/12/stand/usb/usbcore.mk Mon Feb 3 10:50:52 2020 (r357432) +++ stable/12/stand/usb/usbcore.mk Mon Feb 3 10:53:03 2020 (r357433) @@ -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: stable/12/sys/modules/usb/template/Makefile ============================================================================== --- stable/12/sys/modules/usb/template/Makefile Mon Feb 3 10:50:52 2020 (r357432) +++ stable/12/sys/modules/usb/template/Makefile Mon Feb 3 10:53:03 2020 (r357433) @@ -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?202002031053.013Ar4Ac053552>