mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-17 15:54:43 +02:00
move diag from target/linux/package/ to package/.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3976 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
d52614c7a7
commit
37418b652f
@ -1,8 +1,7 @@
|
|||||||
# Makefile for the diag module
|
|
||||||
#
|
|
||||||
# $Id$
|
# $Id$
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
include $(TOPDIR)/package/kernel.mk
|
||||||
|
|
||||||
PKG_NAME := kmod-diag
|
PKG_NAME := kmod-diag
|
||||||
PKG_RELEASE := 1
|
PKG_RELEASE := 1
|
||||||
@ -10,22 +9,29 @@ PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|||||||
|
|
||||||
include $(TOPDIR)/package/rules.mk
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
$(eval $(call PKG_template,KMOD_DIAG,$(PKG_NAME),$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE),$(ARCH),kernel ($(LINUX_VERSION)-$(BOARD)-$(LINUX_RELEASE))))
|
|
||||||
|
|
||||||
DIAG_FLAGS:=$(TARGET_CFLAGS) -D__KERNEL__ -fno-strict-aliasing -fno-common -fomit-frame-pointer -G 0 \
|
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 \
|
-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 \
|
-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
|
-iwithprefix include -I$(LINUX_DIR)/include -I$(LINUX_DIR)/include/asm/gcc -c -I$(LINUX_DIR)/arch/mips/bcm947xx/include -DBCMDRIVER
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.prepared:
|
define Package/kmod-diag
|
||||||
mkdir -p $(PKG_BUILD_DIR)
|
SECTION:=drivers
|
||||||
touch $@
|
CATEGORY:=Drivers
|
||||||
|
DEFAULT:=y
|
||||||
|
DEPENDS:=@LINUX_2_4_BRCM
|
||||||
|
TITLE:=Driver for router LEDs and Buttons
|
||||||
|
DESCRIPTION:=Driver for router LEDs and Buttons
|
||||||
|
URL:=
|
||||||
|
VERSION:=$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)
|
||||||
|
endef
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.built:
|
define Build/Compile
|
||||||
$(TARGET_CC) $(DIAG_FLAGS) -o $(PKG_BUILD_DIR)/diag.o diag_led.c
|
$(TARGET_CC) $(DIAG_FLAGS) -o $(PKG_BUILD_DIR)/diag.o diag_led.c
|
||||||
touch $@
|
endef
|
||||||
|
|
||||||
$(IPKG_KMOD_DIAG):
|
define Package/kmod-diag/install
|
||||||
mkdir -p $(IDIR_KMOD_DIAG)/lib/modules/$(LINUX_VERSION)
|
install -d -m0755 $(1)/lib/modules/$(LINUX_VERSION)
|
||||||
$(CP) $(PKG_BUILD_DIR)/diag.o $(IDIR_KMOD_DIAG)/lib/modules/$(LINUX_VERSION)/
|
$(CP) $(PKG_BUILD_DIR)/diag.o $(1)/lib/modules/$(LINUX_VERSION)/
|
||||||
$(IPKG_BUILD) $(IDIR_KMOD_DIAG) $(PACKAGE_DIR)
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,kmod-diag))
|
@ -1,7 +0,0 @@
|
|||||||
config PACKAGE_KMOD_DIAG
|
|
||||||
prompt "kmod-diag......................... Driver for router LEDs and Buttons"
|
|
||||||
tristate
|
|
||||||
depends LINUX_2_4_BRCM
|
|
||||||
default y
|
|
||||||
help
|
|
||||||
Driver for router LEDs and Buttons
|
|
@ -1,4 +0,0 @@
|
|||||||
Package: kmod-diag
|
|
||||||
Priority: essential
|
|
||||||
Section: sys
|
|
||||||
Description: Driver for Router LEDs and Buttons
|
|
Loading…
x
Reference in New Issue
Block a user