2 # Copyright (C) 2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 include $(TOPDIR
)/rules.mk
8 include $(INCLUDE_DIR
)/kernel.mk
13 PKG_BUILD_DEPENDS
:=libnl PACKAGE_wprobe-export
:libipfix
15 include $(INCLUDE_DIR
)/package.mk
18 CONFIG_PACKAGE_kmod-wprobe \
19 CONFIG_PACKAGE_wprobe-export
21 STAMP_CONFIGURED
:=$(STAMP_CONFIGURED
)_
$(call confvar
,$(PKG_CONFDEPS
))
23 define KernelPackage
/wprobe
24 SUBMENU
:=Network Support
25 TITLE
:=Wireless driver probe infrastructure
27 $(PKG_BUILD_DIR
)/kernel
/wprobe.
$(LINUX_KMOD_SUFFIX
)
28 AUTOLOAD
:=$(call AutoLoad
,01,wprobe
)
31 define KernelPackage
/wprobe
/description
32 A module that exports measurement data from wireless driver to user space
35 define Package
/wprobe-info
39 TITLE
:=Wireless measurement utility
42 define Package
/wprobe-info
/description
43 wprobe-info uses the wprobe kernel module to query
44 wireless driver measurement data from an interface
47 define Package
/wprobe-export
51 TITLE
:=Wireless measurement data exporter
54 define Package
/wprobe-export
/description
55 wprobe-export uses the wprobe kernel module to
export
56 wireless driver measurement data via the IPFIX protocol
60 mkdir
-p
$(PKG_BUILD_DIR
)
61 $(CP
) src
/* $(PKG_BUILD_DIR
)/
64 TARGET_CFLAGS
+= -I
$(STAGING_DIR
)/usr
/include
66 ifdef CONFIG_PACKAGE_kmod-wprobe
67 define Build
/Compile
/kmod
68 $(MAKE
) -C
$(LINUX_DIR
) \
69 CROSS_COMPILE
="$(TARGET_CROSS)" \
70 ARCH
="$(LINUX_KARCH)" \
71 SUBDIRS
="$(PKG_BUILD_DIR)/kernel" \
72 KERNELDIR
=$(LINUX_DIR
) \
74 EXTRA_CFLAGS
="-I$(PKG_BUILD_DIR)/kernel" \
79 define Build
/Compile
/lib
80 $(MAKE
) -C
$(PKG_BUILD_DIR
)/user \
81 $(TARGET_CONFIGURE_OPTS
) \
82 CFLAGS
="$(TARGET_CFLAGS)" \
83 CPPFLAGS
="$(TARGET_CPPFLAGS) -I$(PKG_BUILD_DIR)/kernel" \
84 LDFLAGS
="$(TARGET_LDFLAGS)" \
85 LIBNL
="$(STAGING_DIR)/usr/lib/libnl.a"
88 ifdef CONFIG_PACKAGE_wprobe-export
89 define Build
/Compile
/exporter
90 $(MAKE
) -C
$(PKG_BUILD_DIR
)/exporter \
91 $(TARGET_CONFIGURE_OPTS
) \
92 CFLAGS
="$(TARGET_CFLAGS)" \
93 CPPFLAGS
="$(TARGET_CPPFLAGS) -I$(PKG_BUILD_DIR)/kernel -I$(PKG_BUILD_DIR)/user" \
94 LDFLAGS
="$(TARGET_LDFLAGS)" \
95 LIBS
="$(PKG_BUILD_DIR)/user/libwprobe.a $(STAGING_DIR)/usr/lib/libipfix.a $(STAGING_DIR)/usr/lib/libmisc.a $(STAGING_DIR)/usr/lib/libnl.a -lm"
100 $(Build
/Compile
/kmod
)
102 $(Build
/Compile
/exporter
)
105 define Build
/InstallDev
106 $(INSTALL_DIR
) $(1)/usr
/include
107 $(CP
) $(PKG_BUILD_DIR
)/kernel
/linux
$(1)/usr
/include
110 define Package
/wprobe-info
/install
111 $(INSTALL_DIR
) $(1)/sbin
112 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/user
/wprobe-info
$(1)/sbin
/
115 define Package
/wprobe-export
/install
116 $(INSTALL_DIR
) $(1)/sbin
$(1)/etc
/init.d
117 $(INSTALL_BIN
) .
/files
/wprobe.init
$(1)/etc
/init.d
/
118 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/exporter
/wprobe-export
$(1)/sbin
/
121 $(eval
$(call KernelPackage
,wprobe
))
122 $(eval
$(call BuildPackage
,wprobe-info
))
123 $(eval
$(call BuildPackage
,wprobe-export
))