OpenWrt – Diff between revs 2 and 3

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 2 Rev 3
Line 7... Line 7...
7 # 7 #
Line 8... Line 8...
8   8  
Line 9... Line 9...
9 include $(TOPDIR)/rules.mk 9 include $(TOPDIR)/rules.mk
10   10  
Line 11... Line 11...
11 PKG_NAME:=firewall 11 PKG_NAME:=firewall
12 PKG_RELEASE:=2 12 PKG_RELEASE:=1
13   13  
14 PKG_SOURCE_PROTO:=git 14 PKG_SOURCE_PROTO:=git
15 PKG_SOURCE_URL=$(PROJECT_GIT)/project/firewall3.git 15 PKG_SOURCE_URL=$(PROJECT_GIT)/project/firewall3.git
16 PKG_SOURCE_DATE:=2019-01-02 16 PKG_SOURCE_DATE:=2018-07-26
17 PKG_SOURCE_VERSION:=70f8785b9ee364828e9a0f38275283024df621c2 17 PKG_SOURCE_VERSION:=aa8846bb101054392b81f09bade120c021695892
Line 18... Line 18...
18 PKG_MIRROR_HASH:=0b1a7c88b3c3474127b5e5e61d5bf58345d02862d98c56e049face2ddd81bc88 18 PKG_MIRROR_HASH:=cc2ff632744bdefbc64ad11dc18944b44af006c986367a28d6483ade6012effa
Line 48... Line 48...
48 $(INSTALL_DIR) $(1)/sbin 48 $(INSTALL_DIR) $(1)/sbin
49 $(INSTALL_BIN) $(PKG_BUILD_DIR)/firewall3 $(1)/sbin/fw3 49 $(INSTALL_BIN) $(PKG_BUILD_DIR)/firewall3 $(1)/sbin/fw3
50 $(INSTALL_DIR) $(1)/etc/init.d 50 $(INSTALL_DIR) $(1)/etc/init.d
51 $(INSTALL_BIN) ./files/firewall.init $(1)/etc/init.d/firewall 51 $(INSTALL_BIN) ./files/firewall.init $(1)/etc/init.d/firewall
52 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface 52 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
53 $(INSTALL_CONF) ./files/firewall.hotplug $(1)/etc/hotplug.d/iface/20-firewall 53 $(INSTALL_DATA) ./files/firewall.hotplug $(1)/etc/hotplug.d/iface/20-firewall
54 $(INSTALL_DIR) $(1)/etc/config/ 54 $(INSTALL_DIR) $(1)/etc/config/
55 $(INSTALL_CONF) ./files/firewall.config $(1)/etc/config/firewall 55 $(INSTALL_DATA) ./files/firewall.config $(1)/etc/config/firewall
56 $(INSTALL_DIR) $(1)/etc/ 56 $(INSTALL_DIR) $(1)/etc/
57 $(INSTALL_CONF) ./files/firewall.user $(1)/etc/firewall.user 57 $(INSTALL_DATA) ./files/firewall.user $(1)/etc/firewall.user
58 $(INSTALL_DIR) $(1)/usr/share/fw3 58 $(INSTALL_DIR) $(1)/usr/share/fw3
59 $(INSTALL_CONF) $(PKG_BUILD_DIR)/helpers.conf $(1)/usr/share/fw3 59 $(INSTALL_DATA) $(PKG_BUILD_DIR)/helpers.conf $(1)/usr/share/fw3
60 endef 60 endef
Line 61... Line 61...
61   61