64 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Apple device configuration4#5 6config NET_VENDOR_APPLE7 bool "Apple devices"8 default y9 depends on (PPC_PMAC && PPC32) || MAC10 help11 If you have a network (Ethernet) card belonging to this class, say Y.12 13 Note that the answer to this question doesn't directly affect the14 kernel: saying N will just cause the configurator to skip all the15 questions about Apple devices. If you say Y, you will be asked for16 your specific card in the following questions.17 18if NET_VENDOR_APPLE19 20config MACE21 tristate "MACE (Power Mac ethernet) support"22 depends on PPC_PMAC && PPC3223 select CRC3224 help25 Power Macintoshes and clones with Ethernet built-in on the26 motherboard will usually use a MACE (Medium Access Control for27 Ethernet) interface. Say Y to include support for the MACE chip.28 29 To compile this driver as a module, choose M here: the module30 will be called mace.31 32config MACE_AAUI_PORT33 bool "Use AAUI port instead of TP by default"34 depends on MACE35 help36 Some Apple machines (notably the Apple Network Server) which use the37 MACE ethernet chip have an Apple AUI port (small 15-pin connector),38 instead of an 8-pin RJ45 connector for twisted-pair ethernet. Say39 Y here if you have such a machine. If unsure, say N.40 The driver will default to AAUI on ANS anyway, and if you use it as41 a module, you can provide the port_aaui=0|1 to force the driver.42 43config BMAC44 tristate "BMAC (G3 ethernet) support"45 depends on PPC_PMAC && PPC3246 select CRC3247 help48 Say Y for support of BMAC Ethernet interfaces. These are used on G349 computers.50 51 To compile this driver as a module, choose M here: the module52 will be called bmac.53 54config MACMACE55 tristate "Macintosh (AV) onboard MACE ethernet"56 depends on MAC57 select CRC3258 help59 Support for the onboard AMD 79C940 MACE Ethernet controller used in60 the 660AV and 840AV Macintosh. If you have one of these Macintoshes61 say Y here.62 63endif # NET_VENDOR_APPLE64