macchina-io / macchina.io

macchina.io EDGE is a powerful C++ and JavaScript SDK for edge devices, multi-service IoT gateways and connected embedded systems.
https://macchina.io
GNU General Public License v3.0
515 stars 154 forks source link

Cross compiling macchina.io for Armadeus Opos6ul development board #91

Closed zaleksa closed 2 years ago

zaleksa commented 5 years ago

I am trying to cross-compile macchina.io for Armadeus Opos6ul development board on Ubuntu 14.04 LTS, following instructions from https://macchina.io/docs/00150-MacchinaGettingStarted.html.

The steps I've made are:

$ git clone https://github.com/macchina-io/macchina.io.git $ cd macchina.io $ git checkout master $ sudo apt-get install g++ make libssl-dev python $ make -s -j2 hosttools

$ export CROSS_COMPILE=arm-linux-gnueabihf $ export PATH=~/Opossom/armadeus-7.0/buildroot/output/host/opt/ext-toolchain/bin/:$PATH $ export PATH=/usr/include/:$PATH

$ POCO_CONFIG=opos6ul POCO_BUILD=~/macchina.io/opos6ul LINKMODE=SHARED make -s -j2 DEFAULT_TARGET=shared_release

Config file opos6ul is the copy of ~/macchina.io/platform/build/config/ARM-Linux, with changed TOOL parameter: TOOL ?= arm-linux-gnueabihf

After awhile I got the following error message:

** Compiling src/Cipher.cpp (release, shared) In file included from include/Poco/Crypto/Cipher.h:21:0, from src/Cipher.cpp:15: include/Poco/Crypto/Crypto.h:30:30: fatal error: openssl/opensslv.h: No such file or directory

include <openssl/opensslv.h>

                          ^

compilation terminated. make[2]: [/home/aleksa/macchina.io/opos6ul/Crypto/obj/Linux/armv7l/release_shared/Cipher.o] Error 1 make[1]: [Crypto-libexec] Error 2 make[1]: Waiting for unfinished jobs.... TOUCH a284a2707a6b338a425a77b7230908067f4c87c4.intermediate ACTION Generating inspector protocol sources from protocol json a284a2707a6b338a425a77b7230908067f4c87c4.intermediate make: [clean] Error 2

I've searched for this type of problem and found that this can be overcome by installing libssl-dev, which I've already installed.

$ sudo apt-get install libssl-dev Reading package lists... Done Building dependency tree
Reading state information... Done libssl-dev is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. $

Do you have idea what am I doing wrong?

Aleksandar

zaleksa commented 5 years ago

I've made some progress in cross-compiling macchina.io for Armadeus Opos6ul development board.

Linker was unable to find header files for openssl although their paths are in PATH variable. I've tried to export openssl header files from Buildroot environment, but it doesn't give any success:

export PATH=~/Opossom/armadeus-7.0/buildroot/output/build/openssl-1.0.2o/include/:$PATH export PATH=~/Opossom/armadeus-7.0/buildroot/output/build/openssl-1.0.2o/:$PATH

So, I've manually copied openssl header files from Buildroot to macchina.io/platform/Crypto/include directory. Also, I've copied libssl.so and libcrypto.so files to macchina.io/platform/lib/Linux/armv7a directory.

Then I've issued following command:

$ POCO_CONFIG=opos6ul POCO_BUILD=~/macchina.io/opos6ul LINKMODE=SHARED make -s -j2 DEFAULT_TARGET=shared_release

After awhile I got the following error message:

Building dynamic library (release, shared) /home/aleksa/macchina.io/platform/OSP/Crypto/bin/Linux/armv7a/poco.crypto.so Building dynamic library (release, shared) /home/aleksa/macchina.io/platform/OSP/Core/bin/Linux/armv7a/osp.core.so sh: /home/aleksa/macchina.io/platform/OSP/BundleCreator/bin/Linux/x86_64/bundle: No such file or directory sh: /home/aleksa/macchina.io/platform/OSP/BundleCreator/bin/Linux/x86_64/bundle: No such file or directory make[2]: ** [/home/aleksa/macchina.io/platform/OSP/Core/bin/Linux/armv7a/osp.core.so] Error 127make[2]: [/home/aleksa/macchina.io/platform/OSP/Crypto/bin/Linux/armv7a/poco.crypto.so] Error 127

