Kconfig 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #
  2. # Apple device configuration
  3. #
  4. config NET_VENDOR_APPLE
  5. bool "Apple devices"
  6. default y
  7. depends on (PPC_PMAC && PPC32) || MAC
  8. ---help---
  9. If you have a network (Ethernet) card belonging to this class, say Y
  10. and read the Ethernet-HOWTO, available from
  11. <http://www.tldp.org/docs.html#howto>.
  12. Note that the answer to this question doesn't directly affect the
  13. kernel: saying N will just cause the configurator to skip all
  14. the questions about IBM devices. If you say Y, you will be asked for
  15. your specific card in the following questions.
  16. if NET_VENDOR_APPLE
  17. config MACE
  18. tristate "MACE (Power Mac ethernet) support"
  19. depends on PPC_PMAC && PPC32
  20. select CRC32
  21. ---help---
  22. Power Macintoshes and clones with Ethernet built-in on the
  23. motherboard will usually use a MACE (Medium Access Control for
  24. Ethernet) interface. Say Y to include support for the MACE chip.
  25. To compile this driver as a module, choose M here: the module
  26. will be called mace.
  27. config MACE_AAUI_PORT
  28. bool "Use AAUI port instead of TP by default"
  29. depends on MACE
  30. ---help---
  31. Some Apple machines (notably the Apple Network Server) which use the
  32. MACE ethernet chip have an Apple AUI port (small 15-pin connector),
  33. instead of an 8-pin RJ45 connector for twisted-pair ethernet. Say
  34. Y here if you have such a machine. If unsure, say N.
  35. The driver will default to AAUI on ANS anyway, and if you use it as
  36. a module, you can provide the port_aaui=0|1 to force the driver.
  37. config BMAC
  38. tristate "BMAC (G3 ethernet) support"
  39. depends on PPC_PMAC && PPC32
  40. select CRC32
  41. ---help---
  42. Say Y for support of BMAC Ethernet interfaces. These are used on G3
  43. computers.
  44. To compile this driver as a module, choose M here: the module
  45. will be called bmac.
  46. config MACMACE
  47. bool "Macintosh (AV) onboard MACE ethernet"
  48. depends on MAC
  49. select CRC32
  50. ---help---
  51. Support for the onboard AMD 79C940 MACE Ethernet controller used in
  52. the 660AV and 840AV Macintosh. If you have one of these Macintoshes
  53. say Y and read the Ethernet-HOWTO, available from
  54. <http://www.tldp.org/docs.html#howto>.
  55. endif # NET_VENDOR_APPLE