svn commit: r357433 - in stable/12: stand/usb sys/modules/usb/template
Hans Petter Selasky
hselasky at FreeBSD.org
Mon Feb 3 10:53:04 UTC 2020
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>
More information about the svn-src-all
mailing list