mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-24 05:40:09 -04:00
Add a dedicated CONFIG_PPPOX symbol to handle the PPPoX generic module, avoiding redundant pppox.o definitions in the Makefile. Signed-off-by: Qingfang Deng <qingfang.deng@linux.dev> Link: https://patch.msgid.link/20260428012830.3069-1-qingfang.deng@linux.dev Signed-off-by: Jakub Kicinski <kuba@kernel.org>
15 lines
422 B
Makefile
15 lines
422 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux PPP network device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_PPP) += ppp_generic.o
|
|
obj-$(CONFIG_PPP_ASYNC) += ppp_async.o
|
|
obj-$(CONFIG_PPP_BSDCOMP) += bsd_comp.o
|
|
obj-$(CONFIG_PPP_DEFLATE) += ppp_deflate.o
|
|
obj-$(CONFIG_PPP_MPPE) += ppp_mppe.o
|
|
obj-$(CONFIG_PPP_SYNC_TTY) += ppp_synctty.o
|
|
obj-$(CONFIG_PPPOX) += pppox.o
|
|
obj-$(CONFIG_PPPOE) += pppoe.o
|
|
obj-$(CONFIG_PPTP) += pptp.o
|