mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-01-18 21:52:08 +00:00
e76d2cd837
instead of relying on values in retroarch or parsing files to determine the full URL to download updates, it is more flexibile to set these values at build time to the current needs. much easier maintenance of future changes (no need to change in retroarch code base), when e.g. URL for devel or nightly builds will change (or even for releases). also community members can set up their own update for their community builds without the need to patch retroarch. usage: at build time add e.g. LAKKA_BUILD_TYPE=<type>, where type can be release, nightly or devel (can be expanded in future) and based on the build type matching URL will be set. or add LAKKA_UPDATE_SERVER_URL=http://some.site/path/to/updates and this URL will be used. examples make image LAKKA_BUILD_TYPE=nightly PROJECT=... DEVICE=... ARCH=... make image LAKKA_UPDATE_SERVER_URL=... PROJECT=... ...