svn commit: r255923 - in head/sys/modules/hyperv: netvsc stordisengage storvsc utilities vmbus

Bjoern A. Zeeb bzeeb-lists at lists.zabbadoz.net
Sun Sep 29 00:47:06 UTC 2013


On Sat, 28 Sep 2013, Ulrich Spoerlein wrote:

> Author: uqs
> Date: Sat Sep 28 07:04:03 2013
> New Revision: 255923
> URL: http://svnweb.freebsd.org/changeset/base/255923
>
> Log:
>  Fix make depend, apply a bit of style.

please try not to in one commit.  It's a pain to figure out the
function from the style change -- even for Makefiles.


>  Approved by:	re (marius)
>  Reviewed by:	grehan
>
> Modified:
>  head/sys/modules/hyperv/netvsc/Makefile
>  head/sys/modules/hyperv/stordisengage/Makefile
>  head/sys/modules/hyperv/storvsc/Makefile
>  head/sys/modules/hyperv/utilities/Makefile
>  head/sys/modules/hyperv/vmbus/Makefile
>
> Modified: head/sys/modules/hyperv/netvsc/Makefile
> ==============================================================================
> --- head/sys/modules/hyperv/netvsc/Makefile	Sat Sep 28 05:56:37 2013	(r255922)
> +++ head/sys/modules/hyperv/netvsc/Makefile	Sat Sep 28 07:04:03 2013	(r255923)
> @@ -2,12 +2,12 @@
>
> .PATH:  ${.CURDIR}/../../../dev/hyperv/netvsc
>
> -KMOD    = hv_netvsc
> +KMOD=	hv_netvsc
> +SRCS=	hv_net_vsc.c \
> +	hv_netvsc_drv_freebsd.c \
> +	hv_rndis_filter.c
> +SRCS+=	bus_if.h device_if.h
>
> -SRCS    = hv_net_vsc.c \
> -	  hv_netvsc_drv_freebsd.c \
> -	  hv_rndis_filter.c
> -
> -CFLAGS 	+= -I${.CURDIR}/../../../dev/hyperv/netvsc
> +CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/netvsc
>
> .include <bsd.kmod.mk>
>
> Modified: head/sys/modules/hyperv/stordisengage/Makefile
> ==============================================================================
> --- head/sys/modules/hyperv/stordisengage/Makefile	Sat Sep 28 05:56:37 2013	(r255922)
> +++ head/sys/modules/hyperv/stordisengage/Makefile	Sat Sep 28 07:04:03 2013	(r255923)
> @@ -2,8 +2,8 @@
>
> .PATH:  ${.CURDIR}/../../../dev/hyperv/stordisengage
>
> -KMOD=	 hv_ata_pci_disengage
> -
> -SRCS=	hv_ata_pci_disengage.c ata_if.h
> +KMOD=	hv_ata_pci_disengage
> +SRCS=	hv_ata_pci_disengage.c
> +SRCS+=	ata_if.h bus_if.h device_if.h pci_if.h
>
> .include <bsd.kmod.mk>
>
> Modified: head/sys/modules/hyperv/storvsc/Makefile
> ==============================================================================
> --- head/sys/modules/hyperv/storvsc/Makefile	Sat Sep 28 05:56:37 2013	(r255922)
> +++ head/sys/modules/hyperv/storvsc/Makefile	Sat Sep 28 07:04:03 2013	(r255923)
> @@ -2,10 +2,10 @@
>
> .PATH:  ${.CURDIR}/../../../dev/hyperv/storvsc
>
> -KMOD=	 hv_storvsc
> -
> +KMOD=	hv_storvsc
> SRCS =	hv_storvsc_drv_freebsd.c \
> 	hv_vstorage.h
> +SRCS+=	bus_if.h device_if.h opt_cam.h
>
> CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \
> 	 -I${.CURDIR}/../../../dev/hyperv/vmbus	\
>
> Modified: head/sys/modules/hyperv/utilities/Makefile
> ==============================================================================
> --- head/sys/modules/hyperv/utilities/Makefile	Sat Sep 28 05:56:37 2013	(r255922)
> +++ head/sys/modules/hyperv/utilities/Makefile	Sat Sep 28 07:04:03 2013	(r255923)
> @@ -3,8 +3,8 @@
> .PATH:	${.CURDIR}/../../../dev/hyperv/utilities
>
> KMOD=	hv_utils
> -
> -SRCS =  hv_util.c
> +SRCS=	hv_util.c
> +SRCS+=	bus_if.h device_if.h
>
> CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \
> 	 -I${.CURDIR}/../../../dev/hyperv/vmbus
>
> Modified: head/sys/modules/hyperv/vmbus/Makefile
> ==============================================================================
> --- head/sys/modules/hyperv/vmbus/Makefile	Sat Sep 28 05:56:37 2013	(r255922)
> +++ head/sys/modules/hyperv/vmbus/Makefile	Sat Sep 28 07:04:03 2013	(r255923)
> @@ -3,15 +3,15 @@
> .PATH:	${.CURDIR}/../../../dev/hyperv/vmbus \
> 	${.CURDIR}/../../../dev/hyperv/utilities
>
> -KMOD=	 hv_vmbus
> -
> -SRCS =  hv_channel.c \
> +KMOD=	hv_vmbus
> +SRCS=	hv_channel.c \
> 	hv_channel_mgmt.c \
> 	hv_connection.c \
> 	hv_hv.c \
> 	hv_ring_buffer.c \
> 	hv_vmbus_drv_freebsd.c \
> 	hv_vmbus_priv.h
> +SRCS+=	bus_if.h device_if.h
>
> CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \
> 	 -I${.CURDIR}/../../../dev/hyperv/vmbus \
>

-- 
Bjoern A. Zeeb                             ????????? ??? ??????? ??????:
'??? ??? ???? ??????  ??????? ?? ?? ??????? ??????? ??? ????? ????? ????
?????? ?? ????? ????',  ????????? ?????????, "??? ????? ?? ?????", ?.???


More information about the svn-src-all mailing list