diff options
Diffstat (limited to 'meta/classes/license_image.bbclass')
| -rw-r--r-- | meta/classes/license_image.bbclass | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/classes/license_image.bbclass b/meta/classes/license_image.bbclass index a8c72da3cb..682d46237f 100644 --- a/meta/classes/license_image.bbclass +++ b/meta/classes/license_image.bbclass | |||
| @@ -200,6 +200,15 @@ def license_deployed_manifest(d): | |||
| 200 | image_license_manifest = os.path.join(lic_manifest_dir, 'image_license.manifest') | 200 | image_license_manifest = os.path.join(lic_manifest_dir, 'image_license.manifest') |
| 201 | write_license_files(d, image_license_manifest, man_dic, rootfs=False) | 201 | write_license_files(d, image_license_manifest, man_dic, rootfs=False) |
| 202 | 202 | ||
| 203 | lic_manifest_symlink_dir = os.path.join(d.getVar('LICENSE_DIRECTORY'), | ||
| 204 | d.getVar('IMAGE_LINK_NAME')) | ||
| 205 | # remove old symlink | ||
| 206 | if os.path.islink(lic_manifest_symlink_dir): | ||
| 207 | os.unlink(lic_manifest_symlink_dir) | ||
| 208 | |||
| 209 | # create the image dir symlink | ||
| 210 | os.symlink(lic_manifest_dir, lic_manifest_symlink_dir) | ||
| 211 | |||
| 203 | def get_deployed_dependencies(d): | 212 | def get_deployed_dependencies(d): |
| 204 | """ | 213 | """ |
| 205 | Get all the deployed dependencies of an image | 214 | Get all the deployed dependencies of an image |
