standardize Makefile
SVN-Revision: 4838
This commit is contained in:
parent
ce356103e1
commit
f7a4143e43
1 changed files with 11 additions and 10 deletions
|
@ -17,12 +17,13 @@ PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)
|
|||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/kmod-switch
|
||||
SECTION:=drivers
|
||||
CATEGORY:=Drivers
|
||||
SECTION:=kernel
|
||||
CATEGORY:=Kernel drivers
|
||||
DEPENDS:=@LINUX_2_6_BRCM||LINUX_2_4_BRCM
|
||||
DEFAULT:=y
|
||||
TITLE:=Switch drivers
|
||||
DESCRIPTION:=Switch drivers for ADM6996L and BCM53XX RoboSwitch
|
||||
DESCRIPTION:=\
|
||||
This package contains switch drivers for ADM6996L and BCM53XX RoboSwitch.
|
||||
VERSION:=$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)
|
||||
endef
|
||||
|
||||
|
@ -41,13 +42,13 @@ define Build/Compile
|
|||
endef
|
||||
|
||||
define Package/kmod-switch/install
|
||||
install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
|
||||
$(CP) $(PKG_BUILD_DIR)/*.$(LINUX_KMOD_SUFFIX) \
|
||||
$(1)/lib/modules/$(LINUX_VERSION)
|
||||
install -m0755 -d $(1)/lib/network/
|
||||
install -m0755 ./files/switch.sh $(1)/lib/network/
|
||||
install -m0755 -d $(1)/etc/modules.d/
|
||||
printf 'switch-core\nswitch-robo\nswitch-adm\n' > $(1)/etc/modules.d/20-switch
|
||||
install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
|
||||
$(CP) $(PKG_BUILD_DIR)/*.$(LINUX_KMOD_SUFFIX) \
|
||||
$(1)/lib/modules/$(LINUX_VERSION)
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,kmod-switch))
|
||||
|
|
Loading…
Reference in a new issue