mirror of
https://github.com/torvalds/linux
synced 2026-07-21 17:50:43 +09:00
AppleTalk has been removed in MacOS X 10.6 (Snow Leopard), in 2009, according to Wikipedia. We recently got a burst of AI generated fixes to this protocol which nobody is reviewing. Let AppleTalk follow AX.25 and hamradio out of the Linux tree. We we will maintain the code at: github.com/linux-netdev/mod-orphan for anyone interested in playing with it. Retain the uAPI for now. No strong reason, simply because I suspect keeping it will be less controversial. Acked-by: Stephen Hemminger <stephen@networkplumber.org> Link: https://patch.msgid.link/20260615222935.947233-3-kuba@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
12 lines
290 B
Makefile
12 lines
290 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux 802.x protocol layers.
|
|
#
|
|
|
|
obj-$(CONFIG_LLC) += psnap.o
|
|
obj-$(CONFIG_NET_FC) += fc.o
|
|
obj-$(CONFIG_FDDI) += fddi.o
|
|
obj-$(CONFIG_STP) += stp.o
|
|
obj-$(CONFIG_GARP) += garp.o
|
|
obj-$(CONFIG_MRP) += mrp.o
|