Rename RK3399 kernel to be more inline with standards, hide moonlight S922X

This commit is contained in:
mason 2023-07-27 14:13:53 +00:00
parent 2e436e2de2
commit cddecc5099
No known key found for this signature in database
GPG key ID: 84D9278A11FA112B
3 changed files with 1526 additions and 51 deletions

View file

@ -3,7 +3,7 @@
# Copyright (C) 2020-present Fewtarius
PKG_NAME="emulationstation"
PKG_VERSION="9e42208"
PKG_VERSION="e79f16f231795523fdb4752726a2b2d5c3ee51d3"
PKG_GIT_CLONE_BRANCH="main"
PKG_REV="1"
PKG_ARCH="any"
@ -17,12 +17,11 @@ PKG_BUILD_FLAGS="-gold"
GET_HANDLER_SUPPORT="git"
PKG_PATCH_DIRS+="${DEVICE}"
if [ ! "${OPENGL}" = "no" ]; then
if [[ "${OPENGL_SUPPORT}" = "yes" ]] && [[ ! "${DEVICE}" = "S922X" ]]; then
PKG_DEPENDS_TARGET+=" ${OPENGL} glu"
PKG_CMAKE_OPTS_TARGET+=" -DGL=1"
fi
if [ ! "${OPENGLES_SUPPORT}" = no ]; then
elif [ "${OPENGLES_SUPPORT}" = "yes" ]; then
PKG_DEPENDS_TARGET+=" ${OPENGLES}"
PKG_CMAKE_OPTS_TARGET+=" -DGLES2=1"
fi

View file

@ -30,7 +30,7 @@
KERNEL_TARGET="Image"
BOOTLOADER="u-boot"
PARTITION_TABLE="msdos"
DEVICE_DTB=("rk3399-rg552-linux")
DEVICE_DTB=("rk3399-anbernic-rg552")
UBOOT_DTB="${DEVICE_DTB[0]}"
UBOOT_CONFIG="evb-rk3399_defconfig"
PKG_SOC="rk3399"