mirror of https://github.com/hak5/openwrt.git
parent
1f6779629f
commit
268b417acd
|
@ -1,9 +1,9 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=click
|
PKG_NAME:=click
|
||||||
PKG_VERSION:=cvs.2006.02.27
|
PKG_VERSION:=cvs.2006.03.02
|
||||||
PKG_RELEASE:=0
|
PKG_RELEASE:=1
|
||||||
PKG_MD5SUM:=0479c7e50547cc8fdbfcc60f6eea30b4
|
PKG_MD5SUM:=7aed4ba94926010d76febb797b288e98
|
||||||
|
|
||||||
ROOFNET_VERSION:=0.0.1
|
ROOFNET_VERSION:=0.0.1
|
||||||
|
|
||||||
|
@ -20,7 +20,10 @@ $(eval $(call PKG_template,CLICK,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARC
|
||||||
$(eval $(call PKG_template,ROOFNET,roofnet,$(ROOFNET_VERSION),$(ARCH)))
|
$(eval $(call PKG_template,ROOFNET,roofnet,$(ROOFNET_VERSION),$(ARCH)))
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.configured:
|
$(PKG_BUILD_DIR)/.configured:
|
||||||
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
(cd $(PKG_BUILD_DIR); \
|
||||||
|
./configure; \
|
||||||
|
cp include/click/config.h include/click/config-host.h; \
|
||||||
|
rm -rf config.{cache,status} ; \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
CXXFLAGS="-static -O2 -MD" \
|
CXXFLAGS="-static -O2 -MD" \
|
||||||
CFLAGS="-static -MD" \
|
CFLAGS="-static -MD" \
|
||||||
|
@ -33,26 +36,32 @@ $(PKG_BUILD_DIR)/.configured:
|
||||||
--build=$(GNU_HOST_NAME) \
|
--build=$(GNU_HOST_NAME) \
|
||||||
--enable-wifi \
|
--enable-wifi \
|
||||||
--disable-linuxmodule \
|
--disable-linuxmodule \
|
||||||
--enable-tools=host \
|
--enable-tools=mixed \
|
||||||
);
|
--disable-dynamic-linking \
|
||||||
|
)
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.built:
|
|
||||||
|
# don't build the full click (it's huge), but only include
|
||||||
|
# the elements needed for roofnet
|
||||||
|
$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured
|
||||||
rm -rf $(PKG_INSTALL_DIR)
|
rm -rf $(PKG_INSTALL_DIR)
|
||||||
mkdir -p $(PKG_INSTALL_DIR)
|
mkdir -p $(PKG_INSTALL_DIR)
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
BUILD_CXX="g++ -include $(PKG_BUILD_DIR)/include/click/config-host.h" \
|
||||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
tools elementmap.xml
|
||||||
all
|
(cd $(PKG_BUILD_DIR)/userlevel; \
|
||||||
|
../tools/click-mkmindriver/click-mkmindriver -p roofnet -C .. \
|
||||||
|
-f $(PKG_BUILD_DIR)/conf/wifi/sample.click \
|
||||||
|
-A --all -E IPNameInfo -E FromHost -E ToHost -E Discard; \
|
||||||
|
$(MAKE) -f Makefile.roofnet; \
|
||||||
|
)
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(IPKG_CLICK):
|
$(IPKG_CLICK):
|
||||||
install -d -m0755 $(IDIR_CLICK)/usr/bin
|
install -d -m0755 $(IDIR_CLICK)/usr/bin
|
||||||
$(CP) $(PKG_BUILD_DIR)/userlevel/click $(IDIR_CLICK)/usr/bin/click
|
$(CP) $(PKG_BUILD_DIR)/userlevel/roofnetclick $(IDIR_CLICK)/usr/bin/click
|
||||||
$(CP) $(PKG_BUILD_DIR)/tools/click-align/click-align $(IDIR_CLICK)/usr/bin/click-align
|
$(CP) $(PKG_BUILD_DIR)/tools/click-align/click-align $(IDIR_CLICK)/usr/bin/click-align
|
||||||
$(CP) $(PKG_BUILD_DIR)/conf/wifi/read_handler $(IDIR_CLICK)/usr/bin
|
|
||||||
$(CP) $(PKG_BUILD_DIR)/conf/wifi/write_handler $(IDIR_CLICK)/usr/bin
|
|
||||||
$(CP) $(PKG_BUILD_DIR)/conf/wifi/srcr.click $(IDIR_CLICK)/usr/bin
|
|
||||||
$(RSTRIP) $(IDIR_CLICK)
|
$(RSTRIP) $(IDIR_CLICK)
|
||||||
$(IPKG_BUILD) $(IDIR_CLICK) $(PACKAGE_DIR)
|
$(IPKG_BUILD) $(IDIR_CLICK) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
@ -60,6 +69,9 @@ $(IPKG_CLICK):
|
||||||
$(IPKG_ROOFNET):
|
$(IPKG_ROOFNET):
|
||||||
install -d -m0755 $(IDIR_ROOFNET)/usr/bin
|
install -d -m0755 $(IDIR_ROOFNET)/usr/bin
|
||||||
$(CP) $(PKG_BUILD_DIR)/conf/wifi/gen_config_roofnet.sh $(IDIR_ROOFNET)/usr/bin
|
$(CP) $(PKG_BUILD_DIR)/conf/wifi/gen_config_roofnet.sh $(IDIR_ROOFNET)/usr/bin
|
||||||
|
$(CP) $(PKG_BUILD_DIR)/conf/wifi/srcr.click $(IDIR_ROOFNET)/usr/bin
|
||||||
|
$(CP) $(PKG_BUILD_DIR)/conf/wifi/read_handler $(IDIR_ROOFNET)/usr/bin
|
||||||
|
$(CP) $(PKG_BUILD_DIR)/conf/wifi/write_handler $(IDIR_ROOFNET)/usr/bin
|
||||||
mkdir -p $(IDIR_ROOFNET)/etc/init.d
|
mkdir -p $(IDIR_ROOFNET)/etc/init.d
|
||||||
install -m 755 ./files/S50roofnet $(IDIR_ROOFNET)/etc/init.d/
|
install -m 755 ./files/S50roofnet $(IDIR_ROOFNET)/etc/init.d/
|
||||||
$(IPKG_BUILD) $(IDIR_ROOFNET) $(PACKAGE_DIR)
|
$(IPKG_BUILD) $(IDIR_ROOFNET) $(PACKAGE_DIR)
|
||||||
|
|
|
@ -3,4 +3,4 @@ Priority: optional
|
||||||
Section: net
|
Section: net
|
||||||
Maintainer: John Bicket <jbicket@mit.edu>
|
Maintainer: John Bicket <jbicket@mit.edu>
|
||||||
Description: The Roofnet mesh networking scripts for Click
|
Description: The Roofnet mesh networking scripts for Click
|
||||||
|
Depends: click, kmod-tun
|
||||||
|
|
Loading…
Reference in New Issue