123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- From: Matthias Schiffer <mschiffer@universe-factory.net>
- Date: Sat, 11 Jan 2014 11:47:31 +0100
- Subject: Update netifd and its dependencies from Barrier Breaker (r41888)
- diff --git a/package/libubox/Makefile b/package/libubox/Makefile
- index bcf4481..6cbfc08 100644
- --- a/package/libubox/Makefile
- +++ b/package/libubox/Makefile
- @@ -1,13 +1,13 @@
- include $(TOPDIR)/rules.mk
-
- PKG_NAME:=libubox
- -PKG_VERSION:=2013-10-19
- +PKG_VERSION:=2014-07-16
- PKG_RELEASE=$(PKG_SOURCE_VERSION)
-
- PKG_SOURCE_PROTO:=git
- -PKG_SOURCE_URL:=git://nbd.name/luci2/libubox.git
- +PKG_SOURCE_URL:=http://git.openwrt.org/project/libubox.git
- PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
- -PKG_SOURCE_VERSION:=734d28eb1a46358743cf8837c91e5d46695c3b91
- +PKG_SOURCE_VERSION:=bd388d2b6c2c151bf513c1e449417d18ce02d10b
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
- PKG_MIRROR_MD5SUM:=
- CMAKE_INSTALL:=1
- @@ -26,6 +26,7 @@ define Package/libubox
- SECTION:=libs
- CATEGORY:=Libraries
- TITLE:=Basic utility library
- + ABI_VERSION:=$(PKG_VERSION)
- DEPENDS:=
- endef
-
- @@ -54,6 +55,13 @@ define Package/libjson-script
- TITLE:=Minimalistic JSON based scripting engine
- endef
-
- +define Package/libubox-lua
- + SECTION:=libs
- + CATEGORY:=Libraries
- + DEPENDS:=+libubox +liblua
- + TITLE:=Lua binding for the OpenWrt Basic utility library
- +endef
- +
- TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
- CMAKE_OPTIONS = \
- -DLUAPATH=/usr/lib/lua
- @@ -79,7 +87,13 @@ define Package/libjson-script/install
- $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libjson_script.so $(1)/lib/
- endef
-
- +define Package/libubox-lua/install
- + $(INSTALL_DIR) $(1)/usr/lib/lua
- + $(CP) $(PKG_BUILD_DIR)/lua/uloop.so $(1)/usr/lib/lua/
- +endef
- +
- $(eval $(call BuildPackage,libubox))
- $(eval $(call BuildPackage,libblobmsg-json))
- $(eval $(call BuildPackage,jshn))
- $(eval $(call BuildPackage,libjson-script))
- +$(eval $(call BuildPackage,libubox-lua))
- diff --git a/package/netifd/Makefile b/package/netifd/Makefile
- index 5f2ee03..faf3e09 100644
- --- a/package/netifd/Makefile
- +++ b/package/netifd/Makefile
- @@ -1,13 +1,13 @@
- include $(TOPDIR)/rules.mk
-
- PKG_NAME:=netifd
- -PKG_VERSION:=2013-07-16
- +PKG_VERSION:=2014-07-29
- PKG_RELEASE=$(PKG_SOURCE_VERSION)
-
- PKG_SOURCE_PROTO:=git
- -PKG_SOURCE_URL:=git://nbd.name/luci2/netifd.git
- +PKG_SOURCE_URL:=http://git.openwrt.org/project/netifd.git
- PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
- -PKG_SOURCE_VERSION:=2674941b06c1ec67f1aff1bff9212e1372106641
- +PKG_SOURCE_VERSION:=4bf89afc22b43d5bd155d32d3998348a77179c1a
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
- PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
- # PKG_MIRROR_MD5SUM:=
- @@ -24,7 +24,7 @@ include $(INCLUDE_DIR)/cmake.mk
- define Package/netifd
- SECTION:=base
- CATEGORY:=Base system
- - DEPENDS:=+libuci +libnl-tiny +libubus +ubus +ubusd +jshn
- + DEPENDS:=+libuci +libnl-tiny +libubus +ubus +ubusd +jshn +libubox
- TITLE:=OpenWrt Network Interface Configuration Daemon
- endef
-
- @@ -40,7 +40,7 @@ define Package/netifd/install
- $(INSTALL_DIR) $(1)/sbin
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/netifd $(1)/sbin/
- $(CP) ./files/* $(1)/
- - $(CP) $(PKG_BUILD_DIR)/dummy/netifd-proto.sh $(1)/lib/netifd/
- + $(CP) $(PKG_BUILD_DIR)/scripts/* $(1)/lib/netifd/
- endef
-
- $(eval $(call BuildPackage,netifd))
- diff --git a/package/netifd/files/etc/hotplug.d/iface/00-netstate b/package/netifd/files/etc/hotplug.d/iface/00-netstate
- index c50cda6..023025c 100644
- --- a/package/netifd/files/etc/hotplug.d/iface/00-netstate
- +++ b/package/netifd/files/etc/hotplug.d/iface/00-netstate
- @@ -1,6 +1,5 @@
- [ ifup = "$ACTION" ] && {
- uci_toggle_state network "$INTERFACE" up 1
- - uci_toggle_state network "$INTERFACE" connect_time $(sed -ne 's![^0-9].*$!!p' /proc/uptime)
- [ -n "$DEVICE" ] && {
- uci_toggle_state network "$INTERFACE" device "$(uci -q get network.$INTERFACE.ifname)"
- uci_toggle_state network "$INTERFACE" ifname "$DEVICE"
- diff --git a/package/netifd/files/lib/netifd/dhcp.script b/package/netifd/files/lib/netifd/dhcp.script
- index 50163da..db3fc01 100755
- --- a/package/netifd/files/lib/netifd/dhcp.script
- +++ b/package/netifd/files/lib/netifd/dhcp.script
- @@ -33,9 +33,15 @@ setup_interface () {
- for domain in $domain; do
- proto_add_dns_search "$domain"
- done
- +
- + proto_add_data
- + [ -n "$ZONE" ] && json_add_string zone "$ZONE"
- + proto_close_data
- +
- proto_send_update "$INTERFACE"
-
- - if [ -n "$IFACE6RD" -a -n "$ip6rd" ]; then
- +
- + if [ "$IFACE6RD" != 0 -a -n "$ip6rd" ]; then
- local v4mask="${ip6rd%% *}"
- ip6rd="${ip6rd#* }"
- local ip6rdprefixlen="${ip6rd%% *}"
- @@ -44,19 +50,24 @@ setup_interface () {
- ip6rd="${ip6rd#* }"
- local ip6rdbr="${ip6rd%% *}"
-
- -uci -q batch <<-EOF >/dev/null
- -set network.$IFACE6RD.proto=6rd
- -set network.$IFACE6RD.auto=0
- -set network.$IFACE6RD.peeraddr=$ip6rdbr
- -set network.$IFACE6RD.ip4prefixlen=$v4mask
- -set network.$IFACE6RD.ip6prefix=$ip6rdprefix
- -set network.$IFACE6RD.ip6prefixlen=$ip6rdprefixlen
- -commit network
- -EOF
- -
- - ifdown "$IFACE6RD"
- - /etc/init.d/network reload
- - ifup "$IFACE6RD"
- + [ -n "$ZONE" ] || ZONE=$(fw3 network $INTERFACE)
- + [ -z "$IFACE6RD" -o "$IFACE6RD" = 1 ] && IFACE6RD=${INTERFACE}_6rd
- +
- + json_init
- + json_add_string name "$IFACE6RD"
- + json_add_string ifname "@$INTERFACE"
- + json_add_string proto "6rd"
- + json_add_string peeraddr "$ip6rdbr"
- + json_add_int ip4prefixlen "$v4mask"
- + json_add_string ip6prefix "$ip6rdprefix"
- + json_add_int ip6prefixlen "$ip6rdprefixlen"
- + json_add_string tunlink "$INTERFACE"
- + [ -n "$IFACE6RD_DELEGATE" ] && json_add_boolean delegate "$IFACE6RD_DELEGATE"
- + [ -n "$ZONE6RD" ] || ZONE6RD=$ZONE
- + [ -n "$ZONE6RD" ] && json_add_string zone "$ZONE6RD"
- + json_close_object
- +
- + ubus call network add_dynamic "$(json_dump)"
- fi
-
- # TODO
- diff --git a/package/netifd/files/lib/netifd/proto/dhcp.sh b/package/netifd/files/lib/netifd/proto/dhcp.sh
- index a270c68..b14f7be 100755
- --- a/package/netifd/files/lib/netifd/proto/dhcp.sh
- +++ b/package/netifd/files/lib/netifd/proto/dhcp.sh
- @@ -5,31 +5,44 @@
- init_proto "$@"
-
- proto_dhcp_init_config() {
- - proto_config_add_string "ipaddr"
- - proto_config_add_string "netmask"
- - proto_config_add_string "hostname"
- - proto_config_add_string "clientid"
- - proto_config_add_string "vendorid"
- - proto_config_add_boolean "broadcast"
- - proto_config_add_string "reqopts"
- - proto_config_add_string "iface6rd"
- + renew_handler=1
- +
- + proto_config_add_string 'ipaddr:ipaddr'
- + proto_config_add_string 'hostname:hostname'
- + proto_config_add_string clientid
- + proto_config_add_string vendorid
- + proto_config_add_boolean 'broadcast:bool'
- + proto_config_add_string 'reqopts:list(string)'
- + proto_config_add_string iface6rd
- + proto_config_add_string sendopts
- + proto_config_add_boolean delegate
- + proto_config_add_string zone6rd
- + proto_config_add_string zone
- }
-
- proto_dhcp_setup() {
- local config="$1"
- local iface="$2"
-
- - local ipaddr hostname clientid vendorid broadcast reqopts iface6rd
- - json_get_vars ipaddr hostname clientid vendorid broadcast reqopts iface6rd
- + local ipaddr hostname clientid vendorid broadcast reqopts iface6rd sendopts delegate zone6rd zone
- + json_get_vars ipaddr hostname clientid vendorid broadcast reqopts iface6rd sendopts delegate zone6rd zone
-
- local opt dhcpopts
- for opt in $reqopts; do
- append dhcpopts "-O $opt"
- done
-
- + for opt in $sendopts; do
- + append dhcpopts "-x $opt"
- + done
- +
- [ "$broadcast" = 1 ] && broadcast="-B" || broadcast=
- [ -n "$clientid" ] && clientid="-x 0x3d:${clientid//:/}" || clientid="-C"
- [ -n "$iface6rd" ] && proto_export "IFACE6RD=$iface6rd"
- + [ -n "$iface6rd" ] && append dhcpopts "-O 212"
- + [ -n "$zone6rd" ] && proto_export "ZONE6RD=$zone6rd"
- + [ -n "$zone" ] && proto_export "ZONE=$zone"
- + [ "$delegate" = "0" ] && proto_export "IFACE6RD_DELEGATE=0"
-
- proto_export "INTERFACE=$config"
- proto_run_command "$config" udhcpc \
- @@ -42,10 +55,16 @@ proto_dhcp_setup() {
- $clientid $broadcast $dhcpopts
- }
-
- +proto_dhcp_renew() {
- + local interface="$1"
- + # SIGUSR1 forces udhcpc to renew its lease
- + local sigusr1="$(kill -l SIGUSR1)"
- + [ -n "$sigusr1" ] && proto_kill_command "$interface" $sigusr1
- +}
- +
- proto_dhcp_teardown() {
- local interface="$1"
- proto_kill_command "$interface"
- }
-
- add_protocol dhcp
- -
- diff --git a/package/netifd/patches/001-musl_af_inet_include.patch b/package/netifd/patches/001-musl_af_inet_include.patch
- new file mode 100644
- index 0000000..510ee05
- --- /dev/null
- +++ b/package/netifd/patches/001-musl_af_inet_include.patch
- @@ -0,0 +1,11 @@
- +diff -urN netifd-2012-10-29/utils.c netifd-2012-10-29.new/utils.c
- +--- netifd-2012-10-29/utils.c 2012-11-23 17:15:39.000000000 +0100
- ++++ netifd-2012-10-29.new/utils.c 2012-11-23 17:16:53.409244361 +0100
- +@@ -17,6 +17,7 @@
- +
- + #include <arpa/inet.h>
- + #include <netinet/in.h>
- ++#include <sys/socket.h>
- +
- + void
- + __vlist_simple_init(struct vlist_simple_tree *tree, int offset)
- diff --git a/package/netifd/patches/002-fix_compile_with_old_includes.patch b/package/netifd/patches/002-fix_compile_with_old_includes.patch
- new file mode 100644
- index 0000000..361b2d1
- --- /dev/null
- +++ b/package/netifd/patches/002-fix_compile_with_old_includes.patch
- @@ -0,0 +1,34 @@
- +--- a/system-linux.c
- ++++ b/system-linux.c
- +@@ -43,6 +43,31 @@
- + #define RTN_FAILED_POLICY 12
- + #endif
- +
- ++
- ++#ifndef IFLA_IPTUN_MAX
- ++enum {
- ++ IFLA_IPTUN_UNSPEC,
- ++ IFLA_IPTUN_LINK,
- ++ IFLA_IPTUN_LOCAL,
- ++ IFLA_IPTUN_REMOTE,
- ++ IFLA_IPTUN_TTL,
- ++ IFLA_IPTUN_TOS,
- ++ IFLA_IPTUN_ENCAP_LIMIT,
- ++ IFLA_IPTUN_FLOWINFO,
- ++ IFLA_IPTUN_FLAGS,
- ++ IFLA_IPTUN_PROTO,
- ++ IFLA_IPTUN_PMTUDISC,
- ++ IFLA_IPTUN_6RD_PREFIX,
- ++ IFLA_IPTUN_6RD_RELAY_PREFIX,
- ++ IFLA_IPTUN_6RD_PREFIXLEN,
- ++ IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
- ++ __IFLA_IPTUN_MAX,
- ++};
- ++#define IFLA_IPTUN_MAX (__IFLA_IPTUN_MAX - 1)
- ++#endif
- ++
- ++
- ++
- + #include <string.h>
- + #include <fcntl.h>
- + #include <glob.h>
- diff --git a/package/ubus/Makefile b/package/ubus/Makefile
- index be18fb5..ba96b3b 100644
- --- a/package/ubus/Makefile
- +++ b/package/ubus/Makefile
- @@ -1,13 +1,13 @@
- include $(TOPDIR)/rules.mk
-
- PKG_NAME:=ubus
- -PKG_VERSION:=2013-08-08
- +PKG_VERSION:=2014-07-03
- PKG_RELEASE=$(PKG_SOURCE_VERSION)
-
- PKG_SOURCE_PROTO:=git
- PKG_SOURCE_URL:=git://nbd.name/luci2/ubus.git
- PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
- -PKG_SOURCE_VERSION:=b20a8a01c7faea5bcc9d34d10dcf7736589021b8
- +PKG_SOURCE_VERSION:=f688c7ad0b2435a89bfd13f5496cabf596b54c8f
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
- PKG_MIRROR_MD5SUM:=
- CMAKE_INSTALL:=1
- @@ -38,6 +38,7 @@ define Package/libubus
- SECTION:=libs
- CATEGORY:=Libraries
- DEPENDS:=+libubox
- + ABI_VERSION:=$(PKG_VERSION)
- TITLE:=OpenWrt RPC client library
- endef
-
- @@ -66,7 +67,7 @@ endef
-
- define Package/libubus/install
- $(INSTALL_DIR) $(1)/lib
- - $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/lib/
- + $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so $(1)/lib/
- endef
-
- define Package/libubus-lua/install
- @@ -74,8 +75,7 @@ define Package/libubus-lua/install
- $(CP) $(PKG_BUILD_DIR)/lua/ubus.so $(1)/usr/lib/lua/
- endef
-
- -$(eval $(call BuildPackage,ubus))
- -$(eval $(call BuildPackage,ubusd))
- $(eval $(call BuildPackage,libubus))
- $(eval $(call BuildPackage,libubus-lua))
- -
- +$(eval $(call BuildPackage,ubus))
- +$(eval $(call BuildPackage,ubusd))
- diff --git a/package/uci/Makefile b/package/uci/Makefile
- index 54ad80b..29f9ef3 100644
- --- a/package/uci/Makefile
- +++ b/package/uci/Makefile
- @@ -1,5 +1,5 @@
- #
- -# Copyright (C) 2008-2013 OpenWrt.org
- +# Copyright (C) 2008-2014 OpenWrt.org
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- @@ -7,13 +7,13 @@
-
- include $(TOPDIR)/rules.mk
-
- -UCI_VERSION=2013-06-11
- +UCI_VERSION=2014-04-11
- UCI_RELEASE=1
-
- PKG_NAME:=uci
- PKG_VERSION:=$(UCI_VERSION)$(if $(UCI_RELEASE),.$(UCI_RELEASE))
- PKG_RELEASE:=1
- -PKG_REV:=c9c9d5cb085acc58b6579ace83fb79c085a9db27
- +PKG_REV:=e339407372ffc70b1451e4eda218c01aa95a6a7f
-
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
- PKG_SOURCE_URL:=git://nbd.name/uci.git
|