Posts: 7
Joined: Aug 2008
Reputation:
0
Hi, the download link is offline. Could you please share the file again?
Posts: 51
Joined: Jan 2010
Reputation:
0
2020-03-30, 16:08
(This post was last modified: 2020-03-30, 16:09 by bolzerrr.)
Again offline.. would you upload it again?
Posts: 3,545
Joined: Mar 2010
Reputation:
120
I've stopped using dropbox and have uploaded it to github - first post has been updated.
Posts: 51
Joined: Jan 2010
Reputation:
0
Thank you i will take a look and try. The file is access restricted, can you publish it?
Posts: 3,545
Joined: Mar 2010
Reputation:
120
Sorry about that, link has been updated
Posts: 51
Joined: Jan 2010
Reputation:
0
2020-04-02, 11:56
(This post was last modified: 2020-04-02, 17:34 by bolzerrr.)
Thank you, worked for me.
I had to adjust some certain stuff including to recompile as some directories are different to openelec. It seems i am very close but one thing fails, I can`t load a certain lib:
/storage/.kodi/addons/script.reboot2oos-oe/bin/grub-editenv: error while loading shared libraries: libdevmapper.so.1.02.1: cannot open shared object file: No such file or directory
I took the file from the compiling os but cant add it as the /lib folder is write protected on LE. I added a custom dir to the $LD_LIBRARY_PATH with the file inside but didn`t work either.
I also tried to add a custom lib dir to the compilation configuration:
./configure --libdir=/storage/.kodi/addons/script.reboot2oos-oe/lib --exec-prefix=/storage/.kodi/addons/script.reboot2oos-oe --prefix=/storage/.kodi/addons/script.reboot2oos-oe --sbindir=/storage/.kodi/addons/script.reboot2oos-oe/bin --disable-grub-mkfont
But also doesn`t work. Do you mabe have further ideas?
UPDATE: Made it work with "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/storage/.kodi/addons/script.reboot2oos-oe/bin/lib" and execute from cli. Still looking for a way to add a custom lib path to the build of grub...