diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-07-25 15:40:23 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-07-25 15:40:23 +0000 |
commit | 92c70bff6423a67a2ee3d3bdfefffae88aae7e59 (patch) | |
tree | e2b48a5bc1e3887ee0186714507fd14827541fe3 /target/linux/Config.in | |
parent | 57db8eb1766ba3ccfa458b36ba6efca13589b2db (diff) | |
download | upstream-92c70bff6423a67a2ee3d3bdfefffae88aae7e59.tar.gz upstream-92c70bff6423a67a2ee3d3bdfefffae88aae7e59.tar.bz2 upstream-92c70bff6423a67a2ee3d3bdfefffae88aae7e59.zip |
add preliminary support for soekris boards
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1564 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/Config.in')
-rw-r--r-- | target/linux/Config.in | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/target/linux/Config.in b/target/linux/Config.in index bd1faff02e..cb642f7e15 100644 --- a/target/linux/Config.in +++ b/target/linux/Config.in @@ -6,6 +6,7 @@ config BR2_LINUX_2_4 config BR2_LINUX_2_4_BRCM bool "Support for Broadcom based routers" default y + depends BR2_mipsel help Build firmware images for Broadcom based routers (e.g. Linksys WRT54G(S), Asus WL-500g, Motorola WR850G) @@ -32,9 +33,29 @@ config BR2_LINUX_2_4_BRCM config BR2_LINUX_2_4_AR7 bool "Support for TI AR7 based devices" default n + depends BR2_mipsel help Build firmware images for TI AR7 based routers (w.g. Linksys WAG54G v2) +config BR2_LINUX_2_4_SOEKRIS + bool "Support for Soekris boards" + default n + depends BR2_i386 + help + Build firmware images for Soekris based boards + (e.g. net4521, net4801) + + config BR2_TARGET_NET4521 + default y + depends BR2_LINUX_2_4_SOEKRIS + bool "Soekris net4521" + + config BR2_TARGET_NET4801 + default y + depends BR2_LINUX_2_4_SOEKRIS + bool "Soekris net4801" + + comment "Kernel Modules" config BR2_PACKAGE_KMOD_SANGAM_ATM @@ -293,4 +314,21 @@ config BR2_PACKAGE_KMOD_SCHED help Kernel schedulers for IP traffic + +config BR2_PACKAGE_KMOD_NATSEMI + tristate "Soekris net4801 ethernet driver" + default y + depends BR2_LINUX_2_4_SOEKRIS + help + Driver for the National Semiconductor DP8381x series PCI Ethernet + found on Soekris net4801 boards + +config BR2_PACKAGE_KMOD_WD1100 + tristate "Soekris net4801 watchdog" + default y + depends BR2_LINUX_2_4_SOEKRIS + help + Driver for the NatSemi SC1x00 series Watchdog + found on Soekris net4801 boards + source "target/linux/package/Config.in" |