From a61fc4957673dc6190d57c8199957ea8746cbf63 Mon Sep 17 00:00:00 2001 From: kaloz Date: Wed, 21 Sep 2005 09:55:03 +0000 Subject: move diag module outside of kernel directory git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1968 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/package/diag/Makefile | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 target/linux/package/diag/Makefile (limited to 'target/linux/package/diag/Makefile') diff --git a/target/linux/package/diag/Makefile b/target/linux/package/diag/Makefile new file mode 100644 index 000000000..826fd07a8 --- /dev/null +++ b/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) -- cgit v1.2.3