mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
06e6bc1b7a
It is not appropriate for TIPC to use "diag" as its diag module name while the other protocols are using "$(protoname)_diag" like tcp_diag, udp_diag and sctp_diag etc. So this patch is to rename diag.ko to tipc_diag.ko in tipc's Makefile. Signed-off-by: Xin Long <lucien.xin@gmail.com> Reviewed-by: Tung Nguyen <tung.q.nguyen@dektech.com.au> Link: https://lore.kernel.org/r/d909edeef072da1810bd5869fdbbfe84411efdb2.1706904669.git.lucien.xin@gmail.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
23 lines
582 B
Makefile
23 lines
582 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux TIPC layer
|
|
#
|
|
|
|
obj-$(CONFIG_TIPC) := tipc.o
|
|
|
|
tipc-y += addr.o bcast.o bearer.o \
|
|
core.o link.o discover.o msg.o \
|
|
name_distr.o subscr.o monitor.o name_table.o net.o \
|
|
netlink.o netlink_compat.o node.o socket.o eth_media.o \
|
|
topsrv.o group.o trace.o
|
|
|
|
CFLAGS_trace.o += -I$(src)
|
|
|
|
tipc-$(CONFIG_TIPC_MEDIA_UDP) += udp_media.o
|
|
tipc-$(CONFIG_TIPC_MEDIA_IB) += ib_media.o
|
|
tipc-$(CONFIG_SYSCTL) += sysctl.o
|
|
tipc-$(CONFIG_TIPC_CRYPTO) += crypto.o
|
|
|
|
obj-$(CONFIG_TIPC_DIAG) += tipc_diag.o
|
|
tipc_diag-y += diag.o
|