diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2007-06-18 02:25:08 +0000 |
---|---|---|
committer | Jamie Lenehan <lenehan@twibble.org> | 2007-06-18 02:25:08 +0000 |
commit | a9cd417b6a518e18b4a0c93d7d95a8527f0f3fb2 (patch) | |
tree | 7e592745bfeaa56d12a4d1afc1a7c4e5ead4b10a /packages/iproute2/iproute2.inc | |
parent | f881476e2a4f25aa2cc819885950b05f3a0c6784 (diff) |
iproute2: Use update-alternatives. Note that this moves the ip command from
/sbin to /bin, to match where busybox was putting the ip command.
Diffstat (limited to 'packages/iproute2/iproute2.inc')
-rw-r--r-- | packages/iproute2/iproute2.inc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/iproute2/iproute2.inc b/packages/iproute2/iproute2.inc index e14bfdeefe..c417280cd6 100644 --- a/packages/iproute2/iproute2.inc +++ b/packages/iproute2/iproute2.inc @@ -12,15 +12,23 @@ SRC_URI = "http://developer.osdl.org/dev/iproute2/download/${P}-${DATE}.tar.gz" S = "${WORKDIR}/${DIRNAME}-${PV}-${DATE}" +inherit update-alternatives + EXTRA_OEMAKE = "CC='${CC}' \ KERNEL_INCLUDE=${STAGING_KERNEL_DIR}/include \ DOCDIR=${docdir}/iproute2 \ SUBDIRS='lib tc ip' \ - SBINDIR=/sbin" + SBINDIR=${base_sbindir}" do_install () { oe_runmake DESTDIR=${D} install + mv ${D}${base_sbindir}/ip ${D}${base_sbindir}/ip.iproute2 } FILES_${PN} += "/usr/lib/tc/*" FILES_${PN}-dbg += "/usr/lib/tc/.debug" + +ALTERNATIVE_NAME = "ip" +ALTERNATIVE_PATH = "${base_sbindir}/ip.iproute2" +ALTERNATIVE_LINK = "${base_bindir}/ip" +ALTERNATIVE_PRIORITY = "100" |