aboutsummaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2013-02-05 09:31:54 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-14 17:24:03 +0000
commit1263e584752cd818d3c5dc6b45d4c5d4387e6832 (patch)
tree0e08999f12d313580ebd807ec2bb8cc8eea6fb08 /documentation
parent40fde06345c61ca77bb40341e048673613f9932f (diff)
downloadopenembedded-core-contrib-1263e584752cd818d3c5dc6b45d4c5d4387e6832.tar.gz
ref-manual: edits to update-alternatives.bbclass description.
Fixes YOCTO #3838 First draft of edits for this class. Removed specific variable definitions as they are now deprecated. Added a general explanation of the variable functions. Pointed user to the commented code in the actual class for details. Removed statement saying that the build system supports only one binary per package. (From yocto-docs rev: bd574f2c8a95470c5a44500b70743a6e039522b7) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-classes.xml45
1 files changed, 23 insertions, 22 deletions
diff --git a/documentation/ref-manual/ref-classes.xml b/documentation/ref-manual/ref-classes.xml
index 2caea272a4..5e35e8946c 100644
--- a/documentation/ref-manual/ref-classes.xml
+++ b/documentation/ref-manual/ref-classes.xml
@@ -85,35 +85,36 @@
<title>Alternatives - <filename>update-alternatives.bbclass</filename></title>
<para>
- Several programs can fulfill the same or similar function and be installed with the same name.
+ This class helps the alternatives system when multiple sources provide
+ the same command.
+ This situation occurs when several programs that have the same or
+ similar function are installed with the same name.
For example, the <filename>ar</filename> command is available from the
<filename>busybox</filename>, <filename>binutils</filename> and
<filename>elfutils</filename> packages.
- The <filename>update-alternatives.bbclass</filename> class handles renaming the
- binaries so that multiple packages can be installed without conflicts.
- The <filename>ar</filename> command still works regardless of which packages are installed
- or subsequently removed.
- The class renames the conflicting binary in each package and symlinks the highest
- priority binary during installation or removal of packages.
- </para>
- <para>
- Four variables control this class:
- <itemizedlist>
- <listitem><para><filename>ALTERNATIVE_NAME</filename> &dash; The name of the
- binary that is replaced (<filename>ar</filename> in this example).</para></listitem>
- <listitem><para><filename>ALTERNATIVE_LINK</filename> &dash; The path to
- the resulting binary (<filename>/bin/ar</filename> in this example).</para></listitem>
- <listitem><para><filename>ALTERNATIVE_PATH</filename> &dash; The path to the
- real binary (<filename>/usr/bin/ar.binutils</filename> in this example).</para></listitem>
- <listitem><para><filename>ALTERNATIVE_PRIORITY</filename> &dash; The priority of
- the binary.
- The version with the most features should have the highest priority.</para></listitem>
- </itemizedlist>
+ The <filename>update-alternatives.bbclass</filename> class handles
+ renaming the binaries so that multiple packages can be installed
+ without conflicts.
+ The <filename>ar</filename> command still works regardless of which
+ packages are installed or subsequently removed.
+ The class renames the conflicting binary in each package and symlinks
+ the highest priority binary during installation or removal of packages.
</para>
<para>
- Currently, the OpenEmbedded build system supports only one binary per package.
+ To use this class, you need to define a number of variables.
+ These variables list alternative commands needed by a package,
+ provide pathnames for links, default links for targets, and
+ so forth.
+ For details on how to use this class, see the comments in the
+ <ulink url='&YOCTO_GIT_URL;/cgit/cgit.cgi/poky/tree/meta/classes/update-alternatives.bbclass'><filename>update-alternatives.bbclass</filename></ulink>.
</para>
+
+ <note>
+ You can use the <filename>update-alternatives</filename> command
+ directly in your recipes.
+ However, this class simplifies things in most cases.
+ </note>
</section>
<section id='ref-classes-update-rc.d'>