mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 22:44:39 +02:00
0efa7ca668
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8328 3c298f89-4303-0410-b956-a3cf2f4a3e73
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=rt61
|
|
PKG_VERSION:=cvs-2007060307
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@openwrt/
|
|
PKG_MD5SUM:=8d71fee47bdaac4c7d79180a4ea33649
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/rt61
|
|
SUBMENU:=Wireless Drivers
|
|
TITLE:=Driver for ralink MiMo pci chipsets
|
|
DEPENDS:=@PCI_SUPPORT +wireless-tools
|
|
DESCRIPTION:=\
|
|
This package contains a driver for ralink rt2x61 pci chipsets.
|
|
URL:=http://rt2x00.serialmonkey.com/
|
|
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
|
|
FILES:= \
|
|
$(PKG_BUILD_DIR)/Module/rt61.$(LINUX_KMOD_SUFFIX)
|
|
AUTOLOAD:=$(call AutoLoad,50,rt61)
|
|
endef
|
|
|
|
define KernelPackage/rt61/install
|
|
mkdir -p $(1)/lib/firmware
|
|
$(CP) -L $(PKG_BUILD_DIR)/Module/rt2*.bin $(1)/lib/firmware
|
|
endef
|
|
|
|
LINUX_PATCHLEVEL:=$(shell echo "$(LINUX_VERSION)" | cut -d. -f2)
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(LINUX_DIR) \
|
|
ARCH="$(LINUX_KARCH)" \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
PATCHLEVEL="$(LINUX_PATCHLEVEL)" \
|
|
KERNDIR="$(LINUX_DIR)" \
|
|
SUBDIRS="$(PKG_BUILD_DIR)/Module" \
|
|
modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,rt61))
|