diff options
| author | Felix Fietkau <nbd@openwrt.org> | 2006-06-19 19:59:53 +0000 |
|---|---|---|
| committer | Felix Fietkau <nbd@openwrt.org> | 2006-06-19 19:59:53 +0000 |
| commit | 3763da2cc535cb34897819a1337f7abf4a60bf22 (patch) | |
| tree | f93c1909bc60cf200552a2b61a310adfb87851e8 /openwrt/package/broadcom-wl/src/kmod/Makefile | |
| parent | 0c327ae79d2df80a7a01fd8528096729d1ebbe99 (diff) | |
| download | mtk-20170518-3763da2cc535cb34897819a1337f7abf4a60bf22.zip mtk-20170518-3763da2cc535cb34897819a1337f7abf4a60bf22.tar.gz mtk-20170518-3763da2cc535cb34897819a1337f7abf4a60bf22.tar.bz2 | |
remove the wl.o build from the kernel patch and move the driver along with wl, nas and wlc into packages/broadcom-wl
SVN-Revision: 4009
Diffstat (limited to 'openwrt/package/broadcom-wl/src/kmod/Makefile')
| -rw-r--r-- | openwrt/package/broadcom-wl/src/kmod/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/openwrt/package/broadcom-wl/src/kmod/Makefile b/openwrt/package/broadcom-wl/src/kmod/Makefile new file mode 100644 index 0000000..6723840 --- /dev/null +++ b/openwrt/package/broadcom-wl/src/kmod/Makefile @@ -0,0 +1,32 @@ +# +# Makefile for the Broadcom wl driver +# +# Copyright 2004, Broadcom Corporation +# All Rights Reserved. +# +# THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY +# KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM +# SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS +# FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE. +# +# $Id: Makefile,v 1.2 2005/03/29 03:32:18 mbm Exp $ + +EXTRA_CFLAGS += -I$(TOPDIR)/arch/mips/bcm947xx/include -DBCMDRIVER + +O_TARGET := wl_link.o + +obj-y := wl_mod.o +obj-y += bcmutils.o hnddma.o linux_osl.o + +obj-m := $(O_TARGET) + +wl_mod.o: wl_apsta.o + sed -e 's,eth%d,wl%d\x00,g' < $< > $@ + +wl.o: wl_link.o + $(OBJDUMP) -d $< | perl patchtable.pl > patchtable.bin + cat wl_link.o patchtable.bin > $@ + +modules: wl.o + +include $(TOPDIR)/Rules.make |
