* [PATCH 00/30] Refactor update-alternatives
@ 2012-05-22 19:30 Mark Hatle
2012-05-22 19:30 ` [PATCH 01/30] update-alternatives.bbclass: Refactor the implementation Mark Hatle
` (7 more replies)
0 siblings, 8 replies; 12+ messages in thread
From: Mark Hatle @ 2012-05-22 19:30 UTC (permalink / raw)
To: openembedded-core
This set of commits refactors update-alternatives. The primary purpose
is to cover all of the corner cases currently in oe-core (and hopefully
other layers) so that recipes can all use the update-alternatives class,
instead of manual update-alternatives calls in man post install/remove
scripts.
The refactored update-alternatives is compatible with the older methods,
but does indicate they are deprecated via a warning message. One of the
key changes is that all referenced alternatives are not added to the
per-file dependency information. For example, gawk sets up an
alternative for 'awk'. The /bin/gawk binary now says it provides
/bin/awk, so that the package management systems that use per file
dependencies (i.e. RPM), will be able to find the minimum set of
packages to resolve the image.
In addition, to all of that, the references have been changed from
".${PN}" to ".${BPN}" for alternatives. This will allow the multilib
system to work as intended by resolving multilib binaries.
All of the work has been tested using buildhistory and building various
images. Buildhistory indicated only expected changes were performed.
(To avoid spamming the list, I have decided to only send the first 3
patches, lrzsz, busybox, util-linux and shadow-native as this is a
reasonable representation of the changes. Please see the referenced
repository and branch below for full details on the series.)
*** BLURB HERE ***
The following changes since commit e6333825c3482a559a0c0499e17f8f48d3042ddf:
tune-mips64.inc: Add new tune file for mips64 big-endian (2012-05-20 20:24:37 -0700)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib mhatle/upd-alt-2
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=mhatle/upd-alt-2
Mark Hatle (30):
update-alternatives.bbclass: Refactor the implementation
update-alternatives.bbclass: Change from using PN to BPN
which: use BPN for alternatives
wget: use BPN for alternatives
time: use BPN for alternatives
shadow: use BPN for alternatives
sed: use BPN for alternatives
mktemp: use BPN for alternatives
less: use BPN for alternatives
patch: use BPN for alternatives
tinylogin: use BPN for alternatives
sysvinit: use new update-alternatives
lrzsz: use new update-alternatives
openssh: use new update-alternatives
busybox: use new update-alternatives
coreutils: use new update-alternatives
dropbear: use new update-alternatives
ncurses: use new update-alternatives
psplash: use new update-alternatives
util-linux: use new update-alternatives
binutils: use new update-alternatives
tar: use new update-alternatives
opkg: use new update-alternatives
cpio: use new update-alternatives
grep: use new update-alternatives
iputils: use new update-alternatives
psmisc: use new update-alternatives
sysklogd: use new update-alternatives
kmod: use new update-alternatives
shadow-utils-native: remove unnecessary alternatives
meta/classes/package.bbclass | 16 +-
meta/classes/package_rpm.bbclass | 4 -
meta/classes/update-alternatives.bbclass | 348 ++++++++++++++++----
meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb | 30 +-
meta/recipes-connectivity/openssh/openssh_6.0p1.bb | 31 +--
meta/recipes-core/busybox/busybox.inc | 66 ++---
meta/recipes-core/busybox/busybox_1.19.4.bb | 2 +-
meta/recipes-core/coreutils/coreutils_6.9.bb | 48 +--
meta/recipes-core/coreutils/coreutils_8.14.bb | 49 ++--
meta/recipes-core/dropbear/dropbear.inc | 12 +-
meta/recipes-core/dropbear/dropbear_2012.55.bb | 2 +-
meta/recipes-core/ncurses/ncurses.inc | 24 +-
meta/recipes-core/psplash/psplash_git.bb | 23 +-
meta/recipes-core/sysvinit/sysvinit/postinst | 17 -
meta/recipes-core/sysvinit/sysvinit/prerm | 9 -
meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb | 65 +---
meta/recipes-core/tinylogin/tinylogin_1.4.bb | 4 +-
meta/recipes-core/util-linux/util-linux.inc | 212 +++----------
meta/recipes-core/util-linux/util-linux_2.21.1.bb | 2 +-
meta/recipes-devtools/binutils/binutils.inc | 18 +-
meta/recipes-devtools/binutils/binutils_2.22.bb | 2 +-
meta/recipes-devtools/opkg/opkg.inc | 13 +-
meta/recipes-devtools/patch/patch.inc | 4 +-
meta/recipes-extended/cpio/cpio_2.11.bb | 2 +-
meta/recipes-extended/cpio/cpio_2.8.bb | 2 +-
meta/recipes-extended/cpio/cpio_v2.inc | 29 +-
meta/recipes-extended/grep/grep_2.5.1a.bb | 25 +-
meta/recipes-extended/grep/grep_2.9.bb | 26 +-
meta/recipes-extended/iputils/iputils_s20101006.bb | 34 +-
meta/recipes-extended/less/less_444.bb | 4 +-
meta/recipes-extended/mktemp/mktemp_1.7.bb | 4 +-
meta/recipes-extended/psmisc/psmisc.inc | 26 +--
meta/recipes-extended/psmisc/psmisc_22.16.bb | 2 +-
meta/recipes-extended/sed/sed_4.1.2.bb | 4 +-
meta/recipes-extended/sed/sed_4.2.1.bb | 4 +-
.../shadow/shadow-native_4.1.4.3.bb | 21 --
meta/recipes-extended/shadow/shadow_4.1.4.3.bb | 4 +-
meta/recipes-extended/sysklogd/sysklogd.inc | 29 +-
meta/recipes-extended/sysklogd/sysklogd_1.5.bb | 2 +-
meta/recipes-extended/tar/tar.inc | 18 +-
meta/recipes-extended/tar/tar_1.17.bb | 2 +-
meta/recipes-extended/tar/tar_1.26.bb | 2 +-
meta/recipes-extended/time/time.inc | 4 +-
meta/recipes-extended/wget/wget.inc | 4 +-
meta/recipes-extended/which/which_2.18.bb | 4 +-
meta/recipes-extended/which/which_2.20.bb | 4 +-
meta/recipes-kernel/kmod/kmod_git.bb | 39 +--
47 files changed, 603 insertions(+), 693 deletions(-)
delete mode 100644 meta/recipes-core/sysvinit/sysvinit/postinst
delete mode 100644 meta/recipes-core/sysvinit/sysvinit/prerm
--
1.7.3.4
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 01/30] update-alternatives.bbclass: Refactor the implementation
2012-05-22 19:30 [PATCH 00/30] Refactor update-alternatives Mark Hatle
@ 2012-05-22 19:30 ` Mark Hatle
2012-05-22 20:11 ` Koen Kooi
2012-05-22 19:30 ` [PATCH 02/30] update-alternatives.bbclass: Change from using PN to BPN Mark Hatle
` (6 subsequent siblings)
7 siblings, 1 reply; 12+ messages in thread
From: Mark Hatle @ 2012-05-22 19:30 UTC (permalink / raw)
To: openembedded-core
Refactor in order to:
* Deprecate the old interfaces, but keep them for compatibility
* Provide a new, interface -- capable of working with split packages
* Each update-alternative will not set proper "per-file" provides
Note: this adds a warning message when the older deprecated behavior is
used. The older behavior has been fully tested using oe-core.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
meta/classes/package.bbclass | 16 +-
meta/classes/package_rpm.bbclass | 4 -
meta/classes/update-alternatives.bbclass | 344 ++++++++++++++++++++++++------
3 files changed, 293 insertions(+), 71 deletions(-)
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 6fba5b6..1b776ae 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1156,6 +1156,15 @@ python package_do_filedeps() {
rpmdeps = d.expand("${RPMDEPS}")
r = re.compile(r'[<>=]+ +[^ ]*')
+ def file_translate(file):
+ ft = file.replace("@", "@at@")
+ ft = ft.replace(" ", "@space@")
+ ft = ft.replace("\t", "@tab@")
+ ft = ft.replace("[", "@openbrace@")
+ ft = ft.replace("]", "@closebrace@")
+ ft = ft.replace("_", "@underscore@")
+ return ft
+
# Quick routine to process the results of the rpmdeps call...
def process_deps(pipe, pkg, provides_files, requires_files):
provides = {}
@@ -1173,12 +1182,7 @@ python package_do_filedeps() {
continue
file = f.replace(pkgdest + "/" + pkg, "")
- file = file.replace("@", "@at@")
- file = file.replace(" ", "@space@")
- file = file.replace("\t", "@tab@")
- file = file.replace("[", "@openbrace@")
- file = file.replace("]", "@closebrace@")
- file = file.replace("_", "@underscore@")
+ file = file_translate(file)
value = line.split(":", 1)[1].strip()
value = r.sub(r'(\g<0>)', value)
diff --git a/meta/classes/package_rpm.bbclass b/meta/classes/package_rpm.bbclass
index 2da7a8b..df2b884 100644
--- a/meta/classes/package_rpm.bbclass
+++ b/meta/classes/package_rpm.bbclass
@@ -710,10 +710,6 @@ python write_specfile () {
splitrconflicts = strip_multilib(localdata.getVar('RCONFLICTS', True), d) or ""
splitrobsoletes = []
- # For now we need to manually supplement RPROVIDES with any update-alternatives links
- if pkg == d.getVar("PN", True):
- splitrprovides = splitrprovides + " " + (d.getVar('ALTERNATIVE_LINK', True) or '') + " " + (d.getVar('ALTERNATIVE_LINKS', True) or '')
-
# Gather special src/first package data
if srcname == splitname:
srcrdepends = splitrdepends
diff --git a/meta/classes/update-alternatives.bbclass b/meta/classes/update-alternatives.bbclass
index 7b0518d..e235299 100644
--- a/meta/classes/update-alternatives.bbclass
+++ b/meta/classes/update-alternatives.bbclass
@@ -3,6 +3,68 @@
# command directly in your recipe, but in most cases this class simplifies
# that job.
#
+# To use this class a number of variables should be defined:
+#
+# List all of the alternatives needed by a package:
+# ALTERNATIVE_<pkg> = "name1 name2 name3 ..."
+#
+# i.e. ALTERNATIVE_busybox = "sh sed test bracket"
+#
+# The pathname of the link
+# ALTERNATIVE_LINK_NAME[name] = "target"
+#
+# This is the name of the binary once it's been installed onto the runtime.
+# This name is global to all split packages in this recipe, and should match
+# other recipes with the same functionality.
+# i.e. ALTERNATIVE_LINK_NAME[bracket] = "/usr/bin/["
+#
+# NOTE: If ALTERNATIVE_LINK_NAME is not defined, it defaults to ${bindir}/name
+#
+# The default link to create for all targets
+# ALTERNATIVE_TARGET = "target"
+#
+# This is useful in a multicall binary case
+# i.e. ALTERNATIVE_TARGET = "/bin/busybox"
+#
+# A non-default link to create for a target
+# ALTERNATIVE_TARGET[name] = "target"
+#
+# This is the name of the binary as it's been install by do_install
+# i.e. ALTERNATIVE_TARGET[sh] = "/bin/bash"
+#
+# A package specific link for a target
+# ALTERNATIVE_TARGET_<pkg>[name] = "target"
+#
+# This is useful when a recipe provides multiple alternatives for the
+# same item.
+#
+# NOTE: If ALTERNATIVE_TARGET is not defined, it will inherit the value
+# from ALTERNATIVE_LINK_NAME.
+#
+# NOTE: If the ALTERNATIVE_LINK_NAME and ALTERNATIVE_TARGET are the same,
+# ALTERNATIVE_TARGET will have '.{PN}' appended to it. If the file
+# referenced has not been renamed, it will also be renamed. (This avoids
+# the need to rename alternative files in the do_install step, but still
+# supports it if necessary for some reason.)
+#
+# The default priority for any alternatives
+# ALTERNATIVE_PRIORITY = "priority"
+#
+# i.e. default is ALTERNATIVE_PRIORITY = "10"
+#
+# The non-default priority for a specific target
+# ALTERNATIVE_PRIORITY[name] = "priority"
+#
+# The package priority for a specific target
+# ALTERNATIVE_PRIORITY_<pkg>[name] = "priority"
+#
+#
+# -----
+#
+#
+# The following describes deprecated behavior, using any of the
+# following modes will result in a warning, and eventually an error:
+#
# There are two basic modes supported: 'single update' and 'batch update'
#
# 'single update' is used for a single alternative command, and you're
@@ -38,79 +100,239 @@
# defaults
ALTERNATIVE_PRIORITY = "10"
-ALTERNATIVE_LINK = "${bindir}/${ALTERNATIVE_NAME}"
-
-update_alternatives_postinst() {
-update-alternatives --install ${ALTERNATIVE_LINK} ${ALTERNATIVE_NAME} ${ALTERNATIVE_PATH} ${ALTERNATIVE_PRIORITY}
-}
-
-update_alternatives_postrm() {
-update-alternatives --remove ${ALTERNATIVE_NAME} ${ALTERNATIVE_PATH}
-}
-
-# for batch alternatives, we use a simple approach to require only one parameter
-# with the rest of the info deduced implicitly
-update_alternatives_batch_postinst() {
-for link in ${ALTERNATIVE_LINKS}
-do
- name=`basename ${link}`
- path=${link}.${PN}
- update-alternatives --install ${link} ${name} ${path} ${ALTERNATIVE_PRIORITY}
-done
-}
-
-update_alternatives_batch_postrm() {
-for link in ${ALTERNATIVE_LINKS}
-do
- name=`basename ${link}`
- path=${link}.${PN}
- update-alternatives --remove ${name} $path
-done
-}
-
-update_alternatives_batch_doinstall() {
- for link in ${ALTERNATIVE_LINKS}
- do
- mv ${D}${link} ${D}${link}.${PN}
- done
-}
+# The following code is deprecated, but included for compatibility with older packages
def update_alternatives_after_parse(d):
if bb.data.inherits_class('native', d) or bb.data.inherits_class('nativesdk', d):
return
+ # The following code is deprecated, but included for compatibility with older packages
+ pn = d.getVar('PN', True)
+
if d.getVar('ALTERNATIVE_LINKS') != None:
- doinstall = d.getVar('do_install', 0)
- doinstall += d.getVar('update_alternatives_batch_doinstall', 0)
- d.setVar('do_install', doinstall)
+ # Convert old format to new format...
+ alt_links = d.getVar('ALTERNATIVE_LINKS', True) or ""
+ for alt_link in alt_links.split():
+ alt_name = os.path.basename(alt_link)
+
+ alternative = d.getVar('ALTERNATIVE_%s' % pn, True) or ""
+ alternative += " " + alt_name
+ d.setVar('ALTERNATIVE_%s' % pn, alternative)
+ d.setVarFlag('ALTERNATIVE_LINK_NAME', alt_name, alt_link)
+ d.setVarFlag('ALTERNATIVE_TARGET', alt_name, alt_link)
return
- if d.getVar('ALTERNATIVE_NAME') == None:
- raise bb.build.FuncFailed, "%s inherits update-alternatives but doesn't set ALTERNATIVE_NAME" % d.getVar('FILE')
- if d.getVar('ALTERNATIVE_PATH') == None:
- raise bb.build.FuncFailed, "%s inherits update-alternatives but doesn't set ALTERNATIVE_PATH" % d.getVar('FILE')
+ if d.getVar('ALTERNATIVE_NAME') != None or d.getVar('ALTERNATIVE_PATH') != None:
+ # Convert old format to new format...
+ alt_name = d.getVar('ALTERNATIVE_NAME', True)
+ alt_path = d.getVar('ALTERNATIVE_PATH', True)
+ alt_link = d.getVar('ALTERNATIVE_LINK', True) or ("%s/%s" % (d.getVar('bindir', True), alt_name))
+ if alt_name == None:
+ raise bb.build.build.FuncFailed, "%s inherits update-alternatives but doesn't set ALTERNATIVE_NAME" % d.getVar('FILE')
+ if alt_path == None:
+ raise bb.build.build.FuncFailed, "%s inherits update-alternatives but doesn't set ALTERNATIVE_PATH" % d.getVar('FILE')
+
+ alternative = d.getVar('ALTERNATIVE_%s' % pn, True) or ""
+ alternative += " " + alt_name
+
+ # Fix the alt_path if it's relative
+ alt_path = os.path.join(os.path.dirname(alt_link), alt_path)
+
+ d.setVar('ALTERNATIVE_%s' % pn, alternative)
+ d.setVarFlag('ALTERNATIVE_LINK_NAME', alt_name, alt_link)
+ d.setVarFlag('ALTERNATIVE_TARGET', alt_name, alt_path)
+
+
+# We need special processing for vardeps because it can not work on
+# modified flag values. So we agregate the flags into a new variable
+# and include that vairable in the set.
+
+UPDALTVARS = "ALTERNATIVE ALTERNATIVE_LINK_NAME ALTERNATIVE_TARGET ALTERNATIVE_PRIORITY"
+
+def gen_updatealternativesvardeps(d):
+ pkgs = (d.getVar("PACKAGES", True) or "").split()
+ vars = (d.getVar("UPDALTVARS", True) or "").split()
+
+ # First compute them for non_pkg versions
+ for v in vars:
+ for flag in (d.getVarFlags(v) or {}):
+ if flag == "doc" or flag == "vardeps" or flag == "vardepsexp":
+ continue
+ d.appendVar('%s_VARDEPS' % (v), ' %s:%s' % (flag, d.getVarFlag(v, flag, False)))
+
+ for p in pkgs:
+ for v in vars:
+ for flag in (d.getVarFlags("%s_%s" % (v,p)) or {}):
+ if flag == "doc" or flag == "vardeps" or flag == "vardepsexp":
+ continue
+ d.appendVar('%s_VARDEPS_%s' % (v,p), ' %s:%s' % (flag, d.getVarFlag('%s_%s' % (v,p), flag, False)))
python __anonymous() {
+ # deprecated stuff...
update_alternatives_after_parse(d)
+
+ # compute special vardeps
+ gen_updatealternativesvardeps(d)
+}
+
+def gen_updatealternativesvars(d):
+ ret = []
+ pkgs = (d.getVar("PACKAGES", True) or "").split()
+ vars = (d.getVar("UPDALTVARS", True) or "").split()
+
+ for v in vars:
+ ret.append(v + "_VARDEPS")
+
+ for p in pkgs:
+ for v in vars:
+ ret.append(v + "_" + p)
+ ret.append(v + "_VARDEPS_" + p)
+ return " ".join(ret)
+
+# First the deprecated items...
+populate_packages[vardeps] += "ALTERNATIVE_LINKS ALTERNATIVE_NAME ALTERNATIVE_PATH"
+
+# Now the new stuff, we use a custom function to generate the right values
+populate_packages[vardeps] += "${UPDALTVARS} ${@gen_updatealternativesvars(d)}"
+
+# We need to do the rename after the image creation step, but before
+# the split and strip steps.. packagecopy seems to be the earliest reasonable
+# place.
+python perform_packagecopy_append () {
+ # Check for deprecated usage...
+ pn = d.getVar('PN', True)
+ if d.getVar('ALTERNATIVE_LINKS', True) != None:
+ bb.warn('%s: Use of ALTERNATIVE_LINKS is deprecated, see update-alternatives.bbclass for more info.' % pn)
+
+ if d.getVar('ALTERNATIVE_NAME', True) != None or d.getVar('ALTERNATIVE_PATH', True) != None:
+ bb.warn('%s: Use of ALTERNATIVE_NAME is deprecated, see update-alternatives.bbclass for more info.' % pn)
+
+ # Do actual update alternatives processing
+ pkgdest = d.getVar('PKGD', True)
+ for pkg in (d.getVar('PACKAGES', True) or "").split():
+ # If the src == dest, we know we need to rename the dest by appending ${PN}
+ link_rename = {}
+ for alt_name in (d.getVar('ALTERNATIVE_%s' % pkg, True) or "").split():
+ alt_link = d.getVarFlag('ALTERNATIVE_LINK_NAME', alt_name, True)
+ if not alt_link:
+ alt_link = "%s/%s" % (d.getVar('bindir', True), alt_name)
+ d.setVarFlag('ALTERNATIVE_LINK_NAME', alt_name, alt_link)
+
+ alt_target = d.getVarFlag('ALTERNATIVE_TARGET_%s' % pkg, alt_name, True) or d.getVarFlag('ALTERNATIVE_TARGET', alt_name, True)
+ alt_target = alt_target or d.getVar('ALTERNATIVE_TARGET_%s' % pkg, True) or d.getVar('ALTERNATIVE_TARGET', True) or alt_link
+ # Sometimes alt_target is specified as relative to the link name.
+ alt_target = os.path.join(os.path.dirname(alt_link), alt_target)
+
+ # If the link and target are the same name, we need to rename the target.
+ if alt_link == alt_target:
+ src = '%s/%s' % (pkgdest, alt_target)
+ alt_target_rename = '%s.%s' % (alt_target, pn)
+ dest = '%s/%s' % (pkgdest, alt_target_rename)
+ if os.path.lexists(dest):
+ bb.note('%s: Already renamed: %s' % (pn, alt_target_rename))
+ elif os.path.lexists(src):
+ if os.path.islink(src):
+ # Delay rename of links
+ link_rename[alt_target] = alt_target_rename
+ else:
+ bb.note('%s: Rename %s -> %s' % (pn, alt_target, alt_target_rename))
+ os.rename(src, dest)
+ else:
+ bb.warn("%s: alternative target (%s or %s) does not exist, skipping..." % (pn, alt_target, alt_target_rename))
+ continue
+ d.setVarFlag('ALTERNATIVE_TARGET_%s' % pkg, alt_name, alt_target_rename)
+
+ # Process delayed link names
+ # Do these after other renames so we can correct broken links
+ for alt_target in link_rename:
+ src = '%s/%s' % (pkgdest, alt_target)
+ dest = '%s/%s' % (pkgdest, link_rename[alt_target])
+ link_target = os.path.join(os.path.dirname(src), os.readlink(src))
+
+ if os.path.lexists(link_target):
+ # Ok, the link_target exists, we can rename
+ bb.note('%s: Rename (link) %s -> %s' % (pn, alt_target, link_rename[alt_target]))
+ os.rename(src, dest)
+ else:
+ # Try to resolve the broken link to link.${PN}
+ link_maybe = '%s.%s' % (os.readlink(src), pn)
+ if os.path.lexists(os.path.join(os.path.dirname(src), link_maybe)):
+ # Ok, the renamed link target exists.. create a new link, and remove the original
+ bb.note('%s: Creating new link %s -> %s' % (pn, link_rename[alt_target], link_maybe))
+ os.symlink(link_maybe, dest)
+ os.unlink(src)
+ else:
+ bb.warn('%s: Unable to resolve dangling symlink: %s' % (pn, alt_target))
}
python populate_packages_prepend () {
- pkg = d.getVar('PN', True)
- bb.note('adding update-alternatives calls to postinst/postrm for %s' % pkg)
- postinst = d.getVar('pkg_postinst_%s' % pkg, True) or d.getVar('pkg_postinst', True)
- if not postinst:
- postinst = '#!/bin/sh\n'
- if d.getVar('ALTERNATIVE_LINKS') != None:
- postinst += d.getVar('update_alternatives_batch_postinst', True)
- else:
- postinst += d.getVar('update_alternatives_postinst', True)
- d.setVar('pkg_postinst_%s' % pkg, postinst)
- postrm = d.getVar('pkg_postrm_%s' % pkg, True) or d.getVar('pkg_postrm', True)
- if not postrm:
- postrm = '#!/bin/sh\n'
- if d.getVar('ALTERNATIVE_LINKS') != None:
- postrm += d.getVar('update_alternatives_batch_postrm', True)
- else:
- postrm += d.getVar('update_alternatives_postrm', True)
- d.setVar('pkg_postrm_%s' % pkg, postrm)
+ pn = d.getVar('BPN', True)
+
+ # Do actual update alternatives processing
+ pkgdest = d.getVar('PKGD', True)
+ for pkg in (d.getVar('PACKAGES', True) or "").split():
+ # Create post install/removal scripts
+ alt_setup_links = ""
+ alt_remove_links = ""
+ for alt_name in (d.getVar('ALTERNATIVE_%s' % pkg, True) or "").split():
+ alt_link = d.getVarFlag('ALTERNATIVE_LINK_NAME', alt_name, True)
+ alt_target = d.getVarFlag('ALTERNATIVE_TARGET_%s' % pkg, alt_name, True) or d.getVarFlag('ALTERNATIVE_TARGET', alt_name, True)
+ alt_target = alt_target or d.getVar('ALTERNATIVE_TARGET_%s' % pkg, True) or d.getVar('ALTERNATIVE_TARGET', True) or alt_link
+ # Sometimes alt_target is specified as relative to the link name.
+ alt_target = os.path.join(os.path.dirname(alt_link), alt_target)
+
+ alt_priority = d.getVarFlag('ALTERNATIVE_PRIORITY_%s' % pkg, alt_name, True) or d.getVarFlag('ALTERNATIVE_PRIORITY', alt_name, True)
+ alt_priority = alt_priority or d.getVar('ALTERNATIVE_PRIORITY_%s' % pkg, True) or d.getVar('ALTERNATIVE_PRIORITY', True)
+
+ # This shouldn't trigger, as it should have been resolved earlier!
+ if alt_link == alt_target:
+ bb.note('alt_link == alt_target: %s == %s -- correcting, this should not happen!' % (alt_link, alt_target))
+ alt_target = '%s.%s' % (alt_target, pn)
+
+ if not os.path.lexists('%s/%s' % (pkgdest, alt_target)):
+ bb.warn('%s: NOT adding alternative provide %s: %s does not exist' % (pn, alt_link, alt_target))
+ continue
+
+ # Default to generate shell script.. eventually we may want to change this...
+ alt_target = os.path.relpath(alt_target, os.path.dirname(alt_link))
+
+ alt_setup_links += ' update-alternatives --install %s %s %s %s\n' % (alt_link, alt_name, alt_target, alt_priority)
+ alt_remove_links += ' update-alternatives --remove %s %s\n' % (alt_name, alt_target)
+
+ if alt_setup_links:
+ bb.note('adding update-alternatives calls to postinst/postrm for %s' % pkg)
+ bb.note('%s' % alt_setup_links)
+ postinst = (d.getVar('pkg_postinst_%s' % pkg, True) or d.getVar('pkg_postinst', True)) or '#!/bin/sh\n'
+ postinst += alt_setup_links
+ d.setVar('pkg_postinst_%s' % pkg, postinst)
+
+ bb.note('%s' % alt_remove_links)
+ postrm = (d.getVar('pkg_postrm_%s' % pkg, True) or d.getVar('pkg_postrm', True)) or '#!/bin/sh\n'
+ postrm += alt_remove_links
+ d.setVar('pkg_postrm_%s' % pkg, postrm)
}
+
+python package_do_filedeps_append () {
+ pn = d.getVar('PN', True)
+ pkgdest = d.getVar('PKGDEST', True)
+
+ for pkg in packages.split():
+ for alt_name in (d.getVar('ALTERNATIVE_%s' % pkg, True) or "").split():
+ alt_link = d.getVarFlag('ALTERNATIVE_LINK_NAME', alt_name, True)
+ alt_target = d.getVarFlag('ALTERNATIVE_TARGET_%s' % pkg, alt_name, True) or d.getVarFlag('ALTERNATIVE_TARGET', alt_name, True)
+ alt_target = alt_target or d.getVar('ALTERNATIVE_TARGET_%s' % pkg, True) or d.getVar('ALTERNATIVE_TARGET', True) or alt_link
+
+ if alt_link == alt_target:
+ bb.warn('alt_link == alt_target: %s == %s' % (alt_link, alt_target))
+ alt_target = '%s.%s' % (alt_target, pn)
+
+ if not os.path.lexists('%s/%s/%s' % (pkgdest, pkg, alt_target)):
+ continue
+
+ # Add file provide
+ trans_target = file_translate(alt_target)
+ d.appendVar('FILERPROVIDES_%s_%s' % (trans_target, pkg), " " + alt_link)
+ if not trans_target in (d.getVar('FILERPROVIDESFLIST_%s' % pkg, True) or ""):
+ d.appendVar('FILERPROVIDESFLIST_%s' % pkg, " " + trans_target)
+}
+
--
1.7.3.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 02/30] update-alternatives.bbclass: Change from using PN to BPN
2012-05-22 19:30 [PATCH 00/30] Refactor update-alternatives Mark Hatle
2012-05-22 19:30 ` [PATCH 01/30] update-alternatives.bbclass: Refactor the implementation Mark Hatle
@ 2012-05-22 19:30 ` Mark Hatle
2012-05-22 19:30 ` [PATCH 03/30] which: use BPN for alternatives Mark Hatle
` (5 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2012-05-22 19:30 UTC (permalink / raw)
To: openembedded-core
In order to better support multilib processing, switch from PN
to BPN.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
meta/classes/update-alternatives.bbclass | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/meta/classes/update-alternatives.bbclass b/meta/classes/update-alternatives.bbclass
index e235299..fce1e84 100644
--- a/meta/classes/update-alternatives.bbclass
+++ b/meta/classes/update-alternatives.bbclass
@@ -42,7 +42,7 @@
# from ALTERNATIVE_LINK_NAME.
#
# NOTE: If the ALTERNATIVE_LINK_NAME and ALTERNATIVE_TARGET are the same,
-# ALTERNATIVE_TARGET will have '.{PN}' appended to it. If the file
+# ALTERNATIVE_TARGET will have '.{BPN}' appended to it. If the file
# referenced has not been renamed, it will also be renamed. (This avoids
# the need to rename alternative files in the do_install step, but still
# supports it if necessary for some reason.)
@@ -91,8 +91,8 @@
# listed in ALTERNATIVE_LINKS, say /path/cmd:
#
# the name of the alternative would be: cmd
-# the path of installed alternative would be: /path/cmd.${PN}
-# ${D}/path/cmd will be renamed to ${D}/path/cmd.{PN} automatically
+# the path of installed alternative would be: /path/cmd.${BPN}
+# ${D}/path/cmd will be renamed to ${D}/path/cmd.{BPN} automatically
# priority will be the same from ALTERNATIVE_PRIORITY
#
# If above assumption breaks your requirement, then you still need to use
@@ -107,7 +107,7 @@ def update_alternatives_after_parse(d):
return
# The following code is deprecated, but included for compatibility with older packages
- pn = d.getVar('PN', True)
+ pn = d.getVar('BPN', True)
if d.getVar('ALTERNATIVE_LINKS') != None:
# Convert old format to new format...
@@ -200,7 +200,7 @@ populate_packages[vardeps] += "${UPDALTVARS} ${@gen_updatealternativesvars(d)}"
# place.
python perform_packagecopy_append () {
# Check for deprecated usage...
- pn = d.getVar('PN', True)
+ pn = d.getVar('BPN', True)
if d.getVar('ALTERNATIVE_LINKS', True) != None:
bb.warn('%s: Use of ALTERNATIVE_LINKS is deprecated, see update-alternatives.bbclass for more info.' % pn)
@@ -210,7 +210,7 @@ python perform_packagecopy_append () {
# Do actual update alternatives processing
pkgdest = d.getVar('PKGD', True)
for pkg in (d.getVar('PACKAGES', True) or "").split():
- # If the src == dest, we know we need to rename the dest by appending ${PN}
+ # If the src == dest, we know we need to rename the dest by appending ${BPN}
link_rename = {}
for alt_name in (d.getVar('ALTERNATIVE_%s' % pkg, True) or "").split():
alt_link = d.getVarFlag('ALTERNATIVE_LINK_NAME', alt_name, True)
@@ -254,7 +254,7 @@ python perform_packagecopy_append () {
bb.note('%s: Rename (link) %s -> %s' % (pn, alt_target, link_rename[alt_target]))
os.rename(src, dest)
else:
- # Try to resolve the broken link to link.${PN}
+ # Try to resolve the broken link to link.${BPN}
link_maybe = '%s.%s' % (os.readlink(src), pn)
if os.path.lexists(os.path.join(os.path.dirname(src), link_maybe)):
# Ok, the renamed link target exists.. create a new link, and remove the original
@@ -313,7 +313,7 @@ python populate_packages_prepend () {
}
python package_do_filedeps_append () {
- pn = d.getVar('PN', True)
+ pn = d.getVar('BPN', True)
pkgdest = d.getVar('PKGDEST', True)
for pkg in packages.split():
--
1.7.3.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 03/30] which: use BPN for alternatives
2012-05-22 19:30 [PATCH 00/30] Refactor update-alternatives Mark Hatle
2012-05-22 19:30 ` [PATCH 01/30] update-alternatives.bbclass: Refactor the implementation Mark Hatle
2012-05-22 19:30 ` [PATCH 02/30] update-alternatives.bbclass: Change from using PN to BPN Mark Hatle
@ 2012-05-22 19:30 ` Mark Hatle
2012-05-22 19:30 ` [PATCH 13/30] lrzsz: use new update-alternatives Mark Hatle
` (4 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2012-05-22 19:30 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
meta/recipes-extended/which/which_2.18.bb | 4 ++--
meta/recipes-extended/which/which_2.20.bb | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/meta/recipes-extended/which/which_2.18.bb b/meta/recipes-extended/which/which_2.18.bb
index f87929b..d54e776 100644
--- a/meta/recipes-extended/which/which_2.18.bb
+++ b/meta/recipes-extended/which/which_2.18.bb
@@ -27,10 +27,10 @@ do_configure_prepend() {
sed -i "s#${OLD}#${NEW}#g" `grep -rl ${OLD} ${S}`
}
do_install_append() {
- mv ${D}/${bindir}/which ${D}/${bindir}/which.${PN}
+ mv ${D}/${bindir}/which ${D}/${bindir}/which.${BPN}
}
ALTERNATIVE_NAME = "which"
-ALTERNATIVE_PATH = "which.${PN}"
+ALTERNATIVE_PATH = "which.${BPN}"
ALTERNATIVE_PRIORITY = "100"
diff --git a/meta/recipes-extended/which/which_2.20.bb b/meta/recipes-extended/which/which_2.20.bb
index a4e860b..9b43943 100644
--- a/meta/recipes-extended/which/which_2.20.bb
+++ b/meta/recipes-extended/which/which_2.20.bb
@@ -24,9 +24,9 @@ do_configure_prepend() {
do_install() {
autotools_do_install
- mv ${D}${bindir}/which ${D}${bindir}/which.${PN}
+ mv ${D}${bindir}/which ${D}${bindir}/which.${BPN}
}
ALTERNATIVE_NAME = "which"
-ALTERNATIVE_PATH = "which.${PN}"
+ALTERNATIVE_PATH = "which.${BPN}"
ALTERNATIVE_PRIORITY = "100"
--
1.7.3.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 13/30] lrzsz: use new update-alternatives
2012-05-22 19:30 [PATCH 00/30] Refactor update-alternatives Mark Hatle
` (2 preceding siblings ...)
2012-05-22 19:30 ` [PATCH 03/30] which: use BPN for alternatives Mark Hatle
@ 2012-05-22 19:30 ` Mark Hatle
2012-05-22 19:30 ` [PATCH 15/30] busybox: " Mark Hatle
` (3 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2012-05-22 19:30 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb | 30 +++++++++++++-----------------
1 files changed, 13 insertions(+), 17 deletions(-)
diff --git a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
index 7f86157..12ac5ff 100644
--- a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
+++ b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
file://src/lrz.c;beginline=1;endline=10;md5=5276956373ff7d8758837f6399a1045f"
SECTION = "console/network"
DEPENDS = ""
-PR = "r4"
+PR = "r5"
SRC_URI = "http://www.ohse.de/uwe/releases/lrzsz-${PV}.tar.gz \
file://autotools.patch \
@@ -27,20 +27,16 @@ do_install() {
install -m 0755 src/lrz src/lsz ${D}${bindir}/
}
-pkg_postinst_${PN}() {
- for util in rz rx rb; do
- update-alternatives --install ${bindir}/$util $util lrz 100
- done
- for util in sz sx sb; do
- update-alternatives --install ${bindir}/$util $util lsz 100
- done
-}
+inherit update-alternatives
-pkg_postrm_${PN}() {
- for util in rz rx rb; do
- update-alternatives --remove $util ${bindir}/lrz
- done
- for util sz sx sb; do
- update-alternatives --remove $util ${bindir}/lsz
- done
-}
+ALTERNATIVE_PRIORITY = "100"
+
+ALTERNATIVE_${PN} = "rz rx rb sz sx sb"
+
+ALTERNATIVE_TARGET[rz] = "${bindir}/lrz"
+ALTERNATIVE_TARGET[rx] = "${bindir}/lrz"
+ALTERNATIVE_TARGET[rb] = "${bindir}/lrz"
+
+ALTERNATIVE_TARGET[sz] = "${bindir}/lsz"
+ALTERNATIVE_TARGET[sx] = "${bindir}/lsz"
+ALTERNATIVE_TARGET[sb] = "${bindir}/lsz"
--
1.7.3.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 15/30] busybox: use new update-alternatives
2012-05-22 19:30 [PATCH 00/30] Refactor update-alternatives Mark Hatle
` (3 preceding siblings ...)
2012-05-22 19:30 ` [PATCH 13/30] lrzsz: use new update-alternatives Mark Hatle
@ 2012-05-22 19:30 ` Mark Hatle
2012-05-22 19:30 ` [PATCH 20/30] util-linux: " Mark Hatle
` (2 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2012-05-22 19:30 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
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 1613878..5b83d32 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 </etc/busybox.links; fi
-
- # This adds the links, remember that this has to work when building an image too, hence the $D
- while read link; do case "$link" in /*/*/*) to="../../bin/busybox";; /bin/*) to="busybox";; /*/*) to="../bin/busybox";; esac; bn=`basename $link`; update-alternatives --install $link $bn $to 50; done <$D/etc/busybox.links
-}
-
-pkg_postinst_${PN}-syslog () {
- update-alternatives --install ${sysconfdir}/init.d/syslog syslog-init syslog.${BPN} 50
- update-alternatives --install ${sysconfdir}/syslog-startup.conf syslog-startup-conf syslog-startup.conf.${BPN} 50
}
pkg_prerm_${PN} () {
@@ -268,17 +260,6 @@ pkg_prerm_${PN} () {
ln -s /bin/busybox $tmpdir/sort
ln -s /bin/busybox $tmpdir/grep
export PATH=$PATH:$tmpdir
-
- while read link
- do
- case "$link" in
- /*/*/*) to="../../bin/busybox";;
- /bin/*) to="busybox";;
- /*/*) to="../bin/busybox";;
- esac
- bn=`basename $link`
- sh /usr/bin/update-alternatives --remove $bn $to
- done </etc/busybox.links
}
pkg_prerm_${PN}-syslog () {
@@ -288,7 +269,4 @@ pkg_prerm_${PN}-syslog () {
/etc/init.d/syslog stop
fi
fi
-
- update-alternatives --remove syslog-init syslog.${BPN}
- update-alternatives --remove syslog-startup-conf syslog-startup.conf.${BPN}
}
diff --git a/meta/recipes-core/busybox/busybox_1.19.4.bb b/meta/recipes-core/busybox/busybox_1.19.4.bb
index a797ac9..0717075 100644
--- a/meta/recipes-core/busybox/busybox_1.19.4.bb
+++ b/meta/recipes-core/busybox/busybox_1.19.4.bb
@@ -1,5 +1,5 @@
require busybox.inc
-PR = "r5"
+PR = "r6"
SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
file://B921600.patch \
--
1.7.3.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 20/30] util-linux: use new update-alternatives
2012-05-22 19:30 [PATCH 00/30] Refactor update-alternatives Mark Hatle
` (4 preceding siblings ...)
2012-05-22 19:30 ` [PATCH 15/30] busybox: " Mark Hatle
@ 2012-05-22 19:30 ` Mark Hatle
2012-05-22 19:30 ` [PATCH 30/30] shadow-utils-native: remove unnecessary alternatives Mark Hatle
2012-05-30 12:04 ` [PATCH 00/30] Refactor update-alternatives Richard Purdie
7 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2012-05-22 19:30 UTC (permalink / raw)
To: openembedded-core
In addition to switching to the new update-alternatives, it was discovered
that the sln, shutdown, halt, reboot and related commands were never generated.
Remove these from the list. (These appear to have been removed from util-linux
some time ago.)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
meta/recipes-core/util-linux/util-linux.inc | 212 +++++----------------
meta/recipes-core/util-linux/util-linux_2.21.1.bb | 2 +-
2 files changed, 45 insertions(+), 169 deletions(-)
diff --git a/meta/recipes-core/util-linux/util-linux.inc b/meta/recipes-core/util-linux/util-linux.inc
index 024b55c..688a5be 100644
--- a/meta/recipes-core/util-linux/util-linux.inc
+++ b/meta/recipes-core/util-linux/util-linux.inc
@@ -43,15 +43,15 @@ EXTRA_OECONF = "--libdir=${base_libdir} --disable-use-tty-group \
FILES_${PN}-doc += "${datadir}/getopt/getopt-*.*"
FILES_util-linux-agetty = "${base_sbindir}/agetty"
-FILES_util-linux-fdisk = "${base_sbindir}/fdisk.${PN}"
+FILES_util-linux-fdisk = "${base_sbindir}/fdisk.${BPN}"
FILES_util-linux-cfdisk = "${base_sbindir}/cfdisk"
FILES_util-linux-sfdisk = "${sbindir}/sfdisk"
-FILES_util-linux-swaponoff = "${base_sbindir}/swapon.${PN} ${sbindir}/swapoff.${PN}"
-FILES_util-linux-losetup = "${base_sbindir}/losetup.${PN}"
-FILES_util-linux-mount = "${base_bindir}/mount.${PN}"
+FILES_util-linux-swaponoff = "${base_sbindir}/swapon.${BPN} ${sbindir}/swapoff.${BPN}"
+FILES_util-linux-losetup = "${base_sbindir}/losetup.${BPN}"
+FILES_util-linux-mount = "${base_bindir}/mount.${BPN}"
FILES_util-linux-mcookie = "${bindir}/mcookie"
-FILES_util-linux-umount = "${base_bindir}/umount.${PN}"
-FILES_util-linux-readprofile = "${base_sbindir}/readprofile.${PN}"
+FILES_util-linux-umount = "${base_bindir}/umount.${BPN}"
+FILES_util-linux-readprofile = "${base_sbindir}/readprofile.${BPN}"
FILES_util-linux-uuidgen = "${bindir}/uuidgen"
FILES_util-linux-libblkid = "${base_libdir}/libblkid.so.*"
@@ -85,29 +85,6 @@ do_compile () {
oe_runmake ARCH=${TARGET_ARCH} CPU= CPUOPT= 'OPT=${CFLAGS}'
}
-checklink() {
- local targ link value
- targ="$1"
- link="$2"
- ext="$3"
- if test -h "$link"
- then
- value="$(readlink "$link")"
- if test "$value" = "$targ"
- then
- rm "$link"
- ln -s "$targ"."${PN}" "$link$ext"
- return 0
- else
- echo "$link: '$value' found '$targ' expected" >&2
- return 1
- fi
- else
- echo "$link: not a symbolic link" >&2
- return 1
- fi
-}
-
do_install () {
# with ccache the timestamps on compiled files may
# end up earlier than on their inputs, this allows
@@ -119,7 +96,7 @@ do_install () {
mkdir -p ${D}${base_bindir}
sbinprogs="agetty ctrlaltdel cfdisk vipw vigr"
- sbinprogs_a="pivot_root hwclock mkswap shutdown mkfs.minix fsck.minix losetup swapon fdisk readprofile fsck blkid sln blockdev"
+ sbinprogs_a="pivot_root hwclock mkswap mkfs.minix fsck.minix losetup swapon fdisk readprofile fsck blkid blockdev"
usrbinprogs_a="chfn chsh hexdump last logger mesg newgrp renice wall setsid chrt flock"
binprogs_a="dmesg kill more umount mount login reset"
@@ -141,161 +118,60 @@ do_install () {
done
fi
- for p in $usrbinprogs_a; do
- if [ -f "${D}${bindir}/$p" ]; then
- mv "${D}${bindir}/$p" "${D}${bindir}/$p.${PN}"
- fi
- done
-
- for p in $binprogs_a; do
- if [ -f "${D}${base_bindir}/$p" ]; then
- mv "${D}${base_bindir}/$p" "${D}${base_bindir}/$p.${PN}"
- fi
- done
-
- for p in $sbinprogs_a; do
- if [ -f "${D}${base_sbindir}/$p" ]; then
- mv "${D}${base_sbindir}/$p" "${D}${base_sbindir}/$p.${PN}"
- fi
- done
-
install -d ${D}${sysconfdir}/default/
echo 'MOUNTALL="-t nonfs,nosmbfs,noncpfs"' > ${D}${sysconfdir}/default/mountall
- # note ${PN} in swapon.${PN}, swapon is an alternative link that is
- # not guaranteed to provide multiple functions, similar for shutdown
- ln -sf swapon.${PN} ${D}${base_sbindir}/swapoff.${PN}
- ln -sf shutdown.${PN} ${D}${base_sbindir}/reboot.${PN}
- ln -sf shutdown.${PN} ${D}${base_sbindir}/halt.${PN}
- ln -sf shutdown.${PN} ${D}${base_sbindir}/fastboot
- ln -sf shutdown.${PN} ${D}${base_sbindir}/fasthalt
-
- rm -f ${D}${sbindir}/halt
- rm -f ${D}${sbindir}/reboot
- rm -f ${D}${sbindir}/fastboot
- rm -f ${D}${sbindir}/fasthalt
+ ln -sf swapon ${D}${base_sbindir}/swapoff
rm -f ${D}${sbindir}/swapoff
}
-pkg_postinst_${PN} () {
- update-alternatives --install ${base_bindir}/dmesg dmesg dmesg.${PN} 100
- update-alternatives --install ${base_bindir}/kill kill kill.${PN} 100
- update-alternatives --install ${base_bindir}/more more more.${PN} 100
- update-alternatives --install ${base_sbindir}/mkswap mkswap mkswap.${PN} 100
- update-alternatives --install ${base_sbindir}/blockdev blockdev blockdev.${PN} 100
- test -x ${base_sbindir}/pivot_root.${PN} && \
- update-alternatives --install ${base_sbindir}/pivot_root pivot_root pivot_root.${PN} 100
-# update-alternatives --install ${base_sbindir}/sln sln sln.${PN} 100
- update-alternatives --install ${base_sbindir}/mkfs.minix mkfs.minix mkfs.minix.${PN} 100
- update-alternatives --install ${bindir}/hexdump hexdump hexdump.${PN} 100
- update-alternatives --install ${bindir}/last last last.${PN} 100
- update-alternatives --install ${bindir}/logger logger logger.${PN} 100
- update-alternatives --install ${bindir}/mesg mesg mesg.${PN} 100
- update-alternatives --install ${bindir}/renice renice renice.${PN} 100
- update-alternatives --install ${bindir}/wall wall wall.${PN} 100
- update-alternatives --install ${bindir}/setsid setsid setsid.${PN} 100
- update-alternatives --install ${bindir}/chrt chrt chrt.${PN} 100
- update-alternatives --install ${bindir}/flock flock flock.${PN} 100
-
- # There seems to be problem, atleast on nslu2, with these, untill they are
- # fixed the busybox ones have higher priority
- update-alternatives --install ${base_sbindir}/hwclock hwclock hwclock.${PN} 10
- update-alternatives --install ${base_sbindir}/shutdown shutdown shutdown.${PN} 10
- update-alternatives --install ${base_sbindir}/reboot reboot reboot.${PN} 10
- update-alternatives --install ${base_sbindir}/halt halt halt.${PN} 10
-}
+inherit update-alternatives
-pkg_prerm_${PN} () {
- test -x ${base_sbindir}/pivot_root.${PN} && \
- update-alternatives --remove pivot_root pivot_root.${PN}
- update-alternatives --remove dmesg dmesg.${PN}
- update-alternatives --remove kill kill.${PN}
- update-alternatives --remove more more.${PN}
- update-alternatives --remove halt halt.${PN}
- update-alternatives --remove hwclock hwclock.${PN}
- update-alternatives --remove mkswap mkswap.${PN}
- update-alternatives --remove blockdev blockdev.${PN}
- update-alternatives --remove reboot reboot.${PN}
- update-alternatives --remove shutdown shutdown.${PN}
-# update-alternatives --remove sln sln.${PN}
- update-alternatives --remove mkfs.minix mkfs.minix.${PN}
- update-alternatives --remove hexdump hexdump.${PN}
- update-alternatives --remove last last.${PN}
- update-alternatives --remove logger logger.${PN}
- update-alternatives --remove mesg mesg.${PN}
- update-alternatives --remove renice renice.${PN}
- update-alternatives --remove wall wall.${PN}
- update-alternatives --remove setsid setsid.${PN}
- update-alternatives --remove chrt chrt.${PN}
- update-alternatives --remove flock flock.${PN}
-}
+ALTERNATIVE_PRIORITY = "100"
-pkg_postinst_util-linux-fdisk () {
- update-alternatives --install ${base_sbindir}/fdisk fdisk fdisk.${PN} 100
-}
+ALTERNATIVE_${PN} = "dmesg kill more reset mkswap blockdev pivot_root"
+ALTERNATIVE_${PN} += "mkfs.minix hexdump last logger mesg renice wall"
+ALTERNATIVE_${PN} += "setsid chrt flock hwclock"
-pkg_prerm_util-linux-fdisk () {
- update-alternatives --remove fdisk fdisk.${PN}
-}
+ALTERNATIVE_LINK_NAME[dmesg] = "${base_bindir}/dmesg"
+ALTERNATIVE_LINK_NAME[kill] = "${base_bindir}/kill"
+ALTERNATIVE_LINK_NAME[more] = "${base_bindir}/more"
+ALTERNATIVE_LINK_NAME[reset] = "${base_bindir}/reset"
+ALTERNATIVE_LINK_NAME[mkswap] = "${base_sbindir}/mkswap"
+ALTERNATIVE_LINK_NAME[blockdev] = "${base_sbindir}/blockdev"
+ALTERNATIVE_LINK_NAME[pivot_root] = "${base_sbindir}/pivot_root"
+ALTERNATIVE_LINK_NAME[mkfs.minix] = "${base_sbindir}/mkfs.minix"
-pkg_postinst_util-linux-agetty () {
- update-alternatives --install ${base_sbindir}/getty getty agetty 100
-}
+# There seems to be problem, atleast on nslu2, with these, untill they are
+# fixed the busybox ones have higher priority
+ALTERNATIVE_PRIORITY[hwclock] = "10"
+ALTERNATIVE_LINK_NAME[hwclock] = "${base_sbindir}/hwclock"
-pkg_prerm_util-linux-agetty () {
- update-alternatives --remove getty agetty
-}
+ALTERNATIVE_util-linux-fdisk = "fdisk"
+ALTERNATIVE_LINK_NAME[fdisk] = "${base_sbindir}/fdisk"
-pkg_postinst_util-linux-mount () {
- update-alternatives --install ${base_bindir}/mount mount mount.${PN} 100
-}
+ALTERNATIVE_util-linux-agetty = "getty"
+ALTERNATIVE_LINK_NAME[getty] = "${base_sbindir}/getty"
+ALTERNATIVE_TARGET[getty] = "${base_sbindir}/agetty"
-pkg_prerm_util-linux-mount () {
- update-alternatives --remove mount mount.${PN}
-}
+ALTERNATIVE_util-linux-mount = "mount"
+ALTERNATIVE_LINK_NAME[mount] = "${base_bindir}/mount"
-pkg_postinst_util-linux-umount () {
- update-alternatives --install ${base_bindir}/umount umount umount.${PN} 100
-}
+ALTERNATIVE_util-linux-umount = "umount"
+ALTERNATIVE_LINK_NAME[umount] = "${base_bindir}/umount"
-pkg_prerm_util-linux-umount () {
- update-alternatives --remove umount umount.${PN}
-}
+ALTERNATIVE_util-linux-losetup = "losetup"
+ALTERNATIVE_LINK_NAME[losetup] = "${base_sbindir}/losetup"
-pkg_postinst_util-linux-losetup () {
- update-alternatives --install ${base_sbindir}/losetup losetup losetup.${PN} 100
-}
+ALTERNATIVE_util-linux-swaponoff = "swapoff swapon"
+ALTERNATIVE_LINK_NAME[swapoff] = "${base_sbindir}/swapoff"
+ALTERNATIVE_LINK_NAME[swapon] = "${base_sbindir}/swapon"
-pkg_prerm_util-linux-losetup () {
- update-alternatives --remove losetup losetup.${PN}
-}
-
-pkg_postinst_util-linux-swaponoff () {
- update-alternatives --install ${base_sbindir}/swapoff swapoff swapoff.${PN} 100
- update-alternatives --install ${base_sbindir}/swapon swapon swapon.${PN} 100
-}
-
-pkg_prerm_util-linux-swaponoff () {
- update-alternatives --remove swapoff swapoff.${PN}
- update-alternatives --remove swapon swapon.${PN}
-}
-
-pkg_postinst_util-linux-fsck () {
- update-alternatives --install ${base_sbindir}/fsck.minix fsck.minix fsck.minix.${PN} 100
- update-alternatives --install ${base_sbindir}/fsck fsck fsck.${PN} 100
-}
-
-pkg_prerm_util-linux-fsck () {
- update-alternatives --remove fsck.minix fsck.minix.${PN}
- update-alternatives --remove fsck fsck.${PN}
-}
+ALTERNATIVE_util-linux-fsck = "fsck.minix fsck"
+ALTERNATIVE_LINK_NAME[fsck.minix] = "${base_sbindir}/fsck.minix"
+ALTERNATIVE_LINK_NAME[fsck] = "${base_sbindir}/fsck"
-pkg_postinst_util-linux-blkid () {
- update-alternatives --install ${base_sbindir}/blkid blkid blkid.${PN} 100
-}
-
-pkg_prerm_util-linux-blkid () {
- update-alternatives --remove blkid blkid.${PN}
-}
+ALTERNATIVE_util-linux-blkid = "blkid"
+ALTERNATIVE_LINK_NAME[blkid] = "${base_sbindir}/blkid"
BBCLASSEXTEND = "native"
diff --git a/meta/recipes-core/util-linux/util-linux_2.21.1.bb b/meta/recipes-core/util-linux/util-linux_2.21.1.bb
index 12faba0..8492cdf 100644
--- a/meta/recipes-core/util-linux/util-linux_2.21.1.bb
+++ b/meta/recipes-core/util-linux/util-linux_2.21.1.bb
@@ -1,5 +1,5 @@
MAJOR_VERSION = "2.21"
-PR = "r0"
+PR = "r1"
require util-linux.inc
# note that `lscpu' is under GPLv3+
--
1.7.3.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 30/30] shadow-utils-native: remove unnecessary alternatives
2012-05-22 19:30 [PATCH 00/30] Refactor update-alternatives Mark Hatle
` (5 preceding siblings ...)
2012-05-22 19:30 ` [PATCH 20/30] util-linux: " Mark Hatle
@ 2012-05-22 19:30 ` Mark Hatle
2012-05-30 12:04 ` [PATCH 00/30] Refactor update-alternatives Richard Purdie
7 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2012-05-22 19:30 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
.../shadow/shadow-native_4.1.4.3.bb | 21 --------------------
1 files changed, 0 insertions(+), 21 deletions(-)
diff --git a/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb b/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
index 38bb922..5d9907b 100644
--- a/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
+++ b/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
@@ -43,25 +43,4 @@ do_install_append() {
# Now we don't have a mail system. Disable mail creation for now.
sed -i 's:/bin/bash:/bin/sh:g' ${D}${sysconfdir}/default/useradd
sed -i '/^CREATE_MAIL_SPOOL/ s:^:#:' ${D}${sysconfdir}/default/useradd
-
- install -d ${D}${sbindir} ${D}${base_sbindir} ${D}${base_bindir}
- for i in passwd chfn newgrp chsh ; do
- mv ${D}${bindir}/$i ${D}${bindir}/$i.${PN}
- done
-
- mv ${D}${sbindir}/chpasswd ${D}${sbindir}/chpasswd.${PN}
-}
-
-pkg_postinst_${PN} () {
- update-alternatives --install ${bindir}/passwd passwd passwd.${PN} 200
- update-alternatives --install ${sbindir}/chpasswd chpasswd chpasswd.${PN} 200
- update-alternatives --install ${bindir}/chfn chfn chfn.${PN} 200
- update-alternatives --install ${bindir}/newgrp newgrp newgrp.${PN} 200
- update-alternatives --install ${bindir}/chsh chsh chsh.${PN} 200
-}
-
-pkg_prerm_${PN} () {
- for i in passwd chpasswd chfn newgrp chsh ; do
- update-alternatives --remove $i $i.${PN}
- done
}
--
1.7.3.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH 01/30] update-alternatives.bbclass: Refactor the implementation
2012-05-22 19:30 ` [PATCH 01/30] update-alternatives.bbclass: Refactor the implementation Mark Hatle
@ 2012-05-22 20:11 ` Koen Kooi
2012-05-22 20:25 ` Mark Hatle
0 siblings, 1 reply; 12+ messages in thread
From: Koen Kooi @ 2012-05-22 20:11 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
Op 22 mei 2012, om 21:30 heeft Mark Hatle het volgende geschreven:
> Refactor in order to:
> * Deprecate the old interfaces, but keep them for compatibility
> * Provide a new, interface -- capable of working with split packages
> * Each update-alternative will not set proper "per-file" provides
'now' or 'not'?
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 01/30] update-alternatives.bbclass: Refactor the implementation
2012-05-22 20:11 ` Koen Kooi
@ 2012-05-22 20:25 ` Mark Hatle
0 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2012-05-22 20:25 UTC (permalink / raw)
To: openembedded-core
On 5/22/12 3:11 PM, Koen Kooi wrote:
>
> Op 22 mei 2012, om 21:30 heeft Mark Hatle het volgende geschreven:
>
>> Refactor in order to:
>> * Deprecate the old interfaces, but keep them for compatibility
>> * Provide a new, interface -- capable of working with split packages
>> * Each update-alternative will not set proper "per-file" provides
>
> 'now' or 'not'?
One typo.. ;) yes it should be 'now'.
I'll fix it in the repository and branch.
--Mark
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 00/30] Refactor update-alternatives
2012-05-22 19:30 [PATCH 00/30] Refactor update-alternatives Mark Hatle
` (6 preceding siblings ...)
2012-05-22 19:30 ` [PATCH 30/30] shadow-utils-native: remove unnecessary alternatives Mark Hatle
@ 2012-05-30 12:04 ` Richard Purdie
2012-05-30 13:55 ` Mark Hatle
7 siblings, 1 reply; 12+ messages in thread
From: Richard Purdie @ 2012-05-30 12:04 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Tue, 2012-05-22 at 14:30 -0500, Mark Hatle wrote:
> This set of commits refactors update-alternatives. The primary purpose
> is to cover all of the corner cases currently in oe-core (and hopefully
> other layers) so that recipes can all use the update-alternatives class,
> instead of manual update-alternatives calls in man post install/remove
> scripts.
>
> The refactored update-alternatives is compatible with the older methods,
> but does indicate they are deprecated via a warning message. One of the
> key changes is that all referenced alternatives are not added to the
> per-file dependency information. For example, gawk sets up an
> alternative for 'awk'. The /bin/gawk binary now says it provides
> /bin/awk, so that the package management systems that use per file
> dependencies (i.e. RPM), will be able to find the minimum set of
> packages to resolve the image.
>
> In addition, to all of that, the references have been changed from
> ".${PN}" to ".${BPN}" for alternatives. This will allow the multilib
> system to work as intended by resolving multilib binaries.
>
> All of the work has been tested using buildhistory and building various
> images. Buildhistory indicated only expected changes were performed.
>
> (To avoid spamming the list, I have decided to only send the first 3
> patches, lrzsz, busybox, util-linux and shadow-native as this is a
> reasonable representation of the changes. Please see the referenced
> repository and branch below for full details on the series.)
>
> *** BLURB HERE ***
> The following changes since commit e6333825c3482a559a0c0499e17f8f48d3042ddf:
>
> tune-mips64.inc: Add new tune file for mips64 big-endian (2012-05-20 20:24:37 -0700)
>
> are available in the git repository at:
> git://git.pokylinux.org/poky-contrib mhatle/upd-alt-2
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=mhatle/upd-alt-2
>
> Mark Hatle (30):
> update-alternatives.bbclass: Refactor the implementation
> update-alternatives.bbclass: Change from using PN to BPN
> which: use BPN for alternatives
> wget: use BPN for alternatives
> time: use BPN for alternatives
> shadow: use BPN for alternatives
> sed: use BPN for alternatives
> mktemp: use BPN for alternatives
> less: use BPN for alternatives
> patch: use BPN for alternatives
> tinylogin: use BPN for alternatives
> sysvinit: use new update-alternatives
> lrzsz: use new update-alternatives
> openssh: use new update-alternatives
> busybox: use new update-alternatives
> coreutils: use new update-alternatives
> dropbear: use new update-alternatives
> ncurses: use new update-alternatives
> psplash: use new update-alternatives
> util-linux: use new update-alternatives
> binutils: use new update-alternatives
> tar: use new update-alternatives
> opkg: use new update-alternatives
> cpio: use new update-alternatives
> grep: use new update-alternatives
> iputils: use new update-alternatives
> psmisc: use new update-alternatives
> sysklogd: use new update-alternatives
> kmod: use new update-alternatives
> shadow-utils-native: remove unnecessary alternatives
Merged to master, thanks.
I've noticed a few issues and this obviously introduces a lot of warning
messages. I've posted a couple of fixes but we need a plan to get the
warnings resolved...
Cheers,
Richard
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 00/30] Refactor update-alternatives
2012-05-30 12:04 ` [PATCH 00/30] Refactor update-alternatives Richard Purdie
@ 2012-05-30 13:55 ` Mark Hatle
0 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2012-05-30 13:55 UTC (permalink / raw)
To: openembedded-core
On 5/30/12 7:04 AM, Richard Purdie wrote:
> On Tue, 2012-05-22 at 14:30 -0500, Mark Hatle wrote:
>> This set of commits refactors update-alternatives. The primary purpose
>> is to cover all of the corner cases currently in oe-core (and hopefully
>> other layers) so that recipes can all use the update-alternatives class,
>> instead of manual update-alternatives calls in man post install/remove
>> scripts.
>>
>> The refactored update-alternatives is compatible with the older methods,
>> but does indicate they are deprecated via a warning message. One of the
>> key changes is that all referenced alternatives are not added to the
>> per-file dependency information. For example, gawk sets up an
>> alternative for 'awk'. The /bin/gawk binary now says it provides
>> /bin/awk, so that the package management systems that use per file
>> dependencies (i.e. RPM), will be able to find the minimum set of
>> packages to resolve the image.
>>
>> In addition, to all of that, the references have been changed from
>> ".${PN}" to ".${BPN}" for alternatives. This will allow the multilib
>> system to work as intended by resolving multilib binaries.
>>
>> All of the work has been tested using buildhistory and building various
>> images. Buildhistory indicated only expected changes were performed.
>>
>> (To avoid spamming the list, I have decided to only send the first 3
>> patches, lrzsz, busybox, util-linux and shadow-native as this is a
>> reasonable representation of the changes. Please see the referenced
>> repository and branch below for full details on the series.)
>>
>> *** BLURB HERE ***
>> The following changes since commit e6333825c3482a559a0c0499e17f8f48d3042ddf:
>>
>> tune-mips64.inc: Add new tune file for mips64 big-endian (2012-05-20 20:24:37 -0700)
>>
>> are available in the git repository at:
>> git://git.pokylinux.org/poky-contrib mhatle/upd-alt-2
>> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=mhatle/upd-alt-2
>>
>> Mark Hatle (30):
>> update-alternatives.bbclass: Refactor the implementation
>> update-alternatives.bbclass: Change from using PN to BPN
>> which: use BPN for alternatives
>> wget: use BPN for alternatives
>> time: use BPN for alternatives
>> shadow: use BPN for alternatives
>> sed: use BPN for alternatives
>> mktemp: use BPN for alternatives
>> less: use BPN for alternatives
>> patch: use BPN for alternatives
>> tinylogin: use BPN for alternatives
>> sysvinit: use new update-alternatives
>> lrzsz: use new update-alternatives
>> openssh: use new update-alternatives
>> busybox: use new update-alternatives
>> coreutils: use new update-alternatives
>> dropbear: use new update-alternatives
>> ncurses: use new update-alternatives
>> psplash: use new update-alternatives
>> util-linux: use new update-alternatives
>> binutils: use new update-alternatives
>> tar: use new update-alternatives
>> opkg: use new update-alternatives
>> cpio: use new update-alternatives
>> grep: use new update-alternatives
>> iputils: use new update-alternatives
>> psmisc: use new update-alternatives
>> sysklogd: use new update-alternatives
>> kmod: use new update-alternatives
>> shadow-utils-native: remove unnecessary alternatives
>
> Merged to master, thanks.
>
> I've noticed a few issues and this obviously introduces a lot of warning
> messages. I've posted a couple of fixes but we need a plan to get the
> warnings resolved...
I can work through the warnings fairly quickly. I left them there
intentionally. I wanted to proved the deprecated functionality was complete and
worked as expected. (I forgot to note that in the original submission.)
If nobody else is working on revising the other items I'll start working through
them.
--Mark
> Cheers,
>
> Richard
>
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2012-05-30 14:05 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-22 19:30 [PATCH 00/30] Refactor update-alternatives Mark Hatle
2012-05-22 19:30 ` [PATCH 01/30] update-alternatives.bbclass: Refactor the implementation Mark Hatle
2012-05-22 20:11 ` Koen Kooi
2012-05-22 20:25 ` Mark Hatle
2012-05-22 19:30 ` [PATCH 02/30] update-alternatives.bbclass: Change from using PN to BPN Mark Hatle
2012-05-22 19:30 ` [PATCH 03/30] which: use BPN for alternatives Mark Hatle
2012-05-22 19:30 ` [PATCH 13/30] lrzsz: use new update-alternatives Mark Hatle
2012-05-22 19:30 ` [PATCH 15/30] busybox: " Mark Hatle
2012-05-22 19:30 ` [PATCH 20/30] util-linux: " Mark Hatle
2012-05-22 19:30 ` [PATCH 30/30] shadow-utils-native: remove unnecessary alternatives Mark Hatle
2012-05-30 12:04 ` [PATCH 00/30] Refactor update-alternatives Richard Purdie
2012-05-30 13:55 ` Mark Hatle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox