Move the b43-tools build from the mac80211 Makefile into an own package in tools and use the newest version of b43-tools. SVN-Revision: 33668master
parent
5322ca7a30
commit
d14c6b29eb
@ -0,0 +1,50 @@ |
|||||||
|
#
|
||||||
|
# Copyright (C) 2012 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk |
||||||
|
|
||||||
|
PKG_NAME:=b43-tools
|
||||||
|
PKG_VERSION:=016
|
||||||
|
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
|
PKG_SOURCE_URL:=git://git.bues.ch/b43-tools.git
|
||||||
|
PKG_SOURCE_PROTO:=git
|
||||||
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)
|
||||||
|
PKG_SOURCE_VERSION:=38267954aae73659de271c67e6892c744b47f3d8
|
||||||
|
PKG_MIRROR_MD5SUM:=7826262ac6870ac27c22a1b6974f8952
|
||||||
|
HOST_BUILD_DIR=$(BUILD_DIR_HOST)/$(PKG_NAME)
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/host-build.mk |
||||||
|
|
||||||
|
|
||||||
|
define Host/Compile |
||||||
|
+$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR)/fwcutter \
|
||||||
|
CFLAGS="$(HOST_CFLAGS) -include endian.h" \
|
||||||
|
$(HOST_MAKE_FLAGS) \
|
||||||
|
$(1) QUIET_SPARSE=:
|
||||||
|
+$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR)/assembler \
|
||||||
|
CFLAGS="$(HOST_CFLAGS) -include endian.h" \
|
||||||
|
$(HOST_MAKE_FLAGS) \
|
||||||
|
$(1) QUIET_SPARSE=:
|
||||||
|
endef |
||||||
|
|
||||||
|
define Host/Install |
||||||
|
$(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
|
||||||
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/fwcutter/b43-fwcutter $(STAGING_DIR_HOST)/bin/
|
||||||
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/assembler/b43-asm $(STAGING_DIR_HOST)/bin/
|
||||||
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/assembler/b43-asm.bin $(STAGING_DIR_HOST)/bin/
|
||||||
|
$(INSTALL_BIN) ./files/b43-fwsquash.py $(STAGING_DIR_HOST)/bin/
|
||||||
|
endef |
||||||
|
|
||||||
|
define Host/Clean |
||||||
|
rm -f $(STAGING_DIR_HOST)/bin/b43-fwcutter
|
||||||
|
rm -f $(STAGING_DIR_HOST)/bin/b43-asm
|
||||||
|
rm -f $(STAGING_DIR_HOST)/bin/b43-asm.bin
|
||||||
|
rm -f $(STAGING_DIR_HOST)/bin/b43-fwsquash.py
|
||||||
|
endef |
||||||
|
|
||||||
|
$(eval $(call HostBuild)) |
@ -1,5 +1,5 @@ |
|||||||
--- a/fwcutter.c
|
--- a/fwcutter/fwcutter.c
|
||||||
+++ b/fwcutter.c
|
+++ b/fwcutter/fwcutter.c
|
||||||
@@ -48,13 +48,8 @@
|
@@ -48,13 +48,8 @@
|
||||||
#include "fwcutter.h"
|
#include "fwcutter.h"
|
||||||
#include "fwcutter_list.h"
|
#include "fwcutter_list.h"
|
Loading…
Reference in new issue