projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
set the DEVICE variable in hotplug events from ppp interfaces
[openwrt.git]
/
package
/
switch
/
Makefile
diff --git
a/package/switch/Makefile
b/package/switch/Makefile
index
a0644ab
..
81ae346
100644
(file)
--- a/
package/switch/Makefile
+++ b/
package/switch/Makefile
@@
-4,7
+4,7
@@
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
-# $Id
:
$
+# $Id$
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
@@
-16,14
+16,18
@@
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/package.mk
-define Package/kmod-switch
- SECTION:=kernel
- CATEGORY:=Kernel drivers
- DEPENDS:=@LINUX_2_6_BRCM||LINUX_2_4_BRCM
+define KernelPackage/switch
+ SUBMENU:=Other modules
+ DEPENDS:=@LINUX_2_6_BRCM||LINUX_2_4_BRCM||LINUX_2_6_BRCM47XX
TITLE:=Switch drivers
DESCRIPTION:=\
This package contains switch drivers for ADM6996L and BCM53XX RoboSwitch.
VERSION:=$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)
TITLE:=Switch drivers
DESCRIPTION:=\
This package contains switch drivers for ADM6996L and BCM53XX RoboSwitch.
VERSION:=$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)
+ FILES:= \
+ $(PKG_BUILD_DIR)/switch-core.$(LINUX_KMOD_SUFFIX) \
+ $(PKG_BUILD_DIR)/switch-adm.$(LINUX_KMOD_SUFFIX) \
+ $(PKG_BUILD_DIR)/switch-robo.$(LINUX_KMOD_SUFFIX)
+ AUTOLOAD:=$(call AutoLoad,20,switch-core switch-robo switch-adm)
endef
define Build/Prepare
endef
define Build/Prepare
@@
-31,23
+35,27
@@
define Build/Prepare
$(CP) ./src/* $(PKG_BUILD_DIR)/
endef
$(CP) ./src/* $(PKG_BUILD_DIR)/
endef
+ifeq ($(BOARD),brcm)
+BUILDFLAGS := -DBROADCOM -DBCMDRIVER -I$(LINUX_DIR)/arch/mips/bcm947xx/include
+else
+ifeq ($(BOARD),brcm47xx)
+BUILDFLAGS := -DBROADCOM
+endif
+endif
+
+
define Build/Compile
$(MAKE) -C "$(LINUX_DIR)" \
CROSS_COMPILE="$(TARGET_CROSS)" \
ARCH="$(LINUX_KARCH)" \
SUBDIRS="$(PKG_BUILD_DIR)" \
define Build/Compile
$(MAKE) -C "$(LINUX_DIR)" \
CROSS_COMPILE="$(TARGET_CROSS)" \
ARCH="$(LINUX_KARCH)" \
SUBDIRS="$(PKG_BUILD_DIR)" \
- EXTRA_CFLAGS="
-DBCMGPIO2
" \
+ EXTRA_CFLAGS="
$(BUILDFLAGS)
" \
modules
endef
modules
endef
-define Package/kmod-switch/install
- $(INSTALL_DIR) $(1)/lib/modules/$(LINUX_VERSION)
- $(CP) $(PKG_BUILD_DIR)/*.$(LINUX_KMOD_SUFFIX) \
- $(1)/lib/modules/$(LINUX_VERSION)
+define KernelPackage/switch/install
$(INSTALL_DIR) $(1)/lib/network/
$(INSTALL_BIN) ./files/switch.sh $(1)/lib/network/
$(INSTALL_DIR) $(1)/lib/network/
$(INSTALL_BIN) ./files/switch.sh $(1)/lib/network/
- $(INSTALL_DIR) $(1)/etc/modules.d/
- printf 'switch-core\nswitch-robo\nswitch-adm\n' > $(1)/etc/modules.d/20-switch
endef
endef
-$(eval $(call
BuildPackage,kmod-
switch))
+$(eval $(call
KernelPackage,
switch))
This page took
0.022767 seconds
and
4
git commands to generate.