diff options
-rw-r--r-- | meta/recipes-core/images/self-hosted-image.bb | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/meta/recipes-core/images/self-hosted-image.bb b/meta/recipes-core/images/self-hosted-image.bb index a0a7592091..d56c2cb37f 100644 --- a/meta/recipes-core/images/self-hosted-image.bb +++ b/meta/recipes-core/images/self-hosted-image.bb | |||
@@ -1,11 +1,23 @@ | |||
1 | IMAGE_INSTALL = "task-core-boot task-core-apps-console task-core-ssh-openssh task-self-hosted" | 1 | IMAGE_INSTALL = "task-core-boot task-core-apps-console task-core-ssh-openssh task-self-hosted" |
2 | 2 | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | ||
5 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
6 | |||
7 | PR = "r5" | ||
8 | |||
3 | CORE_IMAGE_EXTRA_INSTALL = "\ | 9 | CORE_IMAGE_EXTRA_INSTALL = "\ |
4 | task-self-hosted \ | 10 | task-self-hosted \ |
5 | " | 11 | " |
6 | 12 | ||
7 | IMAGE_FEATURES += "x11-mini package-management" | 13 | IMAGE_FEATURES += "x11-mini package-management" |
8 | 14 | ||
9 | inherit core-image | 15 | # Ensure there's enough space to do a core-image-minimal build, with rm_work enabled |
16 | IMAGE_ROOTFS_EXTRA_SPACE = "2621440" | ||
10 | 17 | ||
11 | PR = "r2" | 18 | # Do a quiet boot with limited console messages |
19 | APPEND += "quiet" | ||
20 | |||
21 | IMAGE_FSTYPES = "vmdk" | ||
22 | |||
23 | inherit core-image | ||