diff --git a/packages/games/emulators/duckstationsa/package.mk b/packages/games/emulators/duckstationsa/package.mk index 62391d49b..2b83428e1 100644 --- a/packages/games/emulators/duckstationsa/package.mk +++ b/packages/games/emulators/duckstationsa/package.mk @@ -21,12 +21,12 @@ esac if [ ! "${OPENGL}" = "no" ]; then PKG_DEPENDS_TARGET+=" ${OPENGL} glu libglvnd" - PKG_CONFIGURE_OPTS_TARGET+=" -DENABLE_X11=OFF" + PKG_CONFIGURE_OPTS_TARGET+=" -DUSE_X11=OFF" fi if [ "${OPENGLES_SUPPORT}" = yes ]; then PKG_DEPENDS_TARGET+=" ${OPENGLES}" - PKG_CONFIGURE_OPTS_TARGET+=" -DENABLE_X11=OFF \ + PKG_CONFIGURE_OPTS_TARGET+=" -DUSE_X11=OFF \ -DUSE_DRMKMS=ON \ -DENABLE_EGL=ON \ -DUSE_MALI=OFF" @@ -34,7 +34,7 @@ fi if [ "${DISPLAYSERVER}" = "wl" ]; then PKG_DEPENDS_TARGET+=" wayland ${WINDOWMANAGER} xorg-server xrandr libXi" - PKG_CONFIGURE_OPTS_TARGET+=" -DENABLE_X11=ON" + PKG_CONFIGURE_OPTS_TARGET+=" -DUSE_X11=ON" fi pre_configure_target() { diff --git a/packages/jelos/sources/autostart/common/003-mount_games b/packages/jelos/sources/autostart/common/003-mount_games index 878bb7aad..2a0e80930 100755 --- a/packages/jelos/sources/autostart/common/003-mount_games +++ b/packages/jelos/sources/autostart/common/003-mount_games @@ -12,7 +12,7 @@ mount_games() { NULL=$(grep ${1} /proc/mounts >/dev/null 2>&1) if [ ! "$?" = "0" ] && [ -e "${1}" ] && [ ! -e "/storage/.please_resize_me" ] then - mount ${1} /storage/roms >/dev/null 2>&1 + mount -o umask=000 ${1} /storage/roms >/dev/null 2>&1 fi }