Lines Matching full:packages
23 """Get list of packages from recipes in the workspace."""
28 if recipe in data.getVar('PACKAGES').split():
100 packages = add_packages
102 packages = _get_packages(tinfoil, workspace, config)
104 packages = None
106 if not packages and not add_packages and workspace:
108 elif not packages:
109 logger.warning('No packages to add, building image %s unmodified', image)
111 if packages or extra_append:
114 if packages:
115 # include packages from workspace recipes into the image
116 afile.write('IMAGE_INSTALL:append = " %s"\n' % ' '.join(packages))
119 'additional packages: %s', image, ' '.join(packages))
155 help='Build image including workspace recipe packages',
157 'packages from recipes in the workspace',
160 parser.add_argument('-p', '--add-packages', help='Instead of adding packages for the '
161 'entire workspace, specify packages to be added to the image '
162 '(separate multiple packages by commas)',
163 metavar='PACKAGES')