| Summary: | openvpn usage of ip tool from Busybox | ||
|---|---|---|---|
| Product: | buildroot | Reporter: | Aleksandar <aleksandar.zivkovic> |
| Component: | Other | Assignee: | unassigned |
| Status: | RESOLVED FIXED | ||
| Severity: | minor | CC: | buildroot, gustavo |
| Priority: | P5 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Host: | Target: | ||
| Build: | |||
|
Description
Aleksandar
2013-04-04 14:53:12 UTC
Further mk file update solved problem on my side: Index: openvpn.mk =================================================================== --- openvpn.mk (revision 12121) +++ openvpn.mk (revision 12122) @@ -18,9 +18,9 @@ endif ifeq ($(BR2_PACKAGE_IPROUTE2),y) +OPENVPN_CONF_ENV += IPROUTE=/bin/ip +else OPENVPN_CONF_ENV += IPROUTE=/sbin/ip -else -OPENVPN_CONF_ENV += IPROUTE=/bin/ip endif ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y) *SIGH* Actually your modification isn't 100% correct. Busybox <1.21.x places ip in /bin, >=1.21.x places it in /sbin (like the iproute2 package). So some additional logic is needed. I've just sent a patch to the list to address this, try http://patchwork.ozlabs.org/patch/233877/ Thanks for the headsup! Fixed in git commit 1627fb54715406d6c76461d5104ee11dabbf5870 for the upcoming 2013.05 release. |