RIAPS / riaps-integration

Tested collection of RIAPS packages for releases
Apache License 2.0
6 stars 3 forks source link

Base RIAPS SD Card Image Creation fails #61

Closed shekharshank closed 4 years ago

shekharshank commented 4 years ago

Base RIAPS SD Card Image Creation fails due to few errors during the execution of base_bbb_bootstrap.sh related to dependency and file location. Attaching slightly modified script which works. base_bbb_bootstrap.sh.txt

MMetelko commented 4 years ago

Thank you for the catch on the touch statement. I am curious about the need for the other two changes.

1) In opendht_prereqs_install, why did you comment out the change into the arm library directory? This was done to go back an setup incremental links to the .lib file. For libgnutls and libmsgpackc, there were no base .so links in the installation (i.e. libgnutls.so.30 and libmsgpackc.so.2 needed a libgnutls.so and libmsgpackc.so soft links to correctly install the opendht library.

2) Why did you have to move the "other_pip3_installs" up further in the list? I do not see where anything from that was needed by the calls in front of it.

shekharshank commented 4 years ago
  1. After opendht_prereqs_install is externals_cmake_install and it fails at

cp CMakeLists.txt /tmp/3rdparty/ as the script is in a different working directory

opendht_prereqs_install did not fail after the change, however, if the cd is necessary, then an alternative could be to give path of CMakeLists.txt in externals_cmake_install

  1. pybind11 is needed earlier which is installed by other_pip3_installs
MMetelko commented 4 years ago

Thank you very much for the suggestion! As you can imagine, as thing evolve it gets harder to check everything with each release. This script has been maintained, but not run fresh lately. I really appreciate you providing input back.

shekharshank commented 4 years ago

You are welcome. I am working actively on RIAPS, so I would keep reporting issues I encounter. Thanks for your help.