diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-22 21:52:36 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-22 21:52:36 +0100 |
commit | 28adc48e65f44c7be5a007568ffaf7cf12df2833 (patch) | |
tree | bb122a4adf81aa5f3c16cff50e5882a84010f00e | |
parent | 86ca12a631af25022fcbdb25cfb13f9e4af5abae (diff) |
add support for r8169 ethernet driver in menu
-rw-r--r-- | mk/modules.mk | 4 | ||||
-rw-r--r-- | target/Config.in.x86 | 2 | ||||
-rw-r--r-- | target/Config.in.x86_64 | 2 | ||||
-rw-r--r-- | target/linux/config/Config.in.netdevice | 9 |
4 files changed, 17 insertions, 0 deletions
diff --git a/mk/modules.mk b/mk/modules.mk index bccfe57be..ecec26b94 100644 --- a/mk/modules.mk +++ b/mk/modules.mk @@ -54,6 +54,10 @@ $(eval $(call KMOD_template,SKY2,sky2,\ $(MODULES_DIR)/kernel/drivers/net/sky2 \ ,20)) +$(eval $(call KMOD_template,R8169,r8169,\ + $(MODULES_DIR)/kernel/drivers/net/r8169 \ +,20)) + # # Wireless network devices # diff --git a/target/Config.in.x86 b/target/Config.in.x86 index 4a65f3d67..8230e68c4 100644 --- a/target/Config.in.x86 +++ b/target/Config.in.x86 @@ -5,6 +5,8 @@ prompt "Hardware model" config ADK_HARDWARE_GENERIC_X86 bool "Generic x86 system (i686)" select ADK_CPU_I686 + select ADK_TARGET_WITH_PCI + select ADK_TARGET_WITH_VGA help Generic x86 system. diff --git a/target/Config.in.x86_64 b/target/Config.in.x86_64 index a464cd8b0..d88ebe785 100644 --- a/target/Config.in.x86_64 +++ b/target/Config.in.x86_64 @@ -4,6 +4,8 @@ prompt "Hardware model" config ADK_HARDWARE_GENERIC_X86_64 bool "Generic x86_64/amd64 system" + select ADK_TARGET_WITH_VGA + select ADK_TARGET_WITH_PCI help Generic x86_64/amd64 system. diff --git a/target/linux/config/Config.in.netdevice b/target/linux/config/Config.in.netdevice index fcaefbf48..1492ebd5b 100644 --- a/target/linux/config/Config.in.netdevice +++ b/target/linux/config/Config.in.netdevice @@ -99,6 +99,15 @@ config ADK_KPACKAGE_KMOD_SKY2 default n help +config ADK_KPACKAGE_KMOD_R8169 + prompt "kmod-net-r8169................. RTL8169 driver" + tristate + select ADK_KERNEL_NETDEVICES + select ADK_KERNEL_NET_ETHERNET + select ADK_KERNEL_NETDEV_1000 + default n + help + endmenu config ADK_KERNEL_WIRELESS |