add wknock package (thanks to Florian Fainelli)
SVN-Revision: 2362
This commit is contained in:
parent
c8784c0a8f
commit
dff2c29103
5 changed files with 54 additions and 0 deletions
|
@ -130,6 +130,7 @@ source "package/wificonf/Config.in"
|
|||
source "package/wifidog/Config.in"
|
||||
source "package/wireless-tools/Config.in"
|
||||
source "package/wiviz/Config.in"
|
||||
source "package/wknock/Config.in"
|
||||
source "package/wol/Config.in"
|
||||
source "package/wondershaper/Config.in"
|
||||
source "package/wpa_supplicant/Config.in"
|
||||
|
|
|
@ -202,6 +202,7 @@ package-$(BR2_PACKAGE_WIFICONF) += wificonf
|
|||
package-$(BR2_PACKAGE_WIFIDOG) += wifidog
|
||||
package-$(BR2_PACKAGE_WIVIZ) += wiviz
|
||||
package-$(BR2_PACKAGE_WIRELESS_TOOLS) += wireless-tools
|
||||
package-$(BR2_PACKAGE_WKNOCK) += wknock
|
||||
package-$(BR2_PACKAGE_WOL) += wol
|
||||
package-$(BR2_PACKAGE_WONDERSHAPER) += wondershaper
|
||||
package-$(BR2_PACKAGE_WPA_SUPPLICANT) += wpa_supplicant
|
||||
|
@ -301,6 +302,7 @@ tor-compile: libevent-compile openssl-compile zlib-compile
|
|||
usbutils-compile: libusb-compile
|
||||
vtun-compile: zlib-compile openssl-compile lzo-compile
|
||||
wificonf-compile: wireless-tools-compile nvram-compile
|
||||
wknock-compile: libpcap-compile
|
||||
wpa_supplicant-compile: openssl-compile
|
||||
xsupplicant-compile: openssl-compile
|
||||
|
||||
|
|
10
openwrt/package/wknock/Config.in
Normal file
10
openwrt/package/wknock/Config.in
Normal file
|
@ -0,0 +1,10 @@
|
|||
config BR2_PACKAGE_WKNOCK
|
||||
prompt "wknock............................ A tool to hide your Access Point against opportunistic attackers."
|
||||
tristate
|
||||
default m if CONFIG_DEVEL
|
||||
select BR2_PACKAGE_LIBPCAP
|
||||
help
|
||||
A tool to hide your Access Point against opportunistic attackers.
|
||||
|
||||
http://www.rstack.org/oudot/wknock/
|
||||
|
36
openwrt/package/wknock/Makefile
Normal file
36
openwrt/package/wknock/Makefile
Normal file
|
@ -0,0 +1,36 @@
|
|||
# $Id$
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=wknock
|
||||
PKG_VERSION:=1
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=6b7a1f3cbb0af88da02e5d30cefd8e7f
|
||||
|
||||
PKG_SOURCE_URL:=http://blackhat.com/presentations/bh-europe-05/BH_EU_05-Oudot/
|
||||
PKG_SOURCE:=$(PKG_NAME).tar.gz
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
||||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
$(eval $(call PKG_template,WKNOCK,wknock,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured:
|
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built:
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
CC=$(TARGET_CC) \
|
||||
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
||||
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib -lpcap" \
|
||||
all
|
||||
touch $@
|
||||
|
||||
$(IPKG_WKNOCK):
|
||||
install -d -m0755 $(IDIR_WKNOCK)/usr/sbin
|
||||
install -m0755 $(PKG_BUILD_DIR)/wknock $(IDIR_WKNOCK)/usr/sbin/
|
||||
install -m0755 $(PKG_BUILD_DIR)/wknock-ng $(IDIR_WKNOCK)/usr/sbin/
|
||||
$(RSTRIP) $(IDIR_WKNOCK)/
|
||||
$(IPKG_BUILD) $(IDIR_WKNOCK) $(PACKAGE_DIR)
|
5
openwrt/package/wknock/ipkg/wknock.control
Normal file
5
openwrt/package/wknock/ipkg/wknock.control
Normal file
|
@ -0,0 +1,5 @@
|
|||
Package: wknock
|
||||
Section: net
|
||||
Priority: optional
|
||||
Depends: libpcap, wl
|
||||
Description: A tool to hide your Access Point against opportunistic attackers.
|
Loading…
Reference in a new issue