From fbbc96aed5086f853a1179f1478ccd252af24094 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Tue, 15 May 2012 18:34:17 -0500 Subject: busybox: use new update-alternatives Signed-off-by: Mark Hatle --- meta/recipes-core/busybox/busybox.inc | 66 ++++++++++------------------- meta/recipes-core/busybox/busybox_1.19.4.bb | 2 +- 2 files changed, 23 insertions(+), 45 deletions(-) diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index 1613878c3f..5b83d32fc1 100644 --- a/meta/recipes-core/busybox/busybox.inc +++ b/meta/recipes-core/busybox/busybox.inc @@ -201,36 +201,36 @@ do_install () { install -m 0644 ${S}/busybox.links ${D}${sysconfdir} } -python package_do_filedeps_append () { - # We need to load the full set of busybox provides from the /etc/busybox.links - # The pkg_postinst_ is what creates the actual links +inherit update-alternatives + +ALTERNATIVE_PRIORITY = "50" - pkg = d.getVar('PN', True) - f_busybox = "/bin/busybox" - f_busybox_links = "/etc/busybox.links" +ALTERNATIVE_${PN}-syslog = "syslog-init syslog-startup-conf" - requires_files = [] - provides_files = [] +ALTERNATIVE_LINK_NAME[syslog-init] = "${sysconfdir}/init.d/syslog" - # Load/backup original set - filerprovides = d.getVar('FILERPROVIDES_%s_%s' % (f_busybox, pkg), True) or "" +ALTERNATIVE_LINK_NAME[syslog-startup-conf] = "${sysconfdir}/syslog-startup.conf" - dep_pipe = os.popen('sed -e "s,^,%s/%s%s Provides: ," %s/%s%s' % (pkgdest, pkg, f_busybox, pkgdest, pkg, f_busybox_links)) +ALTERNATIVE_TARGET = "/bin/busybox" + +python do_package_prepend () { + # We need to load the full set of busybox provides from the /etc/busybox.links + # Use this to see the update-alternatives with the right information - process_deps(dep_pipe, pkg, provides_files, requires_files) + dvar = d.getVar('D', True) + pn = d.getVar('PN', True) + f = open('%s/etc/busybox.links' % (dvar), 'r') - # Add the new set - filerprovides += d.getVar('FILERPROVIDES_%s_%s' % (f_busybox, pkg), True) or "" + for alt_link_name in f: + alt_link_name = alt_link_name.strip() + alt_name = os.path.basename(alt_link_name) - # Make sure there is an entry for this item in the FILERPROVIDESFLIST... - filerprovidesflist = (d.getVar('FILERPROVIDESFLIST_%s' % pkg, True) or "").split() - for file in provides_files: - if file not in filerprovidesflist: - filerprovidesflist.append(file) - d.setVar('FILERPROVIDESFLIST_%s' % pkg, " ".join(filerprovidesflist)) + # Match coreutils + if alt_name == '[': + alt_name = 'lbracket' - # Store the new provides - d.setVar('FILERPROVIDES_%s_%s' % (f_busybox, pkg), filerprovides) + d.appendVar('ALTERNATIVE_%s' % (pn), ' ' + alt_name) + d.setVarFlag('ALTERNATIVE_LINK_NAME', alt_name, alt_link_name) } pkg_postinst_${PN} () { @@ -239,14 +239,6 @@ pkg_postinst_${PN} () { # (update-alternatives have no problem replacing links later anyway) test -n 2> /dev/null || alias test='busybox test' if test "x$D" = "x"; then while read link; do if test ! -h "$link"; then case "$link" in /*/*/*) to="../../bin/busybox";; /bin/*) to="busybox";; /*/*) to="../bin/busybox";; esac; busybox ln -s $to $link; fi; done