include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=oaf include $(INCLUDE_DIR)/package.mk PKG_AUTOLOAD:=oaf RSTRIP:=: define KernelPackage/oaf SECTION:=TT Apps CATEGORY:=TT Apps TITLE:=OAF kernel DPI driver FILES:=$(PKG_BUILD_DIR)/oaf.ko DEPENDS:=+kmod-ipt-conntrack KCONFIG:= # AUTOLOAD:=$(call AutoLoad,0,$(PKG_AUTOLOAD)) endef define KernelPackage/oaf/description open appfilter kernel module endef KCFLAGS := -Wno-error=missing-prototypes \ -Wno-error=missing-declarations \ -Wno-error=unused-variable \ -Wno-error=declaration-after-statement \ -Wno-error=implicit-fallthrough \ -Wno-error=missing-braces \ -Wno-error=parentheses \ -Wno-error=format MAKE_OPTS:= \ $(KERNEL_MAKE_FLAGS) \ M="$(PKG_BUILD_DIR)" \ KCFLAGS="$(KCFLAGS)" \ $(EXTRA_KCONFIG) define Build/Compile $(MAKE) -C "$(LINUX_DIR)" \ $(MAKE_OPTS) \ modules endef $(eval $(call KernelPackage,oaf))