From patchwork Wed Apr 4 00:38:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: self-hosted-image: Increase space for build and allow builder user sudo access Date: Wed, 04 Apr 2012 00:38:39 -0000 From: Saul Wold X-Patchwork-Id: 25139 Message-Id: <1333499919-11883-1-git-send-email-sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org Cc: paul.eggelton@intel.com We need to have about 40G to do a full sato build even with rm_work enabled Add sudo priveleges inorder to allow the builder user to setup the tap/tun devices needed by runqemu Signed-off-by: Saul Wold --- meta/recipes-core/images/self-hosted-image.bb | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/meta/recipes-core/images/self-hosted-image.bb b/meta/recipes-core/images/self-hosted-image.bb index 39f0fc4..46dcc5f 100644 --- a/meta/recipes-core/images/self-hosted-image.bb +++ b/meta/recipes-core/images/self-hosted-image.bb @@ -12,11 +12,8 @@ CORE_IMAGE_EXTRA_INSTALL = "\ IMAGE_FEATURES += "x11-mini package-management" -# Ensure there's enough space to do a core-image-minimal build, with rm_work enabled -IMAGE_ROOTFS_EXTRA_SPACE = "1048576" -#IMAGE_ROOTFS_EXTRA_SPACE = "2621440" -#IMAGE_ROOTFS_EXTRA_SPACE = "20971520" -#IMAGE_ROOTFS_EXTRA_SPACE = "5242880" +# Ensure there's enough space to do a core-image-sato build, with rm_work enabled +IMAGE_ROOTFS_EXTRA_SPACE = "41943040" # Do a quiet boot with limited console messages APPEND += "quiet" @@ -54,6 +51,9 @@ fakeroot do_populate_poky_src () { chown builder.builder ${IMAGE_ROOTFS}/home/builder/pseudo chown -R builder.builder ${IMAGE_ROOTFS}/home/builder/poky + + # Allow builder to use sudo to setup tap/tun + echo "builder ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers } IMAGE_PREPROCESS_COMMAND += "do_populate_poky_src; "