This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SDK8 tisdk-rootfs-image build error



Hello!

I'm trying to rebuilt tisdk-rootfs-image with SDK 8.0. Host machine Ubuntu14.04 (with tar downgraded to 1.25 version),

And I've got error:

git clone git://arago-project.org/git/projects/oe-layersetup.git
cd ./oe-layertool/
./oe-layertool-setup.sh -f ./configs/amsdk/amsdk-08.00.00.00-config.txt 

[..................................]

cd ./build/
source ./conf/setenv
export PATH=/home/nebel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/:$PATH
MACHINE=am335x-evm bitbake tisdk-rootfs-image
Loading cache: 100% |######################################################################################################################################| ETA:  00:00:00
Loaded 219 entries from dependency cache.
NOTE: Error during finalise of /home/nebel/plc_linux/oe-layersetup/sources/meta-qt5/recipes-qt/qt5/qtmultimedia_git.bb                                     | ETA:  --:--:--
ERROR: ExpansionError during parsing /home/nebel/plc_linux/oe-layersetup/sources/meta-qt5/recipes-qt/qt5/qtmultimedia_git.bb: Failure expanding variable qmake5_base_do_configure: ExpansionError: Failure expanding variable EXTRA_QMAKEVARS_PRE, expression was  ${@bb.utils.contains('PACKAGECONFIG', 'alsa', '', 'CONFIG+=done_config_alsa', d)} ${@bb.utils.contains('PACKAGECONFIG', 'pulseaudio', '', 'CONFIG+=done_config_pulseaudio', d)} ${@bb.utils.contains('PACKAGECONFIG', 'openal', '', 'CONFIG+=done_config_openal', d)} ${@bb.utils.contains('PACKAGECONFIG', 'gstreamer', 'GST_VERSION=1.0', '', d)} ${@bb.utils.contains('PACKAGECONFIG', 'gstreamer010', 'GST_VERSION=0.10', '', d)} ${@bb.utils.contains_any('PACKAGECONFIG', 'gstreamer gstreamer010', '', 'CONFIG+=done_config_gstreamer', d)} which triggered exception AttributeError: 'module' object has no attribute 'contains_any'

Summary: There was 1 ERROR message shown, returning a non-zero exit code.

