diff options
| author | Imre Kaloz <kaloz@openwrt.org> | 2005-09-21 09:55:03 +0000 |
|---|---|---|
| committer | Imre Kaloz <kaloz@openwrt.org> | 2005-09-21 09:55:03 +0000 |
| commit | 208236a70e305a127a1cd3275eb06f44746c4250 (patch) | |
| tree | 5f4a68baf984d69462b04a4a71acb3e36f723791 /openwrt/target/linux/package/diag/Makefile | |
| parent | 7872532ac9718575b020b249bcb387deef4ab6d6 (diff) | |
| download | mtk-20170518-208236a70e305a127a1cd3275eb06f44746c4250.zip mtk-20170518-208236a70e305a127a1cd3275eb06f44746c4250.tar.gz mtk-20170518-208236a70e305a127a1cd3275eb06f44746c4250.tar.bz2 | |
move diag module outside of kernel directory
SVN-Revision: 1968
Diffstat (limited to 'openwrt/target/linux/package/diag/Makefile')
| -rw-r--r-- | openwrt/target/linux/package/diag/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/openwrt/target/linux/package/diag/Makefile b/openwrt/target/linux/package/diag/Makefile new file mode 100644 index 0000000..826fd07 --- /dev/null +++ b/openwrt/target/linux/package/diag/Makefile @@ -0,0 +1,37 @@ +# Makefile for the diag module +# +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME := kmod-diag +PKG_RELEASE := 1 +PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,KMOD_DIAG,$(PKG_NAME),$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE),$(ARCH),kernel ($(LINUX_VERSION)-$(BOARD)-$(KERNEL_RELEASE)))) + +ifeq ($(KERNEL_DIR),) +KERNEL_DIR:=$(LINUX_DIR) +endif + +DIAG_FLAGS:=$(TARGET_CFLAGS) -D__KERNEL__ -fno-strict-aliasing -fno-common -fomit-frame-pointer -G 0 \ + -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 -Wa,-32 -Wa,-march=mips32 \ + -Wa,-mips32 -Wa,--trap -Wstrict-prototypes -Wno-trigraphs -DMODULE -mlong-calls -fno-common -I. -I linux-2.4 -nostdinc \ + -iwithprefix include -I$(KERNEL_DIR)/include -I$(KERNEL_DIR)/include/asm/gcc -c -I$(KERNEL_DIR)/arch/mips/bcm947xx/include -DBCMDRIVER + +$(PKG_BUILD_DIR)/.prepared: + mkdir -p $(PKG_BUILD_DIR) + touch $@ + +$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/diag.o + touch $@ + +$(PKG_BUILD_DIR)/diag.o: $(PKG_BUILD_DIR)/.prepared + $(TARGET_CC) $(DIAG_FLAGS) -o $@ diag_led.c + +$(IPKG_KMOD_DIAG): $(PKG_BUILD_DIR)/diag.o + mkdir -p $(IDIR_KMOD_DIAG)/lib/modules/$(LINUX_VERSION) + cp $(PKG_BUILD_DIR)/diag.o $(IDIR_KMOD_DIAG)/lib/modules/$(LINUX_VERSION)/ + $(IPKG_BUILD) $(IDIR_KMOD_DIAG) $(PACKAGE_DIR) |
