[oe-commits] [openembedded-core] 07/15: build-appliance-image: Load TUN at startup

git at git.openembedded.org git at git.openembedded.org
Mon Apr 18 15:28:54 UTC 2016


rpurdie pushed a commit to branch krogoth
in repository openembedded-core.

commit 65db0a29be91a157522cf02ebb21961b8ba55759
Author: Juro Bystricky <juro.bystricky at intel.com>
AuthorDate: Thu Apr 14 17:49:30 2016 -0700

    build-appliance-image: Load TUN at startup
    
    This patch addresses the issue of not being able to execute "runqemu"
    in the Build Appliance.
    The root cause of the problem was that TAP/TUN was not available,
    although required by "runqemu". In addition, the recommended remedy
    
      $ sudo modprobe tun
    
    would fail for two reasons: modprobe not in PATH (user builder),
    and "iptables" located in /usr/sbin but expected in /sbin.
    
    [YOCTO #9437]
    
    Signed-off-by: Juro Bystricky <juro.bystricky at intel.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-core/images/build-appliance-image_14.0.0.bb | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/images/build-appliance-image_14.0.0.bb b/meta/recipes-core/images/build-appliance-image_14.0.0.bb
index eeb301d..07bd145 100644
--- a/meta/recipes-core/images/build-appliance-image_14.0.0.bb
+++ b/meta/recipes-core/images/build-appliance-image_14.0.0.bb
@@ -21,7 +21,7 @@ IMAGE_FSTYPES = "vmdk"
 
 inherit core-image module-base
 
-SRCREV ?= "00c4c9bf0007b964dfa4559fe8fc8687f14cdec3"
+SRCREV ?= "5c8124df2efed4b8691239cd357cf69211b0c844"
 SRC_URI = "git://git.yoctoproject.org/poky \
            file://Yocto_Build_Appliance.vmx \
            file://Yocto_Build_Appliance.vmxf \
@@ -80,9 +80,13 @@ fakeroot do_populate_poky_src () {
 	# Assume we will need CDROM to install guest additions
 	mkdir -p ${IMAGE_ROOTFS}/media/cdrom
 
-	# Allow builder to use sudo to setup tap/tun
+	# Allow builder to use sudo
 	echo "builder ALL=(ALL) NOPASSWD: ALL" >> ${IMAGE_ROOTFS}/etc/sudoers
 
+	# Load tap/tun at startup
+	ln -sr ${IMAGE_ROOTFS}/usr/sbin/iptables ${IMAGE_ROOTFS}/sbin/iptables
+	echo "tun" >> ${IMAGE_ROOTFS}/etc/modules
+
 	# Use Clearlooks GTK+ theme
 	mkdir -p ${IMAGE_ROOTFS}/etc/gtk-2.0
 	echo 'gtk-theme-name = "Clearlooks"' > ${IMAGE_ROOTFS}/etc/gtk-2.0/gtkrc

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list