summaryrefslogtreecommitdiff
path: root/iproute2
diff options
context:
space:
mode:
authorJuergen Daubert <jue@jue.li>2014-12-26 09:49:28 +0100
committerJuergen Daubert <jue@jue.li>2014-12-26 09:49:28 +0100
commit294130caae7296eaaceb9cb6bf0fd4f8ccb7d6a5 (patch)
treeec987a89fb6b59e49fd30fa4b2369c0f60eea8db /iproute2
parentb7dec43ed343b0b04d96a355b80f3bf67293d6aa (diff)
downloadcore-294130caae7296eaaceb9cb6bf0fd4f8ccb7d6a5.tar.gz
core-294130caae7296eaaceb9cb6bf0fd4f8ccb7d6a5.tar.xz
iproute2: update to 3.18.0
Diffstat (limited to 'iproute2')
-rw-r--r--iproute2/.footprint1
-rw-r--r--iproute2/.md5sum6
-rw-r--r--iproute2/Pkgfile2
-rw-r--r--iproute2/lo.iproute21
-rw-r--r--iproute2/net.iproute24
5 files changed, 7 insertions, 7 deletions
diff --git a/iproute2/.footprint b/iproute2/.footprint
index b6d74efb..00e8e11f 100644
--- a/iproute2/.footprint
+++ b/iproute2/.footprint
@@ -2,6 +2,7 @@ drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/iproute2/
-rw-r--r-- root/root etc/iproute2/ematch_map
-rw-r--r-- root/root etc/iproute2/group
+-rw-r--r-- root/root etc/iproute2/nl_protos
-rw-r--r-- root/root etc/iproute2/rt_dsfield
-rw-r--r-- root/root etc/iproute2/rt_protos
-rw-r--r-- root/root etc/iproute2/rt_realms
diff --git a/iproute2/.md5sum b/iproute2/.md5sum
index 402a64fd..b8852a1e 100644
--- a/iproute2/.md5sum
+++ b/iproute2/.md5sum
@@ -1,3 +1,3 @@
-b741a02c6dda5818d18011d572874493 iproute2-3.17.0.tar.xz
-d6eb5a51b9bb5c1cbdf86a246dccf3c5 lo.iproute2
-b701a16fa5bec9c605b726f860bf83b5 net.iproute2
+6f6ad51a00007880460e103367b16057 iproute2-3.18.0.tar.xz
+7b469125cfe2d9916ba03f7c65b9dcd5 lo.iproute2
+826848debe693f2e2a3e235ce9abe601 net.iproute2
diff --git a/iproute2/Pkgfile b/iproute2/Pkgfile
index 185801ae..c8089119 100644
--- a/iproute2/Pkgfile
+++ b/iproute2/Pkgfile
@@ -4,7 +4,7 @@
# Depends on: db iptables
name=iproute2
-version=3.17.0
+version=3.18.0
release=1
source=(https://www.kernel.org/pub/linux/utils/net/$name/$name-$version.tar.xz \
lo.iproute2 net.iproute2)
diff --git a/iproute2/lo.iproute2 b/iproute2/lo.iproute2
index 0f61672d..1eefd527 100644
--- a/iproute2/lo.iproute2
+++ b/iproute2/lo.iproute2
@@ -5,7 +5,6 @@
case $1 in
start)
- # loopback
/sbin/ip addr add 127.0.0.1/8 dev lo broadcast + scope host
/sbin/ip link set lo up
;;
diff --git a/iproute2/net.iproute2 b/iproute2/net.iproute2
index 5c77c7ac..c5091fdb 100644
--- a/iproute2/net.iproute2
+++ b/iproute2/net.iproute2
@@ -18,7 +18,7 @@ DHCPOPTS="-h `/bin/hostname` -t 10"
case $1 in
start)
- if [ "${TYPE}" == "DHCP" ]; then
+ if [ "${TYPE}" = "DHCP" ]; then
/sbin/dhcpcd ${DHCPOPTS}
else
/sbin/ip addr add ${ADDR}/${MASK} dev ${DEV} broadcast +
@@ -27,7 +27,7 @@ case $1 in
fi
;;
stop)
- if [ "${TYPE}" == "DHCP" ]; then
+ if [ "${TYPE}" = "DHCP" ]; then
/sbin/dhcpcd -x
else
/sbin/ip route del default

Generated by cgit