diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-29 18:34:37 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-29 18:34:37 +0000 |
commit | d00d04413cfa60f01c5d22e326eff53f771583a7 (patch) | |
tree | 9c46b4206a4458c90cef68971691bc4621b893f3 /target/x86/grub/Config.in | |
parent | 0ba1bd72f32e9f335246580e3d47e5c10fd037bd (diff) | |
download | buildroot-novena-d00d04413cfa60f01c5d22e326eff53f771583a7.tar.gz buildroot-novena-d00d04413cfa60f01c5d22e326eff53f771583a7.zip |
- added diskless/net support and new patches, mainly network drivers.
Closes #721. Thanks, janlana
Diffstat (limited to 'target/x86/grub/Config.in')
-rw-r--r-- | target/x86/grub/Config.in | 153 |
1 files changed, 153 insertions, 0 deletions
diff --git a/target/x86/grub/Config.in b/target/x86/grub/Config.in index 72326055a..43c9d89b6 100644 --- a/target/x86/grub/Config.in +++ b/target/x86/grub/Config.in @@ -15,3 +15,156 @@ config BR2_TARGET_GRUB_SPLASH A splashimage is a 14-color indexed .xpm picture which is displayed as background for the grub menu. +config BR2_TARGET_GRUB_DISKLESS + bool "enable diskless support" + default n + depends on BR2_TARGET_GRUB + help + enable diskless support + +config BR2_TARGET_GRUB_3c595 + bool "enable 3Com595 driver" + default n + depends on BR2_TARGET_GRUB + help + enable 3Com595 driver + +config BR2_TARGET_GRUB_3c90x + bool "enable 3Com90x driver" + default n + depends on BR2_TARGET_GRUB + help + enable 3Com90x driver + +config BR2_TARGET_GRUB_davicom + bool "enable Davicom driver" + default n + depends on BR2_TARGET_GRUB + help + enable Davicom driver + +config BR2_TARGET_GRUB_e1000 + bool "enable Etherexpress Pro/1000 driver" + default n + depends on BR2_TARGET_GRUB + help + enable Etherexpress Pro/1000 driver + +config BR2_TARGET_GRUB_eepro100 + bool "enable Etherexpress Pro/100 driver" + default n + depends on BR2_TARGET_GRUB + help + enable Etherexpress Pro/100 driver + +config BR2_TARGET_GRUB_epic100 + bool "enable SMC 83c170 EPIC/100 driver" + default n + depends on BR2_TARGET_GRUB + help + enable SMC 83c170 EPIC/100 driver + +config BR2_TARGET_GRUB_forcedeth + bool "enable Nvidia Geforce driver" + default n + depends on BR2_TARGET_GRUB + help + enable Nvidia Geforce driver + +config BR2_TARGET_GRUB_natsemi + bool "enable NatSemi DP8381x driver" + default n + depends on BR2_TARGET_GRUB + help + enable NatSemi DP8381x driver + +config BR2_TARGET_GRUB_ns83820 + bool "enable NS83820 driver" + default n + depends on BR2_TARGET_GRUB + help + enable NS83820 driver + +config BR2_TARGET_GRUB_ns8390 + bool "enable NE2000 PCI driver" + default n + depends on BR2_TARGET_GRUB + help + enable NE2000 PCI driver + +config BR2_TARGET_GRUB_pcnet32 + bool "enable AMD Lance/PCI PCNet/32 driver" + default n + depends on BR2_TARGET_GRUB + help + enable AMD Lance/PCI PCNet/32 driver + +config BR2_TARGET_GRUB_pnic + bool "enable Bochs Pseudo Nic driver" + default n + depends on BR2_TARGET_GRUB + help + enable Bochs Pseudo Nic driver + +config BR2_TARGET_GRUB_rtl8139 + bool "enable Realtek 8139 driver" + default n + depends on BR2_TARGET_GRUB + help + enable Realtek 8139 driver + +config BR2_TARGET_GRUB_r8169 + bool "enable Realtek 8169 driver" + default n + depends on BR2_TARGET_GRUB + help + enable Realtek 8169 driver + +config BR2_TARGET_GRUB_sis900 + bool "enable SIS 900 and SIS 7016 driver" + default n + depends on BR2_TARGET_GRUB + help + enable SIS 900 and SIS 7016 driver + +config BR2_TARGET_GRUB_tg3 + bool "enable Broadcom Tigon3 driver" + default n + depends on BR2_TARGET_GRUB + help + enable Broadcom Tigon3 driver + +config BR2_TARGET_GRUB_tulip + bool "enable Tulip driver" + default n + depends on BR2_TARGET_GRUB + help + enable Tulip driver + +config BR2_TARGET_GRUB_tlan + bool "enable TI ThunderLAN driver" + default n + depends on BR2_TARGET_GRUB + help + enable TI ThunderLAN driver + +config BR2_TARGET_GRUB_undi + bool "enable PXE UNDI driver" + default n + depends on BR2_TARGET_GRUB + help + enable PXE UNDI driver + +config BR2_TARGET_GRUB_via_rhine + bool "enable Rhine-I/II driver" + default n + depends on BR2_TARGET_GRUB + help + enable Rhine-I/II driver + +config BR2_TARGET_GRUB_w89c840 + bool "enable Winbond W89c840 driver" + default n + depends on BR2_TARGET_GRUB + help + enable Winbond W89c840 driver |