From patchwork Fri Dec 7 05:01:57 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [04/16] bitbake: compile tar-replacement firstly Date: Fri, 07 Dec 2012 05:01:57 -0000 From: Scott Garman X-Patchwork-Id: 40621 Message-Id: <1a6f61d9493bdbade256dc6c19bbffe75a2684a4.1354855433.git.scott.a.garman@intel.com> To: openembedded-core@lists.openembedded.org From: "Roy.Li" Compiling tar-replacement or not is decided by version of host tar, if the host tar version is lower than 1.23, Compiling tar-replacement is needed. When doing popoluate tar-replacement sysroot to write the tar to sysroot, but writing is not finished. other packages probably use the being written tar to unzip file, which will lead to failure and report the below error: "bitbake_build/tmp/sysroots/x86_64-linux/usr/bin/tar: Text file busy" Now we compile tar-replacement firstly to ensure that a being written tar command will not be used. (From OE-Core rev: 3c1c4719fc96f6f1fbb257413d6baf3d91fdf4e8) Signed-off-by: Roy.Li Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- scripts/bitbake | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/bitbake b/scripts/bitbake index 3772d82..c52d5d2 100755 --- a/scripts/bitbake +++ b/scripts/bitbake @@ -134,7 +134,12 @@ if [ $buildpseudo -gt 0 ]; then fi done done - bitbake pseudo-native $TARTARGET $additionalopts -c populate_sysroot + + if [ $needtar = "1" ]; then + bitbake $TARTARGET -c populate_sysroot + fi + + bitbake pseudo-native $additionalopts -c populate_sysroot ret=$? if [ "$ret" != "0" ]; then exit 1