d8f1fa1e38
I wrote this patch some time ago because I had a need for one of the Gigabit ports (Linksys E3000) to be forced to 100FD. This is based on the robocfg sources included w/ the RT-N16 sources from ASUS. Since work is progressing on a BGMAC driver that could be included in OpenWRT, this may be useful to someone else. In testing, forcing the speed to 10/100 or 1000 worked fine; however, when trying to force full-duplex mode, the result was always half-duplex. I was not able to isolate the source of the problem (this patch, driver or H/W limitation). The only way I could get it to work was to set the port to Auto, but then only advertise 100FD (not included in this patch). I have a modified version of the robocfg package as well, I'd have to clean it up a little first (remove the full-duplex hack) before submitting it if there is interest. Signed-off-by: Nathan Hintz <nlhintz@hotmail.com> SVN-Revision: 34992
60 lines
1.3 KiB
Makefile
60 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=kmod-switch
|
|
PKG_RELEASE:=6
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/switch
|
|
SUBMENU:=Other modules
|
|
DEPENDS:=@TARGET_brcm47xx||TARGET_brcm63xx
|
|
TITLE:=Switch drivers
|
|
FILES:= \
|
|
$(PKG_BUILD_DIR)/switch-core.ko \
|
|
$(PKG_BUILD_DIR)/switch-adm.ko \
|
|
$(PKG_BUILD_DIR)/switch-robo.ko
|
|
AUTOLOAD:=$(call AutoLoad,20,switch-core switch-robo switch-adm)
|
|
endef
|
|
|
|
define KernelPackage/switch/description
|
|
This package contains switch drivers for ADM6996L and BCM53XX RoboSwitch.
|
|
endef
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C "$(LINUX_DIR)" \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
ARCH="$(LINUX_KARCH)" \
|
|
SUBDIRS="$(PKG_BUILD_DIR)" \
|
|
EXTRA_CFLAGS="$(BUILDFLAGS)" \
|
|
modules
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
mkdir -p $(1)/usr/include
|
|
$(CP) ./src/switch-core.h $(1)/usr/include/
|
|
endef
|
|
|
|
define Build/UninstallDev
|
|
rm -f $(1)/usr/include/switch-core.h
|
|
endef
|
|
|
|
define KernelPackage/switch/install
|
|
$(INSTALL_DIR) $(1)/lib/network/
|
|
$(INSTALL_BIN) ./files/switch.sh $(1)/lib/network/
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,switch))
|