Aw: Re: Crosscompiling iproute2
From: Frank Wunderlich <hidden>
Date: 2021-05-25 13:30:21
Currently have an issue i guess from install. After compile i install into local directory,pack it and unpack on target system (/usr/local/sbin).tried https://github.com/frank-w/iproute2/blob/main/crosscompile.sh#L17 Basic ip commands work,but if i try e.g. this ip link add name lanbr0 type bridge vlan_filtering 1 vlan_default_pvid 500 I get this: Garbage instead of arguments "vlan_filtering ...". Try "ip link help". I guess ip tries to call bridge binary from wrong path (tried $PRFX/usr/local/bin).
based on Makefile i tried this install line after building make DESTDIR=$PRFX PREFIX=/usr/local SBINDIR=/usr/local/sbin ARPDDIR=/var/lib/arpd CONFDIR=/etc/iproute2 install it installs to the local folder instead of system-directories, but error on target is still the same :( same line with binaries from debian working, so i'm sure the command is right (and have depencies in linux kernel available), except there was any change in code causing this any idea?