Browse Source

RG350 buildroot: Only build dependencies

Previously, there was an issue with the RG350 buildroot that necessitated building the entire thing.
That issue has been fixed and we can now build only the minimal set of dependencies (same as we do for RetroFW).
pull/545/head
Gleb Mazovetskiy 6 years ago committed by Anders Jenbo
parent
commit
3eb820c341
  1. 6
      Packaging/OpenDingux/build.sh

6
Packaging/OpenDingux/build.sh

@ -60,11 +60,7 @@ make_buildroot() {
cp buildroot_${TARGET}_defconfig "$BUILDROOT/configs/${TARGET}_devilutionx_defconfig"
cd "$BUILDROOT"
make ${TARGET}_devilutionx_defconfig
if [[ "$TARGET" == "rg350" ]]; then
BR2_JLEVEL=0 make
else
BR2_JLEVEL=0 make toolchain libzip sdl sdl_mixer sdl_ttf
fi
BR2_JLEVEL=0 make toolchain libzip sdl sdl_mixer sdl_ttf
cd -
}

Loading…
Cancel
Save