All of lore.kernel.org
 help / color / mirror / Atom feed
From: thomasez at uclibc.org <thomasez@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/package:  kismet
Date: Tue, 30 Oct 2007 02:16:52 -0700 (PDT)	[thread overview]
Message-ID: <20071030091652.2D272A67F9@busybox.net> (raw)

Author: thomasez
Date: 2007-10-30 02:16:51 -0700 (Tue, 30 Oct 2007)
New Revision: 20329

Log:
Adding Kismet, closing #1557


Added:
   trunk/buildroot/package/kismet/
   trunk/buildroot/package/kismet/Config.in
   trunk/buildroot/package/kismet/kismet.mk

Modified:
   trunk/buildroot/package/Config.in


Changeset:
Modified: trunk/buildroot/package/Config.in
===================================================================
--- trunk/buildroot/package/Config.in	2007-10-29 21:21:27 UTC (rev 20328)
+++ trunk/buildroot/package/Config.in	2007-10-30 09:16:51 UTC (rev 20329)
@@ -148,6 +148,7 @@
 source "package/iproute2/Config.in"
 source "package/ipsec-tools/Config.in"
 source "package/iptables/Config.in"
+source "package/kismet/Config.in"
 source "package/l2tp/Config.in"
 source "package/libcgi/Config.in"
 source "package/libcgicc/Config.in"

Added: trunk/buildroot/package/kismet/Config.in
===================================================================
--- trunk/buildroot/package/kismet/Config.in	                        (rev 0)
+++ trunk/buildroot/package/kismet/Config.in	2007-10-30 09:16:51 UTC (rev 20329)
@@ -0,0 +1,15 @@
+config BR2_PACKAGE_KISMET
+	bool "kismet"
+	select BR2_PACKAGE_NCURSES 
+	select BR2_PACKAGE_LIBPCAP
+	default n
+	help
+		Kismet - 802.11 layer2 wireless network detector, sniffer, and intrusion detection system
+
+		Kismet will work with any wireless card which supports raw monitoring (rfmon) mode, and can
+		sniff 802.11b, 802.11a, and 802.11g traffic.
+		
+		Kismet identifies networks by passively collecting packets and detecting standard named
+		networks, detecting (and given time, decloaking) hidden networks, and infering the presence
+		of nonbeaconing networks via data traffic. 
+

Added: trunk/buildroot/package/kismet/kismet.mk
===================================================================
--- trunk/buildroot/package/kismet/kismet.mk	                        (rev 0)
+++ trunk/buildroot/package/kismet/kismet.mk	2007-10-30 09:16:51 UTC (rev 20329)
@@ -0,0 +1,79 @@
+#############################################################
+#
+# kismet
+#
+#############################################################
+KISMET_VERSION:=2007-10-R1
+KISMET_SOURCE:=kismet-$(KISMET_VERSION).tar.gz
+KISMET_SITE:=http://www.kismetwireless.net/code/
+KISMET_DIR:=$(BUILD_DIR)/kismet-$(KISMET_VERSION)
+KISMET_CAT:=$(ZCAT)
+KISMET_BINARY:=kismet
+KISMET_TARGET_DIRECTORY=usr/bin/
+
+$(DL_DIR)/$(KISMET_SOURCE):
+	$(WGET) -P $(DL_DIR) $(KISMET_SITE)/$(KISMET_SOURCE)
+
+kismet-source: $(DL_DIR)/$(KISMET_SOURCE)
+
+$(KISMET_DIR)/.patched: $(DL_DIR)/$(KISMET_SOURCE)
+	$(KISMET_CAT) $(DL_DIR)/$(KISMET_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
+	toolchain/patch-kernel.sh $(KISMET_DIR) package/kismet/ kismet\*.patch
+	touch $@
+
+$(KISMET_DIR)/.configured: $(KISMET_DIR)/.patched
+	(cd $(KISMET_DIR); rm -rf config.cache; \
+		$(TARGET_CONFIGURE_OPTS) \
+		$(TARGET_CONFIGURE_ARGS) \
+		./configure \
+		--target=$(GNU_TARGET_NAME) \
+		--host=$(GNU_TARGET_NAME) \
+		--build=$(GNU_HOST_NAME) \
+		--prefix=/usr \
+		--exec-prefix=/usr \
+		--bindir=/usr/bin \
+		--sbindir=/usr/sbin \
+		--libdir=/lib \
+		--libexecdir=/usr/lib \
+		--sysconfdir=/etc \
+		--datadir=/usr/share \
+		--localstatedir=/var \
+		--mandir=/usr/man \
+		--infodir=/usr/info \
+	)
+	touch $@
+
+$(KISMET_DIR)/$(KISMET_BINARY): $(KISMET_DIR)/.configured
+	$(MAKE) CXX="$(TARGET_CXX)" CC="$(TARGET_CC)" \
+		-C $(KISMET_DIR)
+
+$(TARGET_DIR)/$(KISMET_TARGET_BINARY): $(KISMET_DIR)/$(KISMET_BINARY)
+	install -m 755 $(KISMET_DIR)/kismet $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet
+	install -m 755 $(KISMET_DIR)/kismet_client $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_client
+	install -m 755 $(KISMET_DIR)/kismet_drone $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_drone
+	install -m 755 $(KISMET_DIR)/kismet_server $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_server
+	install -m 755 $(KISMET_DIR)/conf/kismet.conf $(TARGET_DIR)/etc/kismet.conf
+
+kismet: uclibc ncurses libpcap $(TARGET_DIR)/$(KISMET_TARGET_BINARY)
+
+kismet-clean:
+	rm -f $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet
+	rm -f $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_client
+	rm -f $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_drone
+	rm -f $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_server
+	rm -f $(KISMET_DIR)/conf/kismet.conf $(TARGET_DIR)/etc/kismet.conf
+
+
+	-$(MAKE) -C $(KISMET_DIR) clean
+
+kismet-dirclean:
+	rm -rf $(KISMET_DIR)
+
+#############################################################
+#
+# Toplevel Makefile options
+#
+#############################################################
+ifeq ($(strip $(BR2_PACKAGE_KISMET)),y)
+TARGETS+=kismet
+endif

             reply	other threads:[~2007-10-30  9:16 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-10-30  9:16 thomasez at uclibc.org [this message]
2007-10-30 13:54 ` [Buildroot] svn commit: trunk/buildroot/package: kismet Michael Hunold
2007-10-31  8:21   ` [Buildroot] make error with Kismet even if not selected Hebbar
2007-10-31  9:43     ` Hamish Moffatt
2007-10-31 12:36       ` Thomas Lundquist
2007-10-31 13:18         ` Hamish Moffatt
2007-10-31 16:42           ` Sushi Sensei
2007-11-14  9:32             ` Thomas Lundquist
2007-10-31 20:46     ` Ulf Samuelsson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20071030091652.2D272A67F9@busybox.net \
    --to=thomasez@uclibc.org \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.