70763e20e7
During docker build, host files can be passed to the docker build through docker context files. But there is no straightforward way to transfer the files from docker build to host. This feature provides a tricky way to pass the cache contents from docker build to host. It tar's the cached content and encodes them as base64 format and passes it through a log file with a special tag as 'VCSTART and VCENT'. Slave.mk in the host, it extracts the cache contents from the log and stores them in the cache folder. Cache contents are encoded as base64 format for easy passing. <!-- Please make sure you've read and understood our contributing guidelines: https://github.com/Azure/SONiC/blob/gh-pages/CONTRIBUTING.md ** Make sure all your commits include a signature generated with `git commit -s` ** If this is a bug fix, make sure your description includes "fixes #xxxx", or "closes #xxxx" or "resolves #xxxx" Please provide the following information: --> #### Why I did it #### How I did it #### How to verify it
16 lines
447 B
Bash
Executable File
16 lines
447 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TARGET=$1
|
|
FILESYSTEM_ROOT=$2
|
|
VERSIONS_PATH=$TARGET/versions/host-image
|
|
IMAGENAME="host-image"
|
|
|
|
[ -d $VERSIONS_PATH ] && sudo rm -rf $VERSIONS_PATH
|
|
mkdir -p $VERSIONS_PATH
|
|
|
|
mkdir -p target/vcache/${IMAGENAME}
|
|
sudo LANG=C chroot $FILESYSTEM_ROOT post_run_buildinfo ${IMAGENAME}
|
|
|
|
cp -r $FILESYSTEM_ROOT/usr/local/share/buildinfo/pre-versions $VERSIONS_PATH/
|
|
cp -r $FILESYSTEM_ROOT/usr/local/share/buildinfo/post-versions $VERSIONS_PATH/
|