summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/images
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2012-02-29 23:46:22 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-01 15:51:40 +0000
commite28927de86f5206161f8519f787312978e5fb54a (patch)
tree87bed1c3a36aa66d8a999309ea02b84292e9aeba /meta/recipes-core/images
parent0e56519b33a961cb7e7ff123aad2ca5b94ade6eb (diff)
downloadpoky-e28927de86f5206161f8519f787312978e5fb54a.tar.gz
self-hosted-image: Create a VMDK image with correct SYSLINUX_* settings
(From OE-Core rev: 1a3bd2ae195d515fe2c93bc178b45cce8505d831) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/images')
-rw-r--r--meta/recipes-core/images/self-hosted-image.bb16
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 @@
1IMAGE_INSTALL = "task-core-boot task-core-apps-console task-core-ssh-openssh task-self-hosted" 1IMAGE_INSTALL = "task-core-boot task-core-apps-console task-core-ssh-openssh task-self-hosted"
2 2
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
5 file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
6
7PR = "r5"
8
3CORE_IMAGE_EXTRA_INSTALL = "\ 9CORE_IMAGE_EXTRA_INSTALL = "\
4 task-self-hosted \ 10 task-self-hosted \
5 " 11 "
6 12
7IMAGE_FEATURES += "x11-mini package-management" 13IMAGE_FEATURES += "x11-mini package-management"
8 14
9inherit core-image 15# Ensure there's enough space to do a core-image-minimal build, with rm_work enabled
16IMAGE_ROOTFS_EXTRA_SPACE = "2621440"
10 17
11PR = "r2" 18# Do a quiet boot with limited console messages
19APPEND += "quiet"
20
21IMAGE_FSTYPES = "vmdk"
22
23inherit core-image