iproute2: add /bin/ip symlink

This commit is contained in:
Fredrik Rinnestam 2017-09-04 19:23:23 +02:00
parent 995107c002
commit 92722b2fb7
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,5 @@
drwxr-xr-x root/root bin/
lrwxrwxrwx root/root bin/ip -> /sbin/ip
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/iproute2/
-rw-r--r-- root/root etc/iproute2/bpf_pinning

View File

@ -1,7 +1,7 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqrSB7o4tt/Cg7yDwzTa3DO0Goa+ivrUMVwUlNSldP2rvk5ZVcorqvY3nnRIodKUlPkVFP5WemCIFlYNvDQacEgg=
SHA256 (Pkgfile) = 32f09423cebf43e247fa500b40ed8813e92ba57a4bdaa8901da10730cca3180e
SHA256 (.footprint) = a4c48598d3252358d99dc6e5ba64b2d0c86f7c312cc8509891881a3c7bd8c4f3
RWRJc1FUaeVeqoOmYS2ey6NjsLnuX8TgQfb9AmfXahSDjmryaq+jQqfitdSOxUdwuQqkOtUcyv7lMZVqDSN6pd/vs0tbSTsAig4=
SHA256 (Pkgfile) = e22f3e60d368340eb4b769a4a5d4fd9a303cefd5ea99e94bc71e8a9356f9ead0
SHA256 (.footprint) = 8b40d0cce375c873ec7ee4a29f4e4625eadfb844b2caadf015cde5ad1cc0dd08
SHA256 (iproute2-4.12.0.tar.xz) = 2e0a4c4262d9f6c169885a6e16c4c5c5f1ef6fd57b6a0e7b41f42be5bb6ebd7d
SHA256 (lo.iproute2) = ce94fcf414aa11927a66a221af14180f125f4efbf985dd4db9a1b43dad9cbcc7
SHA256 (net.iproute2) = 0af62a6d674d159ec77ccb46c7ee189c1dc4db0213026d6c42c2b80ce01d231d

View File

@ -5,7 +5,7 @@
name=iproute2
version=4.12.0
release=1
release=2
source=(https://www.kernel.org/pub/linux/utils/net/$name/$name-$version.tar.xz \
lo.iproute2 net.iproute2)
@ -19,4 +19,8 @@ build() {
rm -r $PKG/usr/share/doc
install -D -m 0755 $SRC/lo.iproute2 $PKG/etc/rc.d/lo
install -D -m 0755 $SRC/net.iproute2 $PKG/etc/rc.d/net
# add ip to user path via symlink
install -d $PKG/bin
ln -s /sbin/ip $PKG/bin/ip
}