The shell archive that populates the external SDK should fail if it
cannot find the ld-linux.so else it will corrupt all binaries because
a random path will be used from the list of executables when dl_path
is empty.

Signed-off-by: Jason Wessel <jason.wes...@windriver.com>
---
 meta/classes/populate_sdk_base.bbclass |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/meta/classes/populate_sdk_base.bbclass 
b/meta/classes/populate_sdk_base.bbclass
index ac34c32..73bd44d 100644
--- a/meta/classes/populate_sdk_base.bbclass
+++ b/meta/classes/populate_sdk_base.bbclass
@@ -176,6 +176,10 @@ done
 # fix dynamic loader paths in all ELF SDK binaries
 native_sysroot=$(cat $env_setup_script |grep OECORE_NATIVE_SYSROOT|cut -d'=' 
-f2|tr -d '"')
 dl_path=$(find $native_sysroot/lib -name "ld-linux*")
+if [ "$dl_path" = "" ] ; then
+       echo "SDK could not be set up. Relocate script to find ld-linux.so. 
Abort!"
+       exit 1
+fi
 executable_files=$(find $native_sysroot -type f -perm +111)
 ${env_setup_script%/*}/relocate_sdk.py $target_sdk_dir $dl_path 
$executable_files
 if [ $? -ne 0 ]; then
-- 
1.7.1


_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

Reply via email to