make[1]: [OSP/Core-libexec] Error 2 make[1]: Waiting for unfinished jobs.... make[1]: [OSP/Crypto-libexec] Error 2 make: [clean] Error 2

Why BundleCreator is trying to call bundle in x86_64 directory? Should it call bundle in armv7a directory? This files exists in macchina.io/platform/OSP/BundleCreator/bin/Linux/armv7a.

It seems to me that 'make' is mixing x86_64 and armv7a architectures.

Somehow, in several tries of compiling macchina.io I've succeeded to compile it and run on target. But, after unpacking and resolving bundles, OSP reported error while activating bundles. I suppose this is due to bundles are maybe created for x86_64 architecture, not for armv7a as it should.

Does anyone have an idea of ​​where I'm wrong?

p.s. This is the listing of starting macchina.io on the target platform:

export LD_LIBRARY_PATH=/root/macchina_root/lib:/root/macchina_root/bin/codeCac he
/root/macchina_root/bin/macchina --config=/root/macchina_root/etc/macchina.pro perties

1970-01-01 06:57:05.533 [Information] osp.core.ServiceRegistry<0>: Service regip 1970-01-01 06:57:05.535 [Information] osp.core.ServiceRegistry<0>: Service regis 1970-01-01 06:57:05.535 [Information] osp.core.ServiceRegistry<0>: Service regir 1970-01-01 06:57:05.535 [Information] Application<0>: Loading bundles...
1970-01-01 06:57:05.971 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.972 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.972 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.973 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.973 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.974 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.974 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.975 [Information] com.osp.BundleRepository<0>: Loaded bundl1 1970-01-01 06:57:05.975 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.976 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.977 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.977 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.978 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.978 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.979 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.979 [Information] com.osp.BundleRepository<0>: Loaded bundl1 1970-01-01 06:57:05.980 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.980 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.981 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.981 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.982 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.982 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.983 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.983 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.984 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.984 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.985 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.985 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.986 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.987 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.987 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.988 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.988 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:05.989 [Information] com.osp.BundleRepository<0>: Loaded bundl8 1970-01-01 06:57:05.989 [Information] com.osp.BundleRepository<0>: Loaded bundl7 1970-01-01 06:57:05.990 [Information] com.osp.BundleRepository<0>: Loaded bundl5 1970-01-01 06:57:06.324 [Information] com.osp.BundleRepository<0>: Loaded bundl9 1970-01-01 06:57:06.326 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.328 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.329 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.330 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.332 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.333 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.334 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.336 [Information] com.osp.BundleRepository<0>: Loaded bundl4 1970-01-01 06:57:06.337 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.338 [Information] com.osp.BundleRepository<0>: Loaded bundl1 1970-01-01 06:57:06.340 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.341 [Information] com.osp.BundleRepository<0>: Loaded bundl1 1970-01-01 06:57:06.342 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.344 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.345 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.346 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.348 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.349 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.350 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.352 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.353 [Information] com.osp.BundleRepository<0>: Loaded bundl1 1970-01-01 06:57:06.354 [Information] com.osp.BundleRepository<0>: Loaded bundl3 1970-01-01 06:57:06.356 [Information] com.osp.BundleRepository<0>: Loaded bundl3 1970-01-01 06:57:06.357 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.358 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.360 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.361 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.362 [Information] com.osp.BundleRepository<0>: Loaded bundl0 1970-01-01 06:57:06.364 [Information] Application<0>: Resolving bundles...
1970-01-01 06:57:06.365 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:06.368 [Information] osp.core.BundleLoader<0>: Bundle poco.datd 1970-01-01 06:57:06.369 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:06.370 [Information] osp.core.BundleLoader<0>: Bundle poco.netd 1970-01-01 06:57:06.371 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:06.373 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:06.374 [Information] osp.core.BundleLoader<0>: Bundle osp.web d 1970-01-01 06:57:06.375 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:06.709 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:06.710 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:06.712 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:06.713 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.714 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.715 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.717 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.718 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.719 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.720 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.721 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.723 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.724 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.725 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.727 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.728 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.729 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.730 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.732 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.733 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.734 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.735 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.738 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.739 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.740 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.740 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.741 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.742 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.742 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.743 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.743 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.744 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.745 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.745 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.746 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.747 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:06.747 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.081 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.083 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.084 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.085 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.086 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.088 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.089 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.090 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.091 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.092 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.094 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.095 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.097 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.098 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.099 [Information] osp.core.BundleLoader<0>: Bundle osp.cored 1970-01-01 06:57:07.100 [Information] osp.core.BundleLoader<0>: Bundle osp.web.d 1970-01-01 06:57:07.102 [Information] osp.core.BundleLoader<0>: Bundle poco.cryd 1970-01-01 06:57:07.103 [Information] osp.core.BundleLoader<0>: Bundle poco.netd 1970-01-01 06:57:07.104 [Information] osp.core.BundleLoader<0>: Bundle osp.web.d 1970-01-01 06:57:07.105 [Information] osp.core.BundleLoader<0>: Bundle poco.datd 1970-01-01 06:57:07.107 [Information] Application<0>: Starting bundles...
1970-01-01 06:57:07.114 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.116 [Information] osp.core.BundleLoader<0>: Bundle poco.netd 1970-01-01 06:57:07.119 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.122 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.125 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.129 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.130 [Information] osp.core.BundleLoader<0>: Bundle osp.cored 1970-01-01 06:57:07.133 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.134 [Information] osp.core.BundleLoader<0>: Bundle osp.web d 1970-01-01 06:57:07.137 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.472 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.475 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.478 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.481 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.484 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.488 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.489 [Information] osp.core.BundleLoader<0>: Bundle poco.datd 1970-01-01 06:57:07.492 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.493 [Information] osp.core.BundleLoader<0>: Bundle poco.cryd 1970-01-01 06:57:07.496 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.500 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.501 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:07.502 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:07.512 [Error] osp.core.xp<0>: Error handling extension point e 1970-01-01 06:57:07.519 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.521 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.522 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.524 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.525 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.527 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.529 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.864 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.867 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.869 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.871 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.874 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.876 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:07.881 [Error] osp.core.xp<0>: Error handling extension point r 1970-01-01 06:57:07.884 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.886 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.889 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.892 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.895 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.899 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.900 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.901 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.903 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.903 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:07.905 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.907 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:07.908 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:08.243 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:08.247 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:08.250 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:08.253 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:08.256 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:08.260 [Error] osp.core.BundleLoader<0>: Failed to start bundly 1970-01-01 06:57:08.261 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.265 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.268 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.273 [Error] osp.core.xp<0>: Error handling extension point r 1970-01-01 06:57:08.274 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.277 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.281 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.283 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.288 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.290 [Information] osp.core.BundleLoader<0>: Bundle com.appid 1970-01-01 06:57:08.294 [Error] osp.core.xp<0>: Error handling extension point e 1970-01-01 06:57:08.297 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.301 [Error] osp.core.xp<0>: Error handling extension point r 1970-01-01 06:57:08.303 [Error] osp.core.xp<0>: Error handling extension point s 1970-01-01 06:57:08.305 [Error] osp.core.xp<0>: Error handling extension point s 1970-01-01 06:57:08.307 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.309 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.313 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.647 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.650 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.651 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.653 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.654 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.657 [Error] osp.core.xp<0>: Error handling extension point r 1970-01-01 06:57:08.658 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.659 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.661 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.663 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.665 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.666 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.669 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.670 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.671 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.672 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.674 [Error] osp.core.xp<0>: Error handling extension point r 1970-01-01 06:57:08.675 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.677 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.679 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.680 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.683 [Error] osp.core.xp<0>: Error handling extension point r 1970-01-01 06:57:08.684 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:08.685 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:08.688 [Error] osp.core.xp<0>: Error handling extension point r 1970-01-01 06:57:09.024 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:09.025 [Error] osp.core.xp<0>: Error handling extension point r 1970-01-01 06:57:09.027 [Information] osp.core.BundleLoader<0>: Bundle io.macchd 1970-01-01 06:57:09.029 [Error] osp.core.xp<0>: Error handling extension point r 1970-01-01 06:57:09.030 [Error] osp.core.xp<0>: Error handling extension point y 1970-01-01 06:57:09.031 [Information] Application<0>: Startup complete.
1970-01-01 06:57:09.032 [Information] Application<0>: Settings loaded from "/ro. 1970-01-01 06:57:09.034 [Information] Application<0>: System information: Linux.

Thanks,

Aleksandar