mirror of https://github.com/hak5/openwrt-owl.git
move source files to src/ and let the kernel tree build the module.
SVN-Revision: 3981owl
parent
8fbfbb3619
commit
7eda64608c
|
@ -3,35 +3,42 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
include $(TOPDIR)/package/kernel.mk
|
include $(TOPDIR)/package/kernel.mk
|
||||||
|
|
||||||
PKG_NAME := kmod-diag
|
PKG_NAME:=kmod-diag
|
||||||
PKG_RELEASE := 1
|
PKG_RELEASE:=1
|
||||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
||||||
|
|
||||||
include $(TOPDIR)/package/rules.mk
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
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$(LINUX_DIR)/include -I$(LINUX_DIR)/include/asm/gcc -c -I$(LINUX_DIR)/arch/mips/bcm947xx/include -DBCMDRIVER
|
|
||||||
|
|
||||||
define Package/kmod-diag
|
define Package/kmod-diag
|
||||||
SECTION:=drivers
|
SECTION:=drivers
|
||||||
CATEGORY:=Drivers
|
CATEGORY:=Drivers
|
||||||
DEFAULT:=y
|
DEFAULT:=y
|
||||||
DEPENDS:=@LINUX_2_4_BRCM
|
DEPENDS:=@LINUX_2_4_BRCM
|
||||||
TITLE:=Driver for router LEDs and Buttons
|
TITLE:=Driver for router LEDs and Buttons
|
||||||
DESCRIPTION:=Driver for router LEDs and Buttons
|
DESCRIPTION:=Driver for router LEDs and Buttons
|
||||||
URL:=
|
VERSION:=$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)
|
||||||
VERSION:=$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)
|
endef
|
||||||
|
|
||||||
|
define Build/Prepare
|
||||||
|
mkdir -p $(PKG_BUILD_DIR)
|
||||||
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
$(TARGET_CC) $(DIAG_FLAGS) -o $(PKG_BUILD_DIR)/diag.o diag_led.c
|
$(MAKE) -C "$(LINUX_DIR)" \
|
||||||
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
||||||
|
ARCH="$(LINUX_KARCH)" \
|
||||||
|
PATH="$(TARGET_PATH)" \
|
||||||
|
SUBDIRS="$(PKG_BUILD_DIR)" \
|
||||||
|
EXTRA_CFLAGS="-DBCMDRIVER -I$(LINUX_DIR)/arch/mips/bcm947xx/include" \
|
||||||
|
modules
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/kmod-diag/install
|
define Package/kmod-diag/install
|
||||||
install -d -m0755 $(1)/lib/modules/$(LINUX_VERSION)
|
install -d -m0755 $(1)/lib/modules/$(LINUX_VERSION)
|
||||||
$(CP) $(PKG_BUILD_DIR)/diag.o $(1)/lib/modules/$(LINUX_VERSION)/
|
$(CP) $(PKG_BUILD_DIR)/diag.$(LINUX_KMOD_SUFFIX) \
|
||||||
|
$(1)/lib/modules/$(LINUX_VERSION)/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,kmod-diag))
|
$(eval $(call BuildPackage,kmod-diag))
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
# Makefile for diag driver
|
||||||
|
#
|
||||||
|
# Copyright (C) 2005 Felix Fietkau <nbd@openwrt.org>
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU General Public License
|
||||||
|
# as published by the Free Software Foundation; either version
|
||||||
|
# 2 of the License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
|
||||||
|
obj-m := diag.o
|
||||||
|
|
||||||
|
ifeq ($(MAKING_MODULES),1)
|
||||||
|
export-objs := diag.o
|
||||||
|
|
||||||
|
-include $(TOPDIR)/Rules.make
|
||||||
|
endif
|
Loading…
Reference in New Issue