aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2013-10-31 14:29:46 +0800
committerJoe MacDonald <joe@deserted.net>2013-10-31 13:00:48 -0400
commitfe0c58ddd2035fa04540cb09c42a9473ea797154 (patch)
treeb53dfc4760468dcb4b8bba75c731c309059a7fdb /meta-networking
parentedd499dfdba1a944497185af67e307d5cef7ab9e (diff)
downloadmeta-openembedded-contrib-fe0c58ddd2035fa04540cb09c42a9473ea797154.tar.gz
bridge-utils: inherit update-alternatives to avoid duplicate code
Inherit update-alternatives to avoid duplicate code. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Joe MacDonald <joe@deserted.net>
Diffstat (limited to 'meta-networking')
-rw-r--r--meta-networking/recipes-support/bridge-utils/bridge-utils.inc14
1 files changed, 5 insertions, 9 deletions
diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils.inc b/meta-networking/recipes-support/bridge-utils/bridge-utils.inc
index bd96c6ab90..bcdc04a4f2 100644
--- a/meta-networking/recipes-support/bridge-utils/bridge-utils.inc
+++ b/meta-networking/recipes-support/bridge-utils/bridge-utils.inc
@@ -11,7 +11,11 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/bridge/bridge-utils-${PV}.tar.gz \
file://bridge-utils-1.5-fix-incorrect-command-in-manual.patch \
"
-inherit autotools
+inherit autotools update-alternatives
+
+ALTERNATIVE_${PN} = "brctl"
+ALTERNATIVE_PRIORITY[brctl] = "100"
+ALTERNATIVE_LINK_NAME[brctl] = "${sbindir}/brctl"
EXTRA_OECONF = "--with-linux-headers=${STAGING_INCDIR}"
@@ -23,11 +27,3 @@ do_install_append () {
}
RRECOMMENDS_${PN} = "kernel-module-bridge"
-
-pkg_postinst_${PN} () {
- update-alternatives --install ${sbindir}/brctl brctl brctl.${PN} 100
-}
-
-pkg_prerm_${PN} () {
- update-alternatives --remove brctl brctl.${PN}
-}