diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2013-08-06 10:41:33 -0500 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-08-22 09:15:33 -0700 |
commit | 208d4d5ef7c5ead35dc27b7808f92ed377377aa4 (patch) | |
tree | 6f3f24f6012418322108093c0ff2973c2e5c09dc /meta/conf/documentation.conf | |
parent | 4c5756149754d0b18b14595db335f8f5e14cc0a3 (diff) | |
download | openembedded-core-208d4d5ef7c5ead35dc27b7808f92ed377377aa4.tar.gz openembedded-core-208d4d5ef7c5ead35dc27b7808f92ed377377aa4.tar.bz2 openembedded-core-208d4d5ef7c5ead35dc27b7808f92ed377377aa4.zip |
image.bbclass: Add basic support for PACKAGE_EXCLUDE
Add the foundation for the PACKAGE_EXCLUDE support.
As part of this work, it was noticed that the PACKAGE_INSTALL and
PACKAGE_INSTALL_ATTEMPTONLY were still using he 'normal' version for
dependencies. This should no longer be necessary as of the change in the way
the complementary package groups (dev, dbg, ptest and others) are defined.
By making this change the dependency tree is more correct than before, and
gives the ability for manipulating PACKAGE_INSTALL and
PACKAGE_INSTALL_ATTEMPTONLY, while adjusting the dependencies at the same
time.
Warning messages will be generated if the user is trying to exclude a
package that was previously in the PACKAGE_INSTALL or
PACKAGE_INSTALL_ATTEMPTONLY variables.
(See additional commits for package manager specific support.)
Add documentation on PACKAGE_EXCLUDE and related variables.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/conf/documentation.conf')
-rw-r--r-- | meta/conf/documentation.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/conf/documentation.conf b/meta/conf/documentation.conf index 2c4b8af63e..b930611c8b 100644 --- a/meta/conf/documentation.conf +++ b/meta/conf/documentation.conf @@ -114,6 +114,12 @@ SYSVINIT_ENABLED_GETTYS[doc] = "Specify which VTs should be running a getty, the IPK_FEED_URIS[doc] = "List of ipkg feed records to put into generated image." FEED_DEPLOYDIR_BASE_URI[doc] = "Allow to serve ipk deploy dir as an adhoc feed (bogofeed). Set to base URL of the dir as exported by HTTP. Set of adhoc feed configs will be generated in image." +IMAGE_INSTALL[doc] = "Used by an image recipe to list the packages to be installed. See PACKAGE_INSTALL." + +PACKAGE_EXCLUDE[doc] = "Packages to exclude from the installation, if required an error will be generated." +PACKAGE_INSTALL[doc] = "Generally not user defined. List of the packages to be installed into the image, uses IMAGE_INSTALL as part of the list." +PACKAGE_INSTALL_ATTEMPTONLY[doc] = "Generally not user defined. List of packages that will be attempted to be installed, but no error will generate if any of them fail to install." + # palmtop build class PALMTOP_USE_MULTITHREADED_QT[doc] = "Set to yes, if you want to build qt apps with CONFIG+=thread" |