forked from libretro/Lakka-LibreELEC
800557a248
* Downgrade glibc to 2.27 for L4T Builds. * Downgrade binutils to 2.32 for L4T Builds. * Update L4T Project Options * Refactor tegra-bsp package * Import/Rebase CTC's ffmpeg patches, and switch decoder to nvv4l2 from nvmpi. Fixes decoder issues * Enable all disabled cores * Remove hack in busybox package to dump firmware into L4T Builds, we now handle this in tegra-bsp package. * More L4T project cleanups * Bring switch-bootloader package.mk inline with upstream formatting * Fix reboot_payload * Add proper tegra-bsp:init support * Bootloader cleanups, seperate bootloader stuff for libreelec builds * Update init for supporting all distros on Nintendo Switch * Add proper splash images for libreelec builds. * Final bootloader fixes * switch-bootloader-merge-fixes * Fix uboot merge issues * fix bmp * It all builds * add Basic USB Gadget(Serial console only) * Properly fix mtp, and finish gadget stuff
16 lines
561 B
Makefile
16 lines
561 B
Makefile
PKG_NAME="umtp-responder"
|
|
PKG_VERSION="e140e559edc914976e10bcab13d37a56c4c505b2"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/viveris/uMTP-Responder/"
|
|
PKG_URL="https://github.com/viveris/uMTP-Responder.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="Simple MTP responder for linux devices"
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/{usr/bin,etc/umtprd}
|
|
cp ${PKG_BUILD}/umtprd ${INSTALL}/usr/bin/
|
|
cp ${PKG_BUILD}/conf/umtprd.conf ${INSTALL}/etc/umtprd/
|
|
sed -i "s/@DISTRO@/${DISTRO}/g" ${INSTALL}/etc/umtprd/umtprd.conf
|
|
}
|