diff --git a/packages/jelos/sources/autostart/autostart b/packages/jelos/sources/autostart/autostart index 42303fb35..519ae60dc 100755 --- a/packages/jelos/sources/autostart/autostart +++ b/packages/jelos/sources/autostart/autostart @@ -41,7 +41,7 @@ then done fi -clear +clear >/dev/console DEVICE_CPU_GOVERNOR=$(get_setting system.cpugovernor) ${DEVICE_CPU_GOVERNOR} 2>&1 >>${BOOTLOG} diff --git a/packages/jelos/sources/scripts/run b/packages/jelos/sources/scripts/run index 5f8f90e9a..0876d9149 100755 --- a/packages/jelos/sources/scripts/run +++ b/packages/jelos/sources/scripts/run @@ -7,8 +7,7 @@ then else systemctl stop ${UI_SERVICE} exec 1>/dev/console - exec 2>/dev/null - ${1} + "${1}" 2>/dev/null fi if [ ! "${UI_SERVICE}" = "weston.service" ] then diff --git a/packages/misc/modules/sources/gamelist.xml b/packages/misc/modules/sources/gamelist.xml index 72d5ef524..1c15798ea 100755 --- a/packages/misc/modules/sources/gamelist.xml +++ b/packages/misc/modules/sources/gamelist.xml @@ -15,7 +15,7 @@ - run ./cloud_backup.sh + ./cloud_backup.sh Cloud Backup Backup your saves to a cloud drive. JELOS @@ -28,7 +28,7 @@ - run ./cloud_restore.sh + ./cloud_restore.sh Cloud Restore Restores your saves from a cloud drive. JELOS @@ -119,7 +119,7 @@ - run ./Remove ._ Files.sh + ./Remove ._ Files.sh Run Remove ._ Files Removes hidden ._ files created by the MacOS filesystem JELOS diff --git a/packages/tools/SDL2_image/package.mk b/packages/tools/SDL2_image/package.mk index 31cba0dce..08313928c 100644 --- a/packages/tools/SDL2_image/package.mk +++ b/packages/tools/SDL2_image/package.mk @@ -7,7 +7,7 @@ PKG_VERSION="2.0.5" #PKG_SHA256="" PKG_LICENSE="GPL" PKG_SITE="http://www.libsdl.org/" -PKG_URL="https://www.libsdl.org/projects/SDL_image/release/SDL2_image-$PKG_VERSION.tar.gz" -PKG_DEPENDS_TARGET="toolchain SDL2" +PKG_URL="https://www.libsdl.org/projects/SDL_image/release/SDL2_image-${PKG_VERSION}.tar.gz" +PKG_DEPENDS_TARGET="toolchain SDL2 libjpeg-turbo libpng" PKG_LONGDESC="SDL_image is an image file loading library. "