aboutsummaryrefslogtreecommitdiffstats
path: root/package/boot/uboot-zynq
Commit message (Expand)AuthorAgeFilesLines
* uboot-zynq: use a file to modify the default environmentLuis Araneda2018-09-102-0/+3
* uboot-zynq: copy U-Boot images to STAGING_DIRLuis Araneda2018-09-101-0/+9
* uboot-zynq: automatically select the appropriate variantLuis Araneda2018-09-101-0/+5
* uboot-zynq: remove ZC706 boardLuis Araneda2018-09-101-4/+0
* uboot-zynq: add support for the zybo z7 boardLuis Araneda2018-08-254-6/+612
* uboot-zynq: update to 2018.07Luis Araneda2018-08-133-3/+46
* uboot-zynq: update to 2017.03Luis Araneda2018-06-072-5/+5
* uboot-zynq: fix build on hosts lacking pkg-configJo-Philipp Wich2018-05-231-0/+3
* uboot-zynq: Fix build with libressl 2.7.2Hauke Mehrtens2018-04-291-0/+14
* uboot-zynq: switch to u-boot.mkFelix Fietkau2017-01-241-98/+17
* treewide: clean up download hashesFelix Fietkau2016-12-161-1/+1
* uboot-zynq: fix compile error for be short of dtcYutang Jiang2016-10-261-1/+2
* zynq: Add Zybo device supportJohn Crispin2016-04-261-0/+5
* Zynq: Add Zedboard device supportJohn Crispin2016-04-261-0/+5
* uboot-zynq: Update to U-Boot 2016.03 releaseJohn Crispin2016-03-231-2/+2
* zynq: add new targetJohn Crispin2016-02-121-0/+115
nction.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#
# Copyright (C) 2012 Jo-Philipp Wich <jow@openwrt.org>
#
# This is free software, licensed under the Apache 2 license.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=iwcap
PKG_RELEASE:=1

include $(INCLUDE_DIR)/package.mk


define Package/iwcap
  SECTION:=utils
  CATEGORY:=Utilities
  TITLE:=Simple radiotap capture utility
  MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
endef

define Package/iwcap/description
  The iwcap utility receives radiotap packet data from wifi monitor interfaces
  and outputs it to pcap format. It gathers recived packets in a fixed ring
  buffer to dump them on demand which is useful for background monitoring.
  Alternatively the utility can stream the data to stdout to act as remote
  capture drone for Wireshark or similar programs.
endef


define Build/Prepare
	$(INSTALL_DIR) $(PKG_BUILD_DIR)
	$(CP) ./src/* $(PKG_BUILD_DIR)/
endef

define Build/Configure
endef

define Build/Compile
	$(TARGET_CC) $(TARGET_CFLAGS) \
		-o $(PKG_BUILD_DIR)/iwcap $(PKG_BUILD_DIR)/iwcap.c
endef


define Package/iwcap/install
	$(INSTALL_DIR) $(1)/usr/sbin
	$(INSTALL_BIN) $(PKG_BUILD_DIR)/iwcap $(1)/usr/sbin/iwcap
endef

$(eval $(call BuildPackage,iwcap))