]> code.ossystems Code Review - openembedded-core.git/commitdiff
build-appliance-image: Fix permissions
authorJuro Bystricky <juro.bystricky@intel.com>
Sun, 27 Mar 2016 19:46:48 +0000 (12:46 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 28 Mar 2016 14:59:51 +0000 (15:59 +0100)
Explicitly set all permissions.
This fixes various problems such as:

Unable to create '/home/builder/poky/bitbake/lib/bb/pysh/pyshtables.py'
[Errno 22] invalid mode ('w') or filename '/home/builder/poky/bitbake/lib/bb/pysh/pyshtables.py'

and failure to create sub-directories in the directory 'poky':

mkdir: cannot create directory '<dir>': Invalid argument

While in there, added a few non-functional changes:
Added sample proxy settings into .bashrc
Added environmental variable with SRCREV actually used to populate the Build
Appliance into .bashrc (BA_SRCREV)

[YOCTO#9314]

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-core/images/build-appliance-image_14.0.0.bb

index 61f69f42ec294b115bce159b8fd099309d0139ce..fb48657e8e4bd414f6dc147520dbe84449f72bdd 100644 (file)
@@ -21,7 +21,7 @@ IMAGE_FSTYPES = "vmdk"
 
 inherit core-image
 
-SRCREV ?= "992e5774714ef44bc91d45e2aaf2acfc23c72d63"
+SRCREV ?= "b58e5b1fb3bcacbcfce17a748bca5f60c3528b4f"
 SRC_URI = "git://git.yoctoproject.org/poky \
            file://Yocto_Build_Appliance.vmx \
            file://Yocto_Build_Appliance.vmxf \
@@ -39,17 +39,16 @@ fakeroot do_populate_poky_src () {
        rm -rf ${WORKDIR}/git/.git
        rm -f ${WORKDIR}/git/.gitignore
 
-       cp -Rp ${WORKDIR}/git ${IMAGE_ROOTFS}/home/builder/poky
+       cp -R ${WORKDIR}/git ${IMAGE_ROOTFS}/home/builder/poky
 
        mkdir -p ${IMAGE_ROOTFS}/home/builder/poky/build/conf
        mkdir -p ${IMAGE_ROOTFS}/home/builder/poky/build/downloads
        if [ ${BA_INCLUDE_SOURCES} != 0 ]; then
                cp -RpL ${DL_DIR}/* ${IMAGE_ROOTFS}/home/builder/poky/build/downloads/
+               # Remove the git2_* tarballs -- this is ok since we still have the git2/.
+               rm -rf ${IMAGE_ROOTFS}/home/builder/poky/build/downloads/git2_*
        fi
 
-       # Remove the git2_* tarballs -- this is ok since we still have the git2/.
-       rm -rf ${IMAGE_ROOTFS}/home/builder/poky/build/downloads/git2_*
-
        echo "/usr/bin" > ${IMAGE_ROOTFS}/home/builder/poky/build/pseudodone
        echo "INHERIT += \"rm_work\"" >> ${IMAGE_ROOTFS}/home/builder/poky/build/conf/auto.conf
        mkdir -p ${IMAGE_ROOTFS}/home/builder/pseudo
@@ -57,9 +56,19 @@ fakeroot do_populate_poky_src () {
        echo "export PSEUDO_LOCALSTATEDIR=/home/builder/pseudo" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
        echo "export PSEUDO_LIBDIR=/usr/lib/pseudo/lib64" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
 
+       # Also save (for reference only) the actual SRCREV used to create this image
+       echo "export BA_SRCREV=${SRCREV}" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
+       echo "" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
+       echo "# If working behind a proxy and using the provided oe-git-proxy script" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
+       echo "# you need to set ALL_PROXY based on your proxy settings." >> ${IMAGE_ROOTFS}/home/builder/.bashrc
+       echo "# Example ALL_PROXY values:" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
+       echo "# export ALL_PROXY=https://proxy.example.com:8080" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
+       echo "# export ALL_PROXY=socks://socks.example.com:1080" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
+
        chown builder.builder ${IMAGE_ROOTFS}/home/builder/pseudo
 
-       chown -R builder.builder  ${IMAGE_ROOTFS}/home/builder/poky
+       chown -R builder.builder ${IMAGE_ROOTFS}/home/builder/poky
+       chmod -R ug+rw ${IMAGE_ROOTFS}/home/builder/poky
 
        # Allow builder to use sudo to setup tap/tun
        echo "builder ALL=(ALL) NOPASSWD: ALL" >> ${IMAGE_ROOTFS}/etc/sudoers