Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) # SPDX-License-Identifier: GPL-2.0
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) #
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) # Makefile for the L2TP.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) #
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) obj-$(CONFIG_L2TP) += l2tp_core.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) CFLAGS_l2tp_core.o += -I$(src)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) # Build l2tp as modules if L2TP is M
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_PPPOL2TP)) += l2tp_ppp.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_L2TP_IP)) += l2tp_ip.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_L2TP_V3)) += l2tp_netlink.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_L2TP_ETH)) += l2tp_eth.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_L2TP_DEBUGFS)) += l2tp_debugfs.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) ifneq ($(CONFIG_IPV6),)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_L2TP_IP)) += l2tp_ip6.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) endif