diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2006-10-30 23:02:57 +0000 |
---|---|---|
committer | Jamie Lenehan <lenehan@twibble.org> | 2006-10-30 23:02:57 +0000 |
commit | 67ed763559af9bcbe3b8cf48ca52cc9f0df8c24b (patch) | |
tree | 39a1308901fbda6c35f6acf959cf13f9a817f7ab /packages/iproute2/iproute2_2.6.16.bb | |
parent | 6ba08e750c65b992fed89a82b82070a37ae92bbc (diff) |
iproute2 2.6.16: Add the tc (used for QoS) command back to iproute. It was
being left out due to errors compiling it when using recent versions of
flex, such as the one included in OE. The fix is to patch the flex input so
that there are no longer any conflicts with variables from the newer version
of flex.
Diffstat (limited to 'packages/iproute2/iproute2_2.6.16.bb')
-rw-r--r-- | packages/iproute2/iproute2_2.6.16.bb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/iproute2/iproute2_2.6.16.bb b/packages/iproute2/iproute2_2.6.16.bb index 26805a779d..d71421d1e4 100644 --- a/packages/iproute2/iproute2_2.6.16.bb +++ b/packages/iproute2/iproute2_2.6.16.bb @@ -5,8 +5,9 @@ DEPENDS = "flex-native bison-native" DATE="060323" SRC_URI="http://developer.osdl.org/dev/iproute2/download/${P}-${DATE}.tar.gz \ - file://iproute2-2.6.15_no_strip.diff;patch=1;pnum=0" -PR="r0" + file://iproute2-2.6.15_no_strip.diff;patch=1;pnum=0 \ + file://new-flex-fix.patch;patch=1" +PR="r1" S="${WORKDIR}/${P}-${DATE}" EXTRA_OEMAKE = "CC='${CC}' KERNEL_INCLUDE=${STAGING_KERNEL_DIR}/include DOCDIR=${docdir}/iproute2 SUBDIRS='lib tc ip' SBINDIR=/sbin" @@ -14,3 +15,6 @@ EXTRA_OEMAKE = "CC='${CC}' KERNEL_INCLUDE=${STAGING_KERNEL_DIR}/include DOCDIR=$ do_install () { oe_runmake DESTDIR=${D} install } + +FILES_${PN} += "/usr/lib/tc/*" +FILES_${PN}-dbg += "/usr/lib/tc/.debug" |