Kodi Community Forum
v19 Upgrade to Beta - Won't Start - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: BSD (https://forum.kodi.tv/forumdisplay.php?fid=225)
+---- Thread: v19 Upgrade to Beta - Won't Start (/showthread.php?tid=358572)



Upgrade to Beta - Won't Start - vgmedia - 2020-11-21

Hi. I want to update 19a2 to the latest version (according to this guide).
Configuration
Code:
cmake ../kodi-src -DCMAKE_INSTALL_PREFIX=/usr/local -DAPP_RENDER_SYSTEM=gl
and build
Code:
cmake --build . -- VERBOSE=1 -j4
were successful, but at the start of the program
Code:
./kodi.bin
- a segmentation fault.
In core file:
cpp:
(gdb) bt
#0  0x0000000001930df1 in KODI::WINDOWING::X11::CWinSystemX11::InitWindowSystem() ()
#1  0x0000000001399795 in CApplication::CreateGUI() ()
#2  0x00000000010f6c5b in XBMC_Run ()
#3  0x0000000000bd5be6 in main ()
This is the log file when starting Kodi - StartKodi
Previously, it was updated in the same way from alpha 1 to alpha 2 - there were no problems.
Can you please help me?


RE: Upgrade to Beta - Won't Start - lrusak - 2020-11-21

(2020-11-21, 20:04)vgmedia Wrote: Hi. I want to update 19a2 to the latest version (according to this guide).
Configuration
Code:
cmake ../kodi-src -DCMAKE_INSTALL_PREFIX=/usr/local -DAPP_RENDER_SYSTEM=gl
and build
Code:
cmake --build . -- VERBOSE=1 -j4
were successful, but at the start of the program
Code:
./kodi.bin
- a segmentation fault.
In core file:
cpp:
(gdb) bt
#0  0x0000000001930df1 in KODI::WINDOWING::X11::CWinSystemX11::InitWindowSystem() ()
#1  0x0000000001399795 in CApplication::CreateGUI() ()
#2  0x00000000010f6c5b in XBMC_Run ()
#3  0x0000000000bd5be6 in main ()
This is the log file when starting Kodi - StartKodi
Previously, it was updated in the same way from alpha 1 to alpha 2 - there were no problems.
Can you please help me?
Yea this looks like a bug. I never updated the freebsd.xml settings definitions when transitioning to multi-windowing. I'll PR a fix


RE: Upgrade to Beta - Won't Start - lrusak - 2020-11-21

should be fixed in https://github.com/xbmc/xbmc/pull/18835


RE: Upgrade to Beta - Won't Start - vgmedia - 2020-11-22

Thanks.
I deleted file system/settings/freebsd.xml and changed file xbmc/settings/Settings.cpp
cpp:
- #elif defined(TARGET_FREEBSD)
- if (CFile::Exists(SETTINGS_XML_FOLDER "freebsd.xml") && !Initialize(SETTINGS_XML_FOLDER "freebsd.xml"))
- CLog::Log(LOGFATAL, "Unable to load freebsd-specific settings definitions");
- #elif defined(TARGET_LINUX)
+ #elif defined(TARGET_LINUX) || defined(TARGET_FREEBSD)
re-configure and re-build, but nothing has changed. NewStartLog
Am I missing something?