mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-27 06:50:37 +00:00

The way how the virtual interface is called inside the batman-adv source code is not consistent. The genl headers call it meshif and the rest of the code calls is (mostly) softif. The genl definitions cannot be touched because they are part of the UAPI. But the rest of the batman-adv code can be touched to have a consistent name again. The bulk of the renaming was done using sed -i -e 's/soft\(-\|\_\| \|\)i\([nf]\)/mesh\1i\2/g' \ -e 's/SOFT\(-\|\_\| \|\)I\([NF]\)/MESH\1I\2/g' and then it was adjusted slightly when proofreading the changes. Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
36 lines
1.2 KiB
Makefile
36 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) B.A.T.M.A.N. contributors:
|
|
#
|
|
# Marek Lindner, Simon Wunderlich
|
|
|
|
obj-$(CONFIG_BATMAN_ADV) += batman-adv.o
|
|
batman-adv-y += bat_algo.o
|
|
batman-adv-y += bat_iv_ogm.o
|
|
batman-adv-$(CONFIG_BATMAN_ADV_BATMAN_V) += bat_v.o
|
|
batman-adv-$(CONFIG_BATMAN_ADV_BATMAN_V) += bat_v_elp.o
|
|
batman-adv-$(CONFIG_BATMAN_ADV_BATMAN_V) += bat_v_ogm.o
|
|
batman-adv-y += bitarray.o
|
|
batman-adv-$(CONFIG_BATMAN_ADV_BLA) += bridge_loop_avoidance.o
|
|
batman-adv-$(CONFIG_BATMAN_ADV_DAT) += distributed-arp-table.o
|
|
batman-adv-y += fragmentation.o
|
|
batman-adv-y += gateway_client.o
|
|
batman-adv-y += gateway_common.o
|
|
batman-adv-y += hard-interface.o
|
|
batman-adv-y += hash.o
|
|
batman-adv-$(CONFIG_BATMAN_ADV_DEBUG) += log.o
|
|
batman-adv-y += main.o
|
|
batman-adv-y += mesh-interface.o
|
|
batman-adv-$(CONFIG_BATMAN_ADV_MCAST) += multicast.o
|
|
batman-adv-$(CONFIG_BATMAN_ADV_MCAST) += multicast_forw.o
|
|
batman-adv-y += netlink.o
|
|
batman-adv-$(CONFIG_BATMAN_ADV_NC) += network-coding.o
|
|
batman-adv-y += originator.o
|
|
batman-adv-y += routing.o
|
|
batman-adv-y += send.o
|
|
batman-adv-$(CONFIG_BATMAN_ADV_TRACING) += trace.o
|
|
batman-adv-y += tp_meter.o
|
|
batman-adv-y += translation-table.o
|
|
batman-adv-y += tvlv.o
|
|
|
|
CFLAGS_trace.o := -I$(src)
|