diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-07-21 11:08:38 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-07-21 11:08:38 +0000 |
commit | f75da2096c6248d6df6406baf2131afa994e3ebe (patch) | |
tree | 08f253ecaa22ac8705dc532bc83c110519377ca1 | |
parent | fba6515c73da6d61ff6a57ecc4f500ecfeff3feb (diff) | |
download | upstream-f75da2096c6248d6df6406baf2131afa994e3ebe.tar.gz upstream-f75da2096c6248d6df6406baf2131afa994e3ebe.tar.bz2 upstream-f75da2096c6248d6df6406baf2131afa994e3ebe.zip |
kernel: fix config breakage from removing the de4x5 tulip driver
Properly define the config symbol to n so it doesn't break build for
targets which do have it available (e.g. mostly everything except arm).
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37489 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/kernel/linux/modules/netdevices.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/netdevices.mk b/package/kernel/linux/modules/netdevices.mk index bc270251ba..b667010aa3 100644 --- a/package/kernel/linux/modules/netdevices.mk +++ b/package/kernel/linux/modules/netdevices.mk @@ -578,6 +578,7 @@ define KernelPackage/tulip CONFIG_TULIP_MMIO=y \ CONFIG_TULIP_NAPI=y \ CONFIG_TULIP_NAPI_HW_MITIGATION=y \ + CONFIG_DE4X5=n \ CONFIG_WINBOND_840 \ CONFIG_DM9102 \ CONFIG_ULI526X |