]> code.ossystems Code Review - openembedded-core.git/commitdiff
iproute2: split out package for tc
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Thu, 6 Feb 2014 13:42:53 +0000 (13:42 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 6 Feb 2014 15:23:40 +0000 (15:23 +0000)
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.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-connectivity/iproute2/iproute2.inc

index 3db21db8d9f4b47be50f61dd03cb404151818174..568aa5f5ddfb21f8271da12b623d71c174809b1c 100644 (file)
@@ -23,10 +23,13 @@ do_install () {
     rm ${D}/share -rf || true
 }
 
-# There are only .so files in iproute2
-INSANE_SKIP_${PN} = "dev-so"
+# The .so files in iproute2-tc are modules, not traditional libraries
+INSANE_SKIP_${PN}-tc = "dev-so"
+
+PACKAGES =+ "${PN}-tc"
+FILES_${PN}-tc = "${base_sbindir}/tc* \
+                  ${libdir}/tc/*.so"
 
-FILES_${PN} += "${libdir}/tc"
 FILES_${PN}-dbg += "${libdir}/tc/.debug"
 
 ALTERNATIVE_${PN} = "ip"