manual: adding-package-directory.txt: update, cleanup and typo fixes

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Samuel Martin 2012-11-11 03:14:47 +00:00 committed by Peter Korsgaard
parent df469937a5
commit b4783b41a9

View File

@ -49,6 +49,7 @@ supposed to contain anything but the 'bare' name of the package.
source "package/libfoo/Config.in" source "package/libfoo/Config.in"
-------------------------- --------------------------
[[depends-on-vs-select]]
The +Config.in+ file of your package must also ensure that The +Config.in+ file of your package must also ensure that
dependencies are enabled. Typically, Buildroot uses the following dependencies are enabled. Typically, Buildroot uses the following
rules: rules:
@ -59,15 +60,26 @@ rules:
dependencies are selected. For example, the _libgtk2_ package uses dependencies are selected. For example, the _libgtk2_ package uses
+select BR2_PACKAGE_LIBGLIB2+ to make sure this library is also +select BR2_PACKAGE_LIBGLIB2+ to make sure this library is also
enabled. enabled.
The +select+ keyword express the dependency with a backward
semantic.
* Use a +depends on+ type of dependency when the user really needs to * Use a +depends on+ type of dependency when the user really needs to
be aware of the dependency. Typically, Buildroot uses this type of be aware of the dependency. Typically, Buildroot uses this type of
dependency for dependencies on toolchain options (large file dependency for dependencies on toolchain options (target
support, RPC support, IPV6 support), or for dependencies on "big" architecture, MMU support, C library, C++ support, large file
things, such as the X.org system. In some cases, especially support, thread support, RPC support, IPV6 support, WCHAR support),
dependency on toolchain options, it is recommended to add a or for dependencies on "big" things, such as the X.org system. In
+comment+ displayed when the option is not enabled, so that the user some cases, especially dependency on toolchain options, it is
knows why the package is not available. recommended to add a +comment+ displayed when the option is not
enabled, so that the user knows why the package is not available.
The +depends on+ keyword express the dependency with a forward
semantic.
.Note
The current problem with the _kconfig_ language is that these two
dependency semantics are not internally linked. Therefore, it may be
possible to select a package, whom one of its dependencies/requirement
is not met.
An example illustrates both the usage of +select+ and +depends on+. An example illustrates both the usage of +select+ and +depends on+.
@ -147,6 +159,9 @@ is also enabled, but not necessarily built before your package. To do
so, the dependency also needs to be expressed in the +.mk+ file of the so, the dependency also needs to be expressed in the +.mk+ file of the
package. package.
Further formating details: see xref:writing-rules-config-in[the
writing rules].
The +.mk+ file The +.mk+ file
^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^
@ -182,8 +197,5 @@ different way, using different infrastructures:
CMake. We cover them through a xref:cmake-package-tutorial[tutorial] CMake. We cover them through a xref:cmake-package-tutorial[tutorial]
and xref:cmake-package-reference[reference]. and xref:cmake-package-reference[reference].
* *Hand-written Makefiles:* These are currently obsolete, and no new Further formating details: see xref:writing-rules-mk[the writing
manual Makefiles should be added. However, since there are still rules].
many of them in the tree, we keep them documented in a
xref:handwritten-tutorial[tutorial].