73dff6fa94
* Add support for RG353V (use RG353P image, enable switch in system settings). * Fix language selection bug. * Fix another brightness bug. * Fix shader build conflict. * Force Retroarch to use glcore on the RG552 if GL is still enabled.
19 lines
418 B
Makefile
19 lines
418 B
Makefile
# Copyright (C) 2021-present Fewtarius
|
|
|
|
PKG_NAME="device-switch"
|
|
PKG_VERSION=""
|
|
PKG_SHA256=""
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="mix"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_SITE=""
|
|
PKG_URL=""
|
|
PKG_LONGDESC="Support script for switching 353P to 353V."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
makeinstall_target() {
|
|
|
|
mkdir -p ${INSTALL}/usr/bin
|
|
cp ${PKG_DIR}/sources/scripts/device-switch ${INSTALL}/usr/bin
|
|
chmod 0755 ${INSTALL}/usr/bin/*
|
|
}
|