blob: 7b4c2d669d34b7a9606070f620ef43bace1d01ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require iproute2.inc
PR = "${INC_PR}.0"
# There is no tarball for v2.6.35.1, but there is a tag.
SRCREV = "v${PV}"
SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git;protocol=git \
file://configure-cross.patch \
"
S = "${WORKDIR}/git"
do_configure () {
./configure ${STAGING_DIR_TARGET}
}
FILES_${PN} += "${base_libdir}/tc/*.so"
FILES_${PN}-dbg += "${base_libdir}/tc/.debug"
|