How to fix error and properly rebuild tisdk-rootfs-image?

  • Hi Kirill,

    Did you read the:
    processors.wiki.ti.com/.../Sitara_Linux_Training:_Getting_Started_with_Openembedded
    Also could you see the:
    e2e.ti.com/.../829035
    this is the very close to your problem.

    BR
    Ivan
  • Ivan Matrakov said:

    Yes, I did.

    Ivan Matrakov said:
    Also could you see the:
    e2e.ti.com/.../829035
    this is the very close to your problem.

    In the above topic problem with downloading (wrong SRC_URI in recipe), but I've got error on recipe parsing.

  • Hi Kirill,

    If I am not mistaken somewhere I think that you have to use Arago toolchain. Would you change your toolchain.

    BR
    Ivan
  • Hi, Ivan!

    This instruction http://arago-project.org/wiki/index.php/Setting_Up_Build_Environment says that arago toolchain is used for ARM9 machines (AM18x).

    Do you confirm that I should try this toolchain (http://downloads.ti.com/sdoemb/sdoemb_public_sw/arago_toolchain/2011_09/exports/arago-2011.09-armv5te-linux-gnueabi-sdk.tar.bz2 ) for am335x? 

  • Hi, Ivan!

    This instruction arago-project.org/.../Setting_Up_Build_Environment says that arago toolchain is used for ARM9 machines (AM18x).

    Do you confirm that I should try this toolchain (downloads.ti.com/.../arago-2011.09-armv5te-linux-gnueabi-sdk.tar.bz2 ) for am335x?
  • Hi Kirill,

    I could not find where it says that should be used arago toolchain but YES I recommend to use Arago toolchain.

    BR
    Ivan
  • nebel@nt430:~/plc_linux/oe-layersetup$ ./oe-layertool-setup.sh -f ./configs/amsdk/amsdk-08.00.00.00-config.txt

    nebel@nt430:~/plc_linux/oe-layersetup$ cd build/
    nebel@nt430:~/plc_linux/oe-layersetup/build$ source ./conf/setenv
    nebel@nt430:~/plc_linux/oe-layersetup/build$ export PATH=/home/nebel/arago-2011.09/armv5te/bin/:$PATH
    nebel@nt430:~/plc_linux/oe-layersetup/build$ echo $PATH
    /home/nebel/arago-2011.09/armv5te/bin/:/home/nebel/plc_linux/oe-layersetup/sources/oe-core/scripts:/home/nebel/plc_linux/oe-layersetup/sources/bitbake/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
    nebel@nt430:~/plc_linux/oe-layersetup/build$ MACHINE=am335x-evm bitbake tisdk-rootfs-image
    ERROR: No valid toolchain in PATH
    nebel@nt430:~/plc_linux/oe-layersetup/build$

    It doesn't work. I was trying to google other version of arago toolchain, but there is only one version in results: arago-2011.09... 

  • Hello Kirill E. ,

    You are struggling with this issue because 'contains_any' in bitbake is not implemented yet. You can simply add this attribute to sources/bitbake/lib/bb/utils.py and the error will never show up again.

    def contains_any(variable, checkvalues, truevalue, falsevalue, d):
        val = d.getVar(variable, True)
        if not val:
            return falsevalue
        val = set(val.split())
        if isinstance(checkvalues, basestring):
            checkvalues = set(checkvalues.split())
        else:
            checkvalues = set(checkvalues)
        if checkvalues & val:
            return truevalue
        return falsevalue


    Note: Python has indentation requirement, then you have to arrange the code.

    Best regards,

    Kemal

  • Hi Kirill,

    You are using a wrong toolchain armv5te. You have to use armv7a. You can download it from:
    arago-project.org/.../arago-toolchain-2011.09
    and get arago-2011.09-armv7a-linux-gnueabi-sdk.tar.bz2

    BR
    Ivan
  • Hello Kemal!

    Thank you for reply. This config oe-layersetup/configs/amsdk/amsdk-08.00.00.00-config.txt fetches bitbake 1.22. I've change 1.22 to 1.24("contains_any" already implemented in 1.24 version):

    bitbake,git://git.openembedded.org/bitbake,1.24,HEAD,layers=

  • Ivan Matrakov said:


    You are using a wrong toolchain armv5te. You have to use armv7a. You can download it from:
    arago-project.org/.../arago-toolchain-2011.09
    and get arago-2011.09-armv7a-linux-gnueabi-sdk.tar.bz2

    This toolchain gives the same error:
    ERROR: No valid toolchain in PATH

  • Right! This would be better solution than mine.
  • Still can't build tisdk-rootfs :( Now I get error with recipes-devtools/autoconf/autoconf_2.69.bb.

    Sorry, for too long log:

    nebel@nd:~/plc_linux/oe-layersetup/build$ MACHINE=am335x-evm bitbake tisdk-rootfs-image
    Loading cache: 100% |###########################################################################################################################################################################| ETA:  00:00:00
    Loaded 2205 entries from dependency cache.
    NOTE: Resolving any missing task queue dependencies
    
    Build Configuration:
    BB_VERSION        = "1.24.0"
    BUILD_SYS         = "i686-linux"
    NATIVELSBSTRING   = "Ubuntu-12.04"
    TARGET_SYS        = "arm-oe-linux-gnueabi"
    MACHINE           = "am335x-evm"
    DISTRO            = "arago"
    DISTRO_VERSION    = "2015.02"
    TUNE_FEATURES     = "armv7a vfp thumb neon callconvention-hard cortexa8"
    TARGET_FPU        = "vfp-neon"
    meta-arago-distro 
    meta-arago-extras = "amsdk-08.00.00.00-integration:2d15e7da62646c907d24942483cbfddc03a6310b"
    meta-qt5          = "master:a0fb5595129f50e36ce044d3269e96aa834aa0b0"
    toolchain-layer   
    meta-networking   
    meta-ruby         
    meta-oe           = "daisy:d3d14d3fcca7fcde362cf0b31411dc4eea6d20aa"
    meta-ti           = "amsdk-08.00.00.00-integration:4fc5c40602d9a826661934a94a8a7e5e5864c88f"
    meta-linaro-toolchain = "daisy:06008235ca752fea678953e85adaa29a491d246b"
    meta              = "daisy:afc44fad44261677c799558ffd35f4908556bce0"
    
    NOTE: Preparing runqueue
    NOTE: Executing SetScene Tasks
    NOTE: Executing RunQueue Tasks
    ERROR: Function failed: do_configure (log file is located at /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/temp/log.do_configure.16427)
    ERROR: Logfile of failure stored in: /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/temp/log.do_configure.16427
    Log data follows:
    | DEBUG: Executing python function sysroot_cleansstate
    | DEBUG: Python function sysroot_cleansstate finished
    | DEBUG: Executing shell function autotools_preconfigure
    | Previously configured separate build directory detected, cleaning /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/build
    | DEBUG: Shell function autotools_preconfigure finished
    | DEBUG: Executing python function autotools_copy_aclocals
    | DEBUG: Python function autotools_copy_aclocals finished
    | DEBUG: Executing shell function do_configure
    | NOTE: Running /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/autoconf-2.69/configure  --build=i686-linux 		  --host=i686-linux 		  --target=i686-linux 		  --prefix=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr 		  --exec_prefix=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr 		  --bindir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/bin 		  --sbindir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/sbin 		  --libexecdir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/lib/autoconf 		  --datadir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/share 	  --sysconfdir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/etc 		  --sharedstatedir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/com 		  --localstatedir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/var 		  --libdir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/lib 		  --includedir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/include 		  --oldincludedir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/include 		  --infodir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/share/info 		  --mandir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/share/man 		  --disable-silent-rules 		  --disable-dependency-tracking 		    ac_cv_path_M4=m4
    | configure: WARNING: unrecognized options: --disable-silent-rules, --disable-dependency-tracking
    | configure: loading site script /home/nebel/plc_linux/oe-layersetup/sources/oe-core/meta/site/native
    | checking for a BSD-compatible install... /usr/bin/install -c
    | checking whether build environment is sane... yes
    | checking for a thread-safe mkdir -p... /bin/mkdir -p
    | checking for gawk... gawk
    | checking whether make sets $(MAKE)... yes
    | configure: error: source directory already configured; run "make distclean" there first
    | Configure failed. The contents of all config.log files follows to aid debugging
    | /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/autoconf-2.69/config.log
    | This file contains any messages produced by compilers while
    | running configure, to aid debugging if configure makes a mistake.
    | 
    | It was created by GNU Autoconf configure 2.69, which was
    | generated by GNU Autoconf 2.69.  Invocation command line was
    | 
    |   $ /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/autoconf-2.69/configure --build=i686-linux --host=i686-linux --target=i686-linux --prefix=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr --exec_prefix=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr --bindir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/bin --sbindir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/sbin --libexecdir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/lib/autoconf --datadir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/share --sysconfdir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/etc --sharedstatedir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/com --localstatedir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/var --libdir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/lib --includedir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/include --oldincludedir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/include --infodir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/share/info --mandir=/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/share/man --disable-silent-rules --disable-dependency-tracking ac_cv_path_M4=m4
    | 
    | ## --------- ##
    | ## Platform. ##
    | ## --------- ##
    | 
    | hostname = nd
    | uname -m = i686
    | uname -r = 3.13.0-32-generic
    | uname -s = Linux
    | uname -v = #57~precise1-Ubuntu SMP Tue Jul 15 03:50:54 UTC 2014
    | 
    | /usr/bin/uname -p = unknown
    | /bin/uname -X     = unknown
    | 
    | /bin/arch              = unknown
    | /usr/bin/arch -k       = unknown
    | /usr/convex/getsysinfo = unknown
    | /usr/bin/hostinfo      = unknown
    | /bin/machine           = unknown
    | /usr/bin/oslevel       = unknown
    | /bin/universe          = unknown
    | 
    | PATH: /home/nebel/plc_linux/oe-layersetup/sources/oe-core/scripts/native-intercept
    | PATH: /home/nebel/plc_linux/oe-layersetup/sources/oe-core/scripts
    | PATH: /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/bin/cortexa8hf-vfp-neon-linux
    | PATH: /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/bin
    | PATH: /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/sbin
    | PATH: /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/bin
    | PATH: /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/sbin
    | PATH: /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux//bin
    | PATH: /home/nebel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin
    | PATH: /home/nebel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/
    | PATH: /home/nebel/plc_linux/oe-layersetup/sources/bitbake/bin
    | PATH: /usr/lib/lightdm/lightdm
    | PATH: /usr/local/sbin
    | PATH: /usr/local/bin
    | PATH: /usr/sbin
    | PATH: /usr/bin
    | PATH: /sbin
    | PATH: /bin
    | PATH: /usr/games
    | 
    | 
    | ## ----------- ##
    | ## Core tests. ##
    | ## ----------- ##
    | 
    | configure:1796: checking for a BSD-compatible install
    | configure:1864: result: /usr/bin/install -c
    | configure:1875: checking whether build environment is sane
    | configure:1925: result: yes
    | configure:2066: checking for a thread-safe mkdir -p
    | configure:2105: result: /bin/mkdir -p
    | configure:2118: checking for gawk
    | configure:2134: found /usr/bin/gawk
    | configure:2145: result: gawk
    | configure:2156: checking whether make sets $(MAKE)
    | configure:2178: result: yes
    | configure:2263: checking build system type
    | configure:2277: result: i686-pc-linux-gnu
    | configure:2297: checking host system type
    | configure:2310: result: i686-pc-linux-gnu
    | configure:2337: autobuild project... GNU Autoconf
    | configure:2343: autobuild revision... 2.69
    | configure:2348: autobuild hostname... nd
    | configure:2359: autobuild timestamp... 20150225T161342Z
    | configure:2387: checking whether /bin/sh -n is known to work
    | configure:2406: result: yes
    | configure:2410: checking for characters that cannot appear in file names
    | configure:2430: result: none
    | configure:2436: checking whether directories can have trailing spaces
    | configure:2450: result: yes
    | configure:2461: checking for expr
    | configure:2479: found /usr/bin/expr
    | configure:2491: result: /usr/bin/expr
    | configure:2510: checking for GNU M4 that supports accurate traces
    | configure:2559: result: m4
    | configure:2562: checking whether m4 accepts --gnu
    | configure:2572: result: yes
    | configure:2589: checking how m4 supports trace files
    | configure:2599: result: --debugfile
    | configure:2623: checking for perl
    | configure:2641: found /usr/bin/perl
    | configure:2654: result: /usr/bin/perl
    | configure:2673: checking whether /usr/bin/perl Fcntl::flock is implemented
    | configure:2687: result: yes
    | configure:2705: checking for emacs
    | configure:2735: result: no
    | configure:2705: checking for xemacs
    | configure:2735: result: no
    | configure:2788: checking for emacs
    | configure:2815: result: no
    | configure:2839: checking where .elc files should go
    | configure:2868: result: ${datadir}/emacs/site-lisp
    | configure:2881: checking for grep that handles long lines and -e
    | configure:2939: result: /bin/grep
    | configure:2944: checking for egrep
    | configure:3006: result: /bin/grep -E
    | configure:3011: checking for a sed that does not truncate output
    | configure:3075: result: /bin/sed
    | configure:3085: checking whether make is case sensitive
    | configure:3100: result: yes
    | configure:3279: creating ./config.status
    | 
    | ## ---------------------- ##
    | ## Running config.status. ##
    | ## ---------------------- ##
    | 
    | This file was extended by GNU Autoconf config.status 2.69, which was
    | generated by GNU Autoconf 2.69.  Invocation command line was
    | 
    |   CONFIG_FILES    =
    |   CONFIG_HEADERS  =
    |   CONFIG_LINKS    =
    |   CONFIG_COMMANDS =
    |   $ ./config.status
    | 
    | on nd
    | 
    | config.status:805: creating tests/Makefile
    | config.status:805: creating tests/atlocal
    | config.status:805: creating man/Makefile
    | config.status:805: creating lib/emacs/Makefile
    | config.status:805: creating Makefile
    | config.status:805: creating doc/Makefile
    | config.status:805: creating lib/Makefile
    | config.status:805: creating lib/Autom4te/Makefile
    | config.status:805: creating lib/autoscan/Makefile
    | config.status:805: creating lib/m4sugar/Makefile
    | config.status:805: creating lib/autoconf/Makefile
    | config.status:805: creating lib/autotest/Makefile
    | config.status:805: creating bin/Makefile
    | config.status:1008: executing tests/atconfig commands
    | configure:4386: WARNING: unrecognized options: --disable-silent-rules, --disable-dependency-tracking
    | 
    | ## ---------------- ##
    | ## Cache variables. ##
    | ## ---------------- ##
    | 
    | ac_cv_build=i686-pc-linux-gnu
    | ac_cv_dir_trailing_space=yes
    | ac_cv_env_EMACSLOADPATH_set=
    | ac_cv_env_EMACSLOADPATH_value=
    | ac_cv_env_EMACS_set=
    | ac_cv_env_EMACS_value=
    | ac_cv_env_M4_set=
    | ac_cv_env_M4_value=
    | ac_cv_env_build_alias_set=set
    | ac_cv_env_build_alias_value=i686-linux
    | ac_cv_env_host_alias_set=set
    | ac_cv_env_host_alias_value=i686-linux
    | ac_cv_env_target_alias_set=set
    | ac_cv_env_target_alias_value=i686-linux
    | ac_cv_host=i686-pc-linux-gnu
    | ac_cv_path_EGREP='/bin/grep -E'
    | ac_cv_path_EXPR=/usr/bin/expr
    | ac_cv_path_GREP=/bin/grep
    | ac_cv_path_M4=m4
    | ac_cv_path_PERL=/usr/bin/perl
    | ac_cv_path_SED=/bin/sed
    | ac_cv_path_install='/usr/bin/install -c'
    | ac_cv_path_mkdir=/bin/mkdir
    | ac_cv_perl_flock_implemented=yes
    | ac_cv_prog_AWK=gawk
    | ac_cv_prog_EMACS=no
    | ac_cv_prog_gnu_m4_debugfile=--debugfile
    | ac_cv_prog_gnu_m4_gnu=yes
    | ac_cv_prog_make_make_case=yes
    | ac_cv_prog_make_make_set=yes
    | ac_cv_sh_n_works=yes
    | ac_cv_unsupported_fs_chars=
    | am_cv_lispdir='${datadir}/emacs/site-lisp'
    | 
    | ## ----------------- ##
    | ## Output variables. ##
    | ## ----------------- ##
    | 
    | ACLOCAL='${SHELL} /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/autoconf-2.69/build-aux/missing --run aclocal-1.11'
    | AMTAR='${SHELL} /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/autoconf-2.69/build-aux/missing --run tar'
    | AUTOCONF='${SHELL} /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/autoconf-2.69/build-aux/missing --run autoconf'
    | AUTOHEADER='${SHELL} /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/autoconf-2.69/build-aux/missing --run autoheader'
    | AUTOMAKE='${SHELL} /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/autoconf-2.69/build-aux/missing --run automake-1.11'
    | AWK='gawk'
    | CYGPATH_W='echo'
    | DEFS='-DPACKAGE_NAME=\"GNU\ Autoconf\" -DPACKAGE_TARNAME=\"autoconf\" -DPACKAGE_VERSION=\"2.69\" -DPACKAGE_STRING=\"GNU\ Autoconf\ 2.69\" -DPACKAGE_BUGREPORT=\"bug-autoconf@gnu.org\" -DPACKAGE_URL=\"www.gnu.org/.../autoconf\" -DPACKAGE=\"autoconf\" -DVERSION=\"2.69\"'
    | ECHO_C=''
    | ECHO_N='-n'
    | ECHO_T=''
    | EGREP='/bin/grep -E'
    | EMACS='no'
    | EMACSLOADPATH=''
    | EXPR='/usr/bin/expr'
    | GREP='/bin/grep'
    | HELP2MAN='${SHELL} /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/autoconf-2.69/build-aux/missing --run help2man'
    | INSTALL_DATA='${INSTALL} -m 644'
    | INSTALL_PROGRAM='${INSTALL}'
    | INSTALL_SCRIPT='${INSTALL}'
    | INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
    | LIBOBJS=''
    | LIBS=''
    | LTLIBOBJS=''
    | M4='m4'
    | M4_DEBUGFILE='--debugfile'
    | M4_GNU='--gnu'
    | MAKEINFO='${SHELL} /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/autoconf-2.69/build-aux/missing --run makeinfo'
    | MAKE_CASE_SENSITIVE_FALSE='#'
    | MAKE_CASE_SENSITIVE_TRUE=''
    | MKDIR_P='/bin/mkdir -p'
    | PACKAGE='autoconf'
    | PACKAGE_BUGREPORT='bug-autoconf@gnu.org'
    | PACKAGE_NAME='GNU Autoconf'
    | PACKAGE_STRING='GNU Autoconf 2.69'
    | PACKAGE_TARNAME='autoconf'
    | PACKAGE_URL='www.gnu.org/.../autoconf'
    | PACKAGE_VERSION='2.69'
    | PATH_SEPARATOR=':'
    | PERL='/usr/bin/perl'
    | PERL_FLOCK='yes'
    | SED='/bin/sed'
    | SET_MAKE=''
    | SHELL='/bin/sh'
    | STRIP='strip'
    | TEST_EMACS='no'
    | VERSION='2.69'
    | ac_cv_dir_trailing_space='yes'
    | ac_cv_sh_n_works='yes'
    | ac_cv_unsupported_fs_chars=''
    | am__isrc=''
    | am__leading_dot='.'
    | am__tar='${AMTAR} chof - "$$tardir"'
    | am__untar='${AMTAR} xf -'
    | bindir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/bin'
    | build='i686-pc-linux-gnu'
    | build_alias='i686-linux'
    | build_cpu='i686'
    | build_os='linux-gnu'
    | build_vendor='pc'
    | datadir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/share'
    | datarootdir='${prefix}/share'
    | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
    | dvidir='${docdir}'
    | exec_prefix='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr'
    | host='i686-pc-linux-gnu'
    | host_alias='i686-linux'
    | host_cpu='i686'
    | host_os='linux-gnu'
    | host_vendor='pc'
    | htmldir='${docdir}'
    | includedir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/include'
    | infodir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/share/info'
    | install_sh='${SHELL} /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/autoconf-2.69/build-aux/install-sh'
    | libdir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/lib'
    | libexecdir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/lib/autoconf'
    | lispdir='${datadir}/emacs/site-lisp'
    | localedir='${datarootdir}/locale'
    | localstatedir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/var'
    | mandir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/share/man'
    | mkdir_p='/bin/mkdir -p'
    | oldincludedir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/include'
    | pdfdir='${docdir}'
    | prefix='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr'
    | program_transform_name='s,x,x,'
    | psdir='${docdir}'
    | sbindir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/usr/sbin'
    | sharedstatedir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/com'
    | sysconfdir='/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/sysroots/i686-linux/etc'
    | target_alias='i686-linux'
    | 
    | ## ----------- ##
    | ## confdefs.h. ##
    | ## ----------- ##
    | 
    | /* confdefs.h */
    | #define PACKAGE_NAME "GNU Autoconf"
    | #define PACKAGE_TARNAME "autoconf"
    | #define PACKAGE_VERSION "2.69"
    | #define PACKAGE_STRING "GNU Autoconf 2.69"
    | #define PACKAGE_BUGREPORT "bug-autoconf@gnu.org"
    | #define PACKAGE_URL "www.gnu.org/.../autoconf"
    | #define PACKAGE "autoconf"
    | #define VERSION "2.69"
    | 
    | configure: exit 0
    | ERROR: oe_runconf failed
    | WARNING: /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/temp/run.do_configure.16427:1 exit 1 from
    |   exit 1
    | ERROR: Function failed: do_configure (log file is located at /home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/i686-linux/autoconf-native/2.69-r11/temp/log.do_configure.16427)
    ERROR: Task 493 (virtual:native:/home/nebel/plc_linux/oe-layersetup/sources/oe-core/meta/recipes-devtools/autoconf/autoconf_2.69.bb, do_configure) failed with exit code '1'
    NOTE: Tasks Summary: Attempted 1316 tasks of which 1315 didn't need to be rerun and 1 failed.
    No currently running tasks (32 of 4494)
    
    Summary: 1 task failed:
      virtual:native:/home/nebel/plc_linux/oe-layersetup/sources/oe-core/meta/recipes-devtools/autoconf/autoconf_2.69.bb, do_configure
    Summary: There was 1 ERROR message shown, returning a non-zero exit code.
    

  • Did you re-source conf/setenv?
  • Clean the project and try to rebuild it in new terminal tab. Use the time command in order to let us know when the build gets broken.

    time MACHINE=am335x-evm bitbake tisdk-rootfs-image

    A while ago I made one successful build and there were no breaks.

  • Hello!

    It works! Cleaning project was helpfull (I've just delete "build" directory).

    During baking I've get next warnings:

    NOTE: Preparing runqueue
    NOTE: Executing SetScene Tasks
    NOTE: Executing RunQueue Tasks
    WARNING: TI installer requires 32bit glibc libraries for proper operation
    run 'yum install glibc.i686' on Fedora or 'apt-get install ia32-libs' on Ubuntu/Debian
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/libssp/lib/libssp.so.0.0.0'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/libmudflap/lib/libmudflapth.so.0.0.0'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/libmudflap/lib/libmudflap.so.0.0.0'
    WARNING: QA Issue: non -staticdev package contains static .a library: libmudflap-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/libmudflap-dev/lib/libmudflapth.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: libmudflap-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/libmudflap-dev/lib/libmudflap.a'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/libgomp/lib/libgomp.so.1.0.0'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/libitm/lib/libitm.so.1.0.0'
    WARNING: QA Issue: ELF binary '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/libitm/lib/libitm.so.1.0.0' has relocations in .text
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libresolv.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libc.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libutil.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libmcheck.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/librt.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libg.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libcrypt.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libnsl.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libbsd-compat.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libanl.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libpthread.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/librpcsvc.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libm.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libieee.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libBrokenLocale.a'
    WARNING: QA Issue: non -staticdev package contains static .a library: external-linaro-toolchain-dev path '/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/packages-split/external-linaro-toolchain-dev/usr/lib/libdl.a'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/gdbm/1.8.3-r4/packages-split/gdbm/usr/lib/libgdbm.so.3.0.0'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-audio/usr/lib/python2.7/lib-dynload/audioop.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-audio/usr/lib/python2.7/lib-dynload/ossaudiodev.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-bsddb/usr/lib/python2.7/lib-dynload/_bsddb.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-codecs/usr/lib/python2.7/lib-dynload/_multibytecodec.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-codecs/usr/lib/python2.7/lib-dynload/_codecs_iso2022.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-codecs/usr/lib/python2.7/lib-dynload/_codecs_cn.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-codecs/usr/lib/python2.7/lib-dynload/_codecs_kr.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-codecs/usr/lib/python2.7/lib-dynload/_codecs_jp.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-codecs/usr/lib/python2.7/lib-dynload/unicodedata.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-codecs/usr/lib/python2.7/lib-dynload/_codecs_hk.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-codecs/usr/lib/python2.7/lib-dynload/_codecs_tw.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-codecs/usr/lib/python2.7/lib-dynload/_locale.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-compression/usr/lib/python2.7/lib-dynload/bz2.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-core/usr/lib/python2.7/lib-dynload/time.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-core/usr/lib/python2.7/lib-dynload/binascii.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-core/usr/lib/python2.7/lib-dynload/_struct.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-crypt/usr/lib/python2.7/lib-dynload/_hashlib.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-crypt/usr/lib/python2.7/lib-dynload/crypt.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-ctypes/usr/lib/python2.7/lib-dynload/_ctypes.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-ctypes/usr/lib/python2.7/lib-dynload/_ctypes_test.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-curses/usr/lib/python2.7/lib-dynload/_curses.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-curses/usr/lib/python2.7/lib-dynload/_curses_panel.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-datetime/usr/lib/python2.7/lib-dynload/datetime.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-elementtree/usr/lib/python2.7/lib-dynload/_elementtree.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-fcntl/usr/lib/python2.7/lib-dynload/fcntl.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-gdbm/usr/lib/python2.7/lib-dynload/gdbm.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-hotshot/usr/lib/python2.7/lib-dynload/_hotshot.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-image/usr/lib/python2.7/lib-dynload/imageop.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-io/usr/lib/python2.7/lib-dynload/cStringIO.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-io/usr/lib/python2.7/lib-dynload/_io.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-io/usr/lib/python2.7/lib-dynload/termios.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-io/usr/lib/python2.7/lib-dynload/select.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-io/usr/lib/python2.7/lib-dynload/_socket.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-io/usr/lib/python2.7/lib-dynload/_ssl.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-json/usr/lib/python2.7/lib-dynload/_json.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-lang/usr/lib/python2.7/lib-dynload/_functools.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-lang/usr/lib/python2.7/lib-dynload/itertools.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-lang/usr/lib/python2.7/lib-dynload/_collections.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-lang/usr/lib/python2.7/lib-dynload/array.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-lang/usr/lib/python2.7/lib-dynload/parser.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-lang/usr/lib/python2.7/lib-dynload/_bisect.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-lang/usr/lib/python2.7/lib-dynload/operator.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-lang/usr/lib/python2.7/lib-dynload/_heapq.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-math/usr/lib/python2.7/lib-dynload/cmath.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-math/usr/lib/python2.7/lib-dynload/math.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-math/usr/lib/python2.7/lib-dynload/_random.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-mmap/usr/lib/python2.7/lib-dynload/mmap.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-multiprocessing/usr/lib/python2.7/lib-dynload/_multiprocessing.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-pickle/usr/lib/python2.7/lib-dynload/cPickle.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-profile/usr/lib/python2.7/lib-dynload/_lsprof.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-readline/usr/lib/python2.7/lib-dynload/readline.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-resource/usr/lib/python2.7/lib-dynload/resource.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-sqlite3/usr/lib/python2.7/lib-dynload/_sqlite3.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-stringold/usr/lib/python2.7/lib-dynload/strop.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-syslog/usr/lib/python2.7/lib-dynload/syslog.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-textutils/usr/lib/python2.7/lib-dynload/_csv.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-unixadmin/usr/lib/python2.7/lib-dynload/grp.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-unixadmin/usr/lib/python2.7/lib-dynload/nis.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-xml/usr/lib/python2.7/lib-dynload/pyexpat.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-zlib/usr/lib/python2.7/lib-dynload/zlib.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-misc/usr/lib/python2.7/lib-dynload/future_builtins.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-misc/usr/lib/python2.7/lib-dynload/linuxaudiodev.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-misc/usr/lib/python2.7/lib-dynload/_testcapi.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-misc/usr/lib/python2.7/lib-dynload/dl.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-misc/usr/lib/python2.7/lib-dynload/dbm.so'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-misc/usr/lib/python2.7/lib-dynload/spwd.so'
    WARNING: TI installer requires 32bit glibc libraries for proper operation
    run 'yum install glibc.i686' on Fedora or 'apt-get install ia32-libs' on Ubuntu/Debian
    WARNING: QA Issue: matrix-gui-submenus: Files/directories were installed but not shipped
      /usr/share/matrix-gui-2.0/apps/settings_apps
      /usr/share/matrix-gui-2.0/apps/wifi_apps
      /usr/share/matrix-gui-2.0/apps/v4l2_apps
      /usr/share/matrix-gui-2.0/apps/cameraloopback_apps
      /usr/share/matrix-gui-2.0/apps/multimedia_apps
      /usr/share/matrix-gui-2.0/apps/qt5_apps
      /usr/share/matrix-gui-2.0/apps/arm_apps
      /usr/share/matrix-gui-2.0/apps/usb_apps
      /usr/share/matrix-gui-2.0/apps/ethernet_apps
      /usr/share/matrix-gui-2.0/apps/qt4_apps
      /usr/share/matrix-gui-2.0/apps/pru_apps
      /usr/share/matrix-gui-2.0/apps/3d_apps
      /usr/share/matrix-gui-2.0/apps/clocks_apps
      /usr/share/matrix-gui-2.0/apps/oprofile_apps
      /usr/share/matrix-gui-2.0/apps/displaycontrol_apps
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program
      /usr/share/matrix-gui-2.0/apps/power_apps
      /usr/share/matrix-gui-2.0/apps/settings_apps/settings_task_info
      /usr/share/matrix-gui-2.0/apps/settings_apps/settings_network
      /usr/share/matrix-gui-2.0/apps/settings_apps/settings_system_info
      /usr/share/matrix-gui-2.0/apps/settings_apps/shutdown_matrix
      /usr/share/matrix-gui-2.0/apps/settings_apps/settings_memory
      /usr/share/matrix-gui-2.0/apps/settings_apps/shutdown
      /usr/share/matrix-gui-2.0/apps/settings_apps/refresh_matrix
      /usr/share/matrix-gui-2.0/apps/settings_apps/settings_task_info/settings_task_info.desktop
      /usr/share/matrix-gui-2.0/apps/settings_apps/settings_network/settings_network.desktop
      /usr/share/matrix-gui-2.0/apps/settings_apps/settings_system_info/settings_system_info.desktop
      /usr/share/matrix-gui-2.0/apps/settings_apps/shutdown_matrix/shutdown_matrix.desktop
      /usr/share/matrix-gui-2.0/apps/settings_apps/shutdown_matrix/desc_shutdown_matrix.html
      /usr/share/matrix-gui-2.0/apps/settings_apps/settings_memory/settings_memory.desktop
      /usr/share/matrix-gui-2.0/apps/settings_apps/shutdown/shutdown.desktop
      /usr/share/matrix-gui-2.0/apps/settings_apps/shutdown/desc_shutdown.html
      /usr/share/matrix-gui-2.0/apps/settings_apps/refresh_matrix/desc_refresh_matrix.html
      /usr/share/matrix-gui-2.0/apps/settings_apps/refresh_matrix/refresh_matrix.desktop
      /usr/share/matrix-gui-2.0/apps/wifi_apps/soft_ap
      /usr/share/matrix-gui-2.0/apps/wifi_apps/wifi_connect
      /usr/share/matrix-gui-2.0/apps/wifi_apps/soft_ap/soft_ap.desktop
      /usr/share/matrix-gui-2.0/apps/wifi_apps/soft_ap/desc_soft_ap.html
      /usr/share/matrix-gui-2.0/apps/wifi_apps/wifi_connect/desc_wifi_connect.html
      /usr/share/matrix-gui-2.0/apps/wifi_apps/wifi_connect/wifi_connect.desktop
      /usr/share/matrix-gui-2.0/apps/v4l2_apps/v4l2_display
      /usr/share/matrix-gui-2.0/apps/v4l2_apps/v4l2_rotate
      /usr/share/matrix-gui-2.0/apps/v4l2_apps/v4l2_scaling
      /usr/share/matrix-gui-2.0/apps/v4l2_apps/v4l2_display/desc_v4l2_display.html
      /usr/share/matrix-gui-2.0/apps/v4l2_apps/v4l2_display/v4l2_display.desktop
      /usr/share/matrix-gui-2.0/apps/v4l2_apps/v4l2_rotate/v4l2_rotate.desktop
      /usr/share/matrix-gui-2.0/apps/v4l2_apps/v4l2_rotate/desc_v4l2_rotate.html
      /usr/share/matrix-gui-2.0/apps/v4l2_apps/v4l2_scaling/desc_v4l2_scaling.html
      /usr/share/matrix-gui-2.0/apps/v4l2_apps/v4l2_scaling/v4l2_scaling.desktop
      /usr/share/matrix-gui-2.0/apps/cameraloopback_apps/camera_loopback
      /usr/share/matrix-gui-2.0/apps/cameraloopback_apps/camera_loopback/desc_cam_loopback.html
      /usr/share/matrix-gui-2.0/apps/cameraloopback_apps/camera_loopback/cameraloopback.desktop
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_h264dec
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_mpeg4aacdec
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_mpeg4dec
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_aacdec
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_audiocapture
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_h264dec/desc_arm_multimedia_h264dec.html
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_h264dec/arm_multimedia_h264dec.desktop
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_mpeg4aacdec/desc_arm_multimedia_mpeg4aacdec.html
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_mpeg4aacdec/arm_multimedia_mpeg4aacdec.desktop
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_mpeg4dec/desc_arm_multimedia_mpeg4dec.html
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_mpeg4dec/arm_multimedia_mpeg4dec.desktop
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_aacdec/desc_arm_multimedia_aacdec.html
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_aacdec/arm_multimedia_aacdec.desktop
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_audiocapture/desc_arm_multimedia_audiocapture.html
      /usr/share/matrix-gui-2.0/apps/multimedia_apps/arm_multimedia_audiocapture/arm_multimedia_audiocapture.desktop
      /usr/share/matrix-gui-2.0/apps/qt5_apps/qt5_deform
      /usr/share/matrix-gui-2.0/apps/qt5_apps/qt5_browser
      /usr/share/matrix-gui-2.0/apps/qt5_apps/qt5_animated_tiles
      /usr/share/matrix-gui-2.0/apps/qt5_apps/qt5_calculator
      /usr/share/matrix-gui-2.0/apps/qt5_apps/qt5_deform/qt5_deform.desktop
      /usr/share/matrix-gui-2.0/apps/qt5_apps/qt5_browser/qt5_browser.desktop
      /usr/share/matrix-gui-2.0/apps/qt5_apps/qt5_animated_tiles/qt5_animated_tiles.desktop
      /usr/share/matrix-gui-2.0/apps/qt5_apps/qt5_calculator/qt5_calculator.desktop
      /usr/share/matrix-gui-2.0/apps/arm_apps/whetstone
      /usr/share/matrix-gui-2.0/apps/arm_apps/linpack
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_memory_latency
      /usr/share/matrix-gui-2.0/apps/arm_apps/nbench
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_communication_bandwidth
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_ddr_bandwidth
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_communication_latency
      /usr/share/matrix-gui-2.0/apps/arm_apps/dhrystone
      /usr/share/matrix-gui-2.0/apps/arm_apps/whetstone/desc_whetstone.html
      /usr/share/matrix-gui-2.0/apps/arm_apps/whetstone/whetstone.desktop
      /usr/share/matrix-gui-2.0/apps/arm_apps/linpack/desc_linpack.html
      /usr/share/matrix-gui-2.0/apps/arm_apps/linpack/linpack.desktop
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_memory_latency/arm_memory_latency.desktop
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_memory_latency/desc_arm_memory_latench.html
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_memory_latency/lat_mem_rd_1M.png
      /usr/share/matrix-gui-2.0/apps/arm_apps/nbench/desc_nbench.html
      /usr/share/matrix-gui-2.0/apps/arm_apps/nbench/nbench.desktop
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_communication_bandwidth/desc_arm_communication_bandwidth.html
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_communication_bandwidth/arm_communication_bandwidth.desktop
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_ddr_bandwidth/arm_ddr_bandwidth.desktop
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_ddr_bandwidth/desc_arm_ddr_bandwidth.html
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_communication_latency/arm_communication_latency.desktop
      /usr/share/matrix-gui-2.0/apps/arm_apps/arm_communication_latency/desc_arm_communication_latency.html
      /usr/share/matrix-gui-2.0/apps/arm_apps/dhrystone/desc_dhrystone.html
      /usr/share/matrix-gui-2.0/apps/arm_apps/dhrystone/dhrystone.desktop
      /usr/share/matrix-gui-2.0/apps/usb_apps/usbbonnie
      /usr/share/matrix-gui-2.0/apps/usb_apps/usbbonnie/usbbonnie.desktop
      /usr/share/matrix-gui-2.0/apps/usb_apps/usbbonnie/desc_usb_bonnie.html
      /usr/share/matrix-gui-2.0/apps/ethernet_apps/eth1_enbl
      /usr/share/matrix-gui-2.0/apps/ethernet_apps/eth1_nat
      /usr/share/matrix-gui-2.0/apps/ethernet_apps/eth1_enbl/eth1_enbl.desktop
      /usr/share/matrix-gui-2.0/apps/ethernet_apps/eth1_enbl/desc_eth1_enable.html
      /usr/share/matrix-gui-2.0/apps/ethernet_apps/eth1_nat/desc_eth1_enbl_nat.html
      /usr/share/matrix-gui-2.0/apps/ethernet_apps/eth1_nat/eth1_enbl_nat.desktop
      /usr/share/matrix-gui-2.0/apps/qt4_apps/qt4_deform
      /usr/share/matrix-gui-2.0/apps/qt4_apps/qt4_animated_tiles
      /usr/share/matrix-gui-2.0/apps/qt4_apps/browser
      /usr/share/matrix-gui-2.0/apps/qt4_apps/calculator
      /usr/share/matrix-gui-2.0/apps/qt4_apps/qt4_deform/qt4_deform.desktop
      /usr/share/matrix-gui-2.0/apps/qt4_apps/qt4_animated_tiles/qt4_animated_tiles.desktop
      /usr/share/matrix-gui-2.0/apps/qt4_apps/browser/browser.desktop
      /usr/share/matrix-gui-2.0/apps/qt4_apps/calculator/calculator.desktop
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_arm2pru_int
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_semaphore
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_memcopy
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_access_const_table
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_overview_info
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_misc_operations
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_L3_DDR
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_gpio_toggle
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_timer_interrupt
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_arm2pru_int/pru_arm2pru_int.desktop
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_arm2pru_int/desc_pru_arm2pru_int.html
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_semaphore/pru_semaphore.desktop
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_semaphore/desc_pru_semaphore.html
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_memcopy/desc_pru_memcopy.html
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_memcopy/pru_memcopy.desktop
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_access_const_table/pru_access_const_table.desktop
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_access_const_table/desc_pru_access_const_table.html
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_overview_info/pru_overview_info.desktop
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_overview_info/desc_pru_overview_info.html
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_misc_operations/desc_pru_misc_operations.html
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_misc_operations/pru_misc_operations.desktop
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_L3_DDR/desc_pru_L3_DDR.html
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_L3_DDR/pru_L3_DDR.desktop
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_gpio_toggle/pru_gpio_toggle.desktop
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_gpio_toggle/desc_pru_gpio_toggle.html
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_timer_interrupt/pru_timer_interrupt.desktop
      /usr/share/matrix-gui-2.0/apps/pru_apps/pru_timer_interrupt/desc_pru_timer_interrupt.html
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_shaders
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_chameleon
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_lantern
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_coverflow
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_skull
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_film
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_vase
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_shaders/3d_shaders.desktop
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_chameleon/3d_chameleon.desktop
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_lantern/3d_lantern.desktop
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_coverflow/3d_coverflow.desktop
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_skull/3d_skull.desktop
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_film/3d_filmtv.desktop
      /usr/share/matrix-gui-2.0/apps/3d_apps/3d_vase/3d_vase.desktop
      /usr/share/matrix-gui-2.0/apps/clocks_apps/set_frequency
      /usr/share/matrix-gui-2.0/apps/clocks_apps/set_frequency/power-set-frequency.desktop
      /usr/share/matrix-gui-2.0/apps/clocks_apps/set_frequency/set-frequency.php
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_init
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_limited_report
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_run_signal_parent_opt
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_simple_report
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_assembly_report
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_run_signal_parent
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_long_report
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_init/op_init.desktop
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_init/desc_oprofile_init.html
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_limited_report/op_limited_report.desktop
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_run_signal_parent_opt/op_run_signal_parent_opt.desktop
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_run_signal_parent_opt/desc_run_signal_parent_opt.html
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_simple_report/op_simple_report.desktop
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_assembly_report/op_asembly_report.desktop
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_run_signal_parent/op_run_signal_parent.desktop
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_run_signal_parent/desc_run_signal_parent.html
      /usr/share/matrix-gui-2.0/apps/oprofile_apps/op_long_report/op_long_report.desktop
      /usr/share/matrix-gui-2.0/apps/displaycontrol_apps/dvi2lcd
      /usr/share/matrix-gui-2.0/apps/displaycontrol_apps/lcd2dvi
      /usr/share/matrix-gui-2.0/apps/displaycontrol_apps/dvi2lcd/dvi2lcd.desktop
      /usr/share/matrix-gui-2.0/apps/displaycontrol_apps/dvi2lcd/desc_dvi2lcd.html
      /usr/share/matrix-gui-2.0/apps/displaycontrol_apps/lcd2dvi/lcd2dvi.desktop
      /usr/share/matrix-gui-2.0/apps/displaycontrol_apps/lcd2dvi/desc_lcd2dvi.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_display_cert_scripts
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_start_server_scripts
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_gen_sha1hash_scripts
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_perf_scripts
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_gen_cert_scripts
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_gen_pubkey_scripts
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_aes256_encdec_scripts
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_display_cert_scripts/openssl_display_cert.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_display_cert_scripts/desc_openssl_display_cert.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_start_server_scripts/openssl_start_server.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_start_server_scripts/desc_openssl_start_server.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_gen_sha1hash_scripts/desc_openssl_gen_sha1hash.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_gen_sha1hash_scripts/openssl_gen_sha1hash.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_perf_scripts/desc_openssl_perf.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_perf_scripts/openssl_perf.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_gen_cert_scripts/desc_openssl_gen_cert.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_gen_cert_scripts/openssl_gen_cert.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_gen_pubkey_scripts/openssl_gen_pubkey.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_gen_pubkey_scripts/desc_openssl_gen_pubkey.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_aes256_encdec_scripts/openssl_aes256_encdec.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_scripts/openssl_aes256_encdec_scripts/desc_openssl_aes256_encdec.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_aes256_encdec_program
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_display_cert_program
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_gen_cert_program
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_gen_sha1hash_program
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_start_server_scripts
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_gen_pubkey_program
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_perf_scripts
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_aes256_encdec_program/openssl_aes256_encdec.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_aes256_encdec_program/desc_openssl_aes256_encdec.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_display_cert_program/openssl_display_cert.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_display_cert_program/desc_openssl_display_cert.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_gen_cert_program/desc_openssl_gen_cert.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_gen_cert_program/openssl_gen_cert.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_gen_sha1hash_program/desc_openssl_gen_sha1hash.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_gen_sha1hash_program/openssl_gen_sha1hash.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_start_server_scripts/openssl_start_server.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_start_server_scripts/desc_openssl_start_server.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_gen_pubkey_program/openssl_gen_pubkey.desktop
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_gen_pubkey_program/desc_openssl_gen_pubkey.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_perf_scripts/desc_openssl_perf.html
      /usr/share/matrix-gui-2.0/apps/cryptos_apps_program/openssl_perf_scripts/openssl_perf.desktop
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_count
      /usr/share/matrix-gui-2.0/apps/power_apps/set_governor
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_ondemand_governor
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_snapshot_1
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_snapshot_2
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_suspend
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_userspace_governor
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_dump_reg
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_count/pm_count.desktop
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_count/desc_pm_count.html
      /usr/share/matrix-gui-2.0/apps/power_apps/set_governor/set-governor.php
      /usr/share/matrix-gui-2.0/apps/power_apps/set_governor/power-set-governor.desktop
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_ondemand_governor/desc_pm_ondemand_governor.html
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_ondemand_governor/pm_ondemand_governor.desktop
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_snapshot_1/desc_pm_snapshot_1.html
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_snapshot_1/pm_snapshot_1.desktop
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_snapshot_2/desc_pm_snapshot_2.html
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_snapshot_2/pm_snapshot_2.desktop
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_suspend/desc_pm_suspend.html
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_suspend/pm_suspend.desktop
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_userspace_governor/desc_pm_userspace_governor.html
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_userspace_governor/pm_userspace_governor.desktop
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_dump_reg/pm_dump_reg.desktop
      /usr/share/matrix-gui-2.0/apps/power_apps/pm_dump_reg/desc_pm_dump_reg.html
    WARNING: QA Issue: ELF binary '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/libav/0.8.9-r0-arago0/packages-split/libavcodec/usr/lib/libavcodec.so.53.35.0' has relocations in .text
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/am-sysinfo/git-r9/packages-split/am-sysinfo/usr/bin/mem_util'
    WARNING: QA Issue: php: Files/directories were installed but not shipped
      /etc/php-fpm.conf
      /etc/apache2
      /etc/init.d
      /etc/apache2/conf.d
      /etc/apache2/conf.d/php-fpm.conf
      /etc/init.d/php-fpm
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/screenshot/1.0-r1/packages-split/screenshot/usr/bin/screenshot'
    WARNING: QA Issue: matrix-gui-pm-demos: Files/directories were installed but not shipped
      /usr/share/matrix-gui-2.0/apps/set_governor
      /usr/share/matrix-gui-2.0/apps/set_governor/set-governor.php
      /usr/share/matrix-gui-2.0/apps/set_governor/power-set-governor.desktop
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/am335x_evm-oe-linux-gnueabi/u-boot-fw-utils/v2014.07+gitAUTOINC+524123a707-r0-arago0/packages-split/u-boot-fw-utils/sbin/fw_setenv'
    WARNING: QA Issue: No GNU_HASH in the elf binary: '/home/nebel/plc_linux/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/am335x_evm-oe-linux-gnueabi/u-boot-fw-utils/v2014.07+gitAUTOINC+524123a707-r0-arago0/packages-split/u-boot-fw-utils/sbin/fw_printenv'
    WARNING: nbench-byte: No generic license file exists for: freely in any provider
    WARNING: nbench-byte: No generic license file exists for: distributable in any provider
    NOTE: Tasks Summary: Attempted 4494 tasks of which 23 didn't need to be rerun and all succeeded.
    
    Summary: There were 103 WARNING messages shown.
    
    real	251m28.402s
    user	693m4.160s
    sys	50m51.736s
    

    Is it necessary to fix these warnings? 

  • Hello Kirill E. ,

    These warnings are informative and expected! It is not necessary to fix them. Your SDK8 tisdk-rootfs-image must be ready now.

    Best regards,
    Kemal
  • In addition I've just seen the first warning which could be important:

    WARNING: TI installer requires 32bit glibc libraries for proper operation
    run 'yum install glibc.i686' on Fedora or 'apt-get install ia32-libs' on Ubuntu/Debian

    You can simply fix it by installing the required package.

  • Hello!

    ia32-libs is not presents in Ubuntu (both 12.04 and 14.04) repositories now:

    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    Package ia32-libs is not available, but is referred to by another package.
    This may mean that the package is missing, has been obsoleted, or
    is only available from another source
    
    E: Package 'ia32-libs' has no installation candidate
    

    The installation method with "old-releases.ubuntu.com/ubuntu " (stackoverflow.com/.../how-to-install-ia32-libs-in-ubuntu-14-04-lts-trusty-tahr) doesn't help too. What packet do you advise to install "gcc-multilib" or "ia32-libs-multiarch" ?

  • Hello!

    ia32-libs is not presents in Ubuntu (both 12.04 and 14.04) repositories now:

    Reading package lists... Done
    Building dependency tree 
    Reading state information... Done
    Package ia32-libs is not available, but is referred to by another package.
    This may mean that the package is missing, has been obsoleted, or
    is only available from another source
    
    E: Package 'ia32-libs' has no installation candidate

    The installation method with "old-releases.ubuntu.com/ubuntu " (stackoverflow.com/.../how-to-install-ia32-libs-in-ubuntu-14-04-lts-trusty-tahr) doesn't help too. What packet do you advise to install "gcc-multilib" or "ia32-libs-multiarch" ?

  • Hi, Kemal!

    I tried to rebuild rootfs in ubuntu 12.04 and there was no "ia-32-libs error".

    Thank you for your help!

  • Hello Kirill E. ,

    Sorry for the late reply.

    I am not sure about 14.04 but there must be available ia32-libs for 12.04

    $ apt-cache policy ia32-libs
    ia32-libs:
      Installed: 20090808ubuntu36
      Candidate: 20090808ubuntu36
      Version table:
     *** 20090808ubuntu36 0
            500 archive.ubuntu.com/ubuntu precise-updates/universe amd64 Packages
            100 /var/lib/dpkg/status
         20090808ubuntu35 0
            500 archive.ubuntu.com/ubuntu precise/universe amd64 Packages
    

    You can also install "gcc-multilib" and "ia32-libs-multiarch", I have both of them installed on my system.

    If you encounter any other difficulties, please feel free to let us know.

    Best regards,

    Kemal

  • Hi,

    I am also trying to build SDK8 rootfs in OE and I am getting following error when meta-arago-amsdk git repo is cloned :

    ankurt@ubuntu:~/am335x/yocto/poky/tisdk$ ./oe-layertool-setup.sh -f configs/amsdk/amsdk-08.00.00.00-config.txt
    /home/ankurt/am335x/yocto/poky/tisdk


    cloning repo bitbake

    Cloning into '/home/ankurt/am335x/yocto/poky/tisdk/sources/bitbake'...
    remote: Counting objects: 34940, done.
    remote: Compressing objects: 100% (108/108), done.
    remote: Total 34940 (delta 57), reused 0 (delta 0), pack-reused 34832
    Receiving objects: 100% (34940/34940), 17.50 MiB | 275 KiB/s, done.
    Resolving deltas: 100% (21596/21596), done.
    Branch 1.22 set up to track remote branch 1.22 from origin.
    Switched to a new branch '1.22'
    Already up-to-date.
    Note: checking out '8e386a710023e000a504e05c13da0106df0c7f3a'.

    You are in 'detached HEAD' state. You can look around, make experimental
    changes and commit them, and you can discard any commits you make in this
    state without impacting any branches by performing another checkout.

    If you want to create a new branch to retain commits you create, you may
    do so (now or later) by using -b with the checkout command again. Example:

    git checkout -b new_branch_name

    HEAD is now at 8e386a7... codeparser: Fix to better catch all getVar references

    cloning repo meta-arago

    Cloning into '/home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago'...
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-af68b35164700421a8651b538048b279d74b4bcc.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-472f1dcd180cc99edaea79bde2415ba69d86d24c.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-0879ecda978a69871c013f6af73fbc2432b315c5.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-c7d65ec7e23307d48dd13394cc7e6849c4bafa83.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-1041fa729036fa25d4d2c3db07c6175effa115a8.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-07a6078da7999773986f481c6ad59bc669ffd26d.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-53445fa7d1d8d4c7f42c6bedfdfe82519e0be964.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-bd6044012ff881936e7846db5c22a5fbd80e2fab.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-9c4e7ae562672d47891fc3aef253ffa37bf985ea.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-0bcb1e41491da2d5c04b305c03fc1951937a7375.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-a1a25741a0a52f9d765f079a42400cd19bc2af4b.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-48d15ae662cfb33c4c84b6851abd4b0f156f3ee8.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-8fc3594c1d133765af528205cd6948c97b32ecbc.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-10552072c47aa48fc35589fa174a02a25e9d4863.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-1debe4c3f68b6a0f45104f88633ec39e75b57ed3.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-4b7718f9122e90d05aa18cb504f17a473c72afb4.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-da3968e4477688c624995744e4c7a339e65050be.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-0d23cfe1b689c63ef17d068f5ed3ebaeed7e799c.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-a54c6dbd4d8396fd397405fdaea915bce28351cc.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-4d2be44c48b328de03583f7a9c1364e887519a25.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-7664b77773e9fe01935871369520ac1a64d2d0b4.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-16acd8790344dab54fe9aa1a5f9b797313e79af5.idx.temp
    error: non-monotonic index /home/ankurt/am335x/yocto/poky/tisdk/sources/meta-arago/.git/objects/pack/pack-836784cca9673f9612fef07f49e8f9ebf24f4a09.idx.temp
    error: Unable to find b08303eca619977b19f9da2cfd07b48beb8b6f22 under arago-project.org/.../meta-arago-amsdk.git
    Cannot obtain needed object b08303eca619977b19f9da2cfd07b48beb8b6f22
    error: Fetch failed.
    ERROR: Could not clone repository at arago-project.org/.../meta-arago-amsdk.git

    How to fix this one ?

    regards
    Ankur
  • Hi,


    Above error was because of network proxy. Without proxy(changed my machine), above step works.

    Now I am stuck after following steps :

    cd oe-layertool-setup
    ./oe-layertool-setup.sh -f configs/amsdk/amsdk-08.00.00.00-config.txt
    cd build
    . conf/setenv
    export PATH=/home/hr5/sdk8_ti/linux-devkit/sysroots/i686-arago-linux/usr/bin:$PATH
    updated conf/local.conf to include qt5
    updated conf/bblayers.conf to include meta-qt5
    MACHINE=am335x-evm bitbake tisdk-rootfs-image

    Get this error :

    ERROR: Function failed: do_install (log file is located at /home/hr5/yocto-ti/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/temp/log.do_install.53377)
    ERROR: Logfile of failure stored in: /home/hr5/yocto-ti/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/temp/log.do_install.53377
    Log data follows:
    | DEBUG: Executing shell function do_install
    | cp: cannot stat `/home/hr5/sdk8_ti/linux-devkit/sysroots/i686-arago-linux/usr/arm-linux-gnueabihf/libc/usr/share/*': No such file or directory
    | WARNING: exit code 1 from a shell command.
    | ERROR: Function failed: do_install (log file is located at /home/hr5/yocto-ti/oe-layersetup/build/arago-tmp-external-linaro-toolchain/work/cortexa8t2hf-vfp-neon-oe-linux-gnueabi/external-linaro-toolchain/2013.03-r2-arago7/temp/log.do_install.53377)
    ERROR: Task 38 (/home/hr5/yocto-ti/oe-layersetup/sources/meta-linaro/meta-linaro-toolchain/recipes-devtools/external-linaro-toolchain/external-linaro-toolchain.bb, do_install) failed with exit code '1'
    NOTE: Tasks Summary: Attempted 203 tasks of which 0 didn't need to be rerun and 1 failed.
    Waiting for 0 running tasks to finish:

    Summary: 1 task failed:
      /home/hr5/yocto-ti/oe-layersetup/sources/meta-linaro/meta-linaro-toolchain/recipes-devtools/external-linaro-toolchain/external-linaro-toolchain.bb, do_install
    Summary: There was 1 WARNING message shown.
    Summary: There was 1 ERROR message shown, returning a non-zero exit code.

    Thanks

    Ankur

  • Hello Ankur,

    Your question will be answered in this thread.

    Thanks,

    Kemal

  • I had the same 'module' object has no attribute 'contains_any' issue with Qt5.4.1 and GLSDK 7.00.004.

    My bitbake was 1.22 I upgraded to 1.26 and that error disappeared.

    I am still getting /qtbase_5.4.1.bb, do_compile) failed with exit code '1'  and presumably similar issues (when I upgraded the bitbake it started a full build and will take many hours).

  • Hello Kirill,

    Did you fix that ia32-libs warnings?

    Best regards,

    Alexandre

  • Howdy...

    I had this problem and solved it by changing bitbake versions

    Open a terminal and navigate to the bitbake folder   ( ~/tisdk/sources/bitbake/ )

    run   $git checkout 1.24

    and you should switch to version 1.24.    One of the previous posters suggested using version 1.26, I assume that you could do $git checkout 1.26 to get to that version.

  • yup, use bitabake 1.26

    or I would suggest to use "arago-daisy-config.txt" and then build tisdk. Don't forget to clean before you start building.
  • You can find the available layer configurations here.