mirror of https://github.com/hak5/openwrt-owl.git
parent
0cb0c1a257
commit
ef4bae0994
|
@ -10,10 +10,16 @@ include $(INCLUDE_DIR)/kernel.mk
|
||||||
PKG_NAME:=wprobe
|
PKG_NAME:=wprobe
|
||||||
PKG_VERSION:=1
|
PKG_VERSION:=1
|
||||||
|
|
||||||
PKG_BUILD_DEPENDS:=libnl libipfix
|
PKG_BUILD_DEPENDS:=libnl PACKAGE_wprobe-export:libipfix
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
PKG_CONFDEPS = \
|
||||||
|
CONFIG_PACKAGE_kmod-wprobe \
|
||||||
|
CONFIG_PACKAGE_wprobe-export
|
||||||
|
|
||||||
|
STAMP_CONFIGURED:=$(STAMP_CONFIGURED)_$(call confvar,$(PKG_CONFDEPS))
|
||||||
|
|
||||||
define KernelPackage/wprobe
|
define KernelPackage/wprobe
|
||||||
SUBMENU:=Network Support
|
SUBMENU:=Network Support
|
||||||
TITLE:=Wireless driver probe infrastructure
|
TITLE:=Wireless driver probe infrastructure
|
||||||
|
@ -57,6 +63,7 @@ endef
|
||||||
|
|
||||||
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
|
||||||
|
|
||||||
|
ifdef CONFIG_PACKAGE_kmod-wprobe
|
||||||
define Build/Compile/kmod
|
define Build/Compile/kmod
|
||||||
$(MAKE) -C $(LINUX_DIR) \
|
$(MAKE) -C $(LINUX_DIR) \
|
||||||
CROSS_COMPILE="$(TARGET_CROSS)" \
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
||||||
|
@ -67,6 +74,7 @@ define Build/Compile/kmod
|
||||||
EXTRA_CFLAGS="-I$(PKG_BUILD_DIR)/kernel" \
|
EXTRA_CFLAGS="-I$(PKG_BUILD_DIR)/kernel" \
|
||||||
modules
|
modules
|
||||||
endef
|
endef
|
||||||
|
endif
|
||||||
|
|
||||||
define Build/Compile/lib
|
define Build/Compile/lib
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR)/user \
|
$(MAKE) -C $(PKG_BUILD_DIR)/user \
|
||||||
|
@ -77,6 +85,7 @@ define Build/Compile/lib
|
||||||
LIBNL="$(STAGING_DIR)/usr/lib/libnl.a"
|
LIBNL="$(STAGING_DIR)/usr/lib/libnl.a"
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
ifdef CONFIG_PACKAGE_wprobe-export
|
||||||
define Build/Compile/exporter
|
define Build/Compile/exporter
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR)/exporter \
|
$(MAKE) -C $(PKG_BUILD_DIR)/exporter \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
@ -85,6 +94,7 @@ define Build/Compile/exporter
|
||||||
LDFLAGS="$(TARGET_LDFLAGS)" \
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
||||||
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"
|
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"
|
||||||
endef
|
endef
|
||||||
|
endif
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
$(Build/Compile/kmod)
|
$(Build/Compile/kmod)
|
||||||
|
|
Loading…
Reference in New Issue