diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-02-06 13:42:53 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-06 15:30:45 +0000 |
commit | fa1b8ae52345e172552880df5536a0495a610616 (patch) | |
tree | 44b808c91bfae5047d2205f192dd3101d708bbe6 /meta/recipes-connectivity | |
parent | 45ccb491bcdceea0d19f6f23cf990e8d18a39ba7 (diff) | |
download | poky-fa1b8ae52345e172552880df5536a0495a610616.tar.gz |
iproute2: split out package for tc
tc (the IP traffic control utility) isn't often used and makes up a
reasonably large part of the iproute2 package as well as having a
runtime dependency on iptables, so split it out into its own package.
(From OE-Core rev: 1d353cb30b93cd08d7a0f743534c1cd712bbe018)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/iproute2/iproute2.inc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/recipes-connectivity/iproute2/iproute2.inc b/meta/recipes-connectivity/iproute2/iproute2.inc index 3db21db8d9..568aa5f5dd 100644 --- a/meta/recipes-connectivity/iproute2/iproute2.inc +++ b/meta/recipes-connectivity/iproute2/iproute2.inc | |||
@@ -23,10 +23,13 @@ do_install () { | |||
23 | rm ${D}/share -rf || true | 23 | rm ${D}/share -rf || true |
24 | } | 24 | } |
25 | 25 | ||
26 | # There are only .so files in iproute2 | 26 | # The .so files in iproute2-tc are modules, not traditional libraries |
27 | INSANE_SKIP_${PN} = "dev-so" | 27 | INSANE_SKIP_${PN}-tc = "dev-so" |
28 | |||
29 | PACKAGES =+ "${PN}-tc" | ||
30 | FILES_${PN}-tc = "${base_sbindir}/tc* \ | ||
31 | ${libdir}/tc/*.so" | ||
28 | 32 | ||
29 | FILES_${PN} += "${libdir}/tc" | ||
30 | FILES_${PN}-dbg += "${libdir}/tc/.debug" | 33 | FILES_${PN}-dbg += "${libdir}/tc/.debug" |
31 | 34 | ||
32 | ALTERNATIVE_${PN} = "ip" | 35 | ALTERNATIVE_${PN} = "ip" |