Merge pull request #234 from JustEnoughLinuxOS/dev

Merge to main for release
This commit is contained in:
fewtarius 2022-06-29 19:09:48 -04:00 committed by GitHub
commit f7f7724412
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 33 deletions

View file

@ -1,14 +0,0 @@
--- a/yabause/src/retro_arena/main.cpp
+++ b/yabause/src/retro_arena/main.cpp
@@ -263,9 +263,9 @@ int yabauseinit()
yinit.rbg_use_compute_shader = pre.getBool( "Use compute shader" , false);
#endif
- yinit.use_cpu_affinity = 1;
+ yinit.use_cpu_affinity = 0;
- yinit.use_sh2_cache = 1;
+ yinit.use_sh2_cache = 0;
res = YabauseInit(&yinit);
if( res == -1) {

View file

@ -2,7 +2,7 @@
# Copyright (C) 2020-present Fewtarius
PKG_NAME="moonlight"
PKG_VERSION="5fe7b36b4004c93d916e38183d58a2e9f6d5b9d6"
PKG_VERSION="543dc087fce7473b87bbaef47a350c49f8aa3fd1"
PKG_ARCH="any"
PKG_LICENSE="GPLv3"
PKG_SITE="https://github.com/moonlight-stream/moonlight-embedded"

View file

@ -2,7 +2,7 @@
# Copyright (C) 2022-present BrooksyTech (https://github.com/brooksytech)
PKG_NAME="jelosaddons"
PKG_VERSION="cc4226d9d44c132a006a1cd4c55457884e758c8d"
PKG_VERSION="56a4ada71dcd0d0cf1c6ba5c2058449f4ae4fcb2"
PKG_ARCH="any"
PKG_SITE="https://github.com/brooksytech/JelosAddOns"
PKG_URL="${PKG_SITE}/raw/${PKG_VERSION}/JelosAddOns.zip"

View file

@ -1,11 +0,0 @@
#!/bin/bash
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2021-present kkoshelev (https://github.com/kkoshelev)
. /etc/profile
if [ "$(get_setting tailscale.up)" == "1" ]
then
set_setting tailscale.up 0
nohup tailscale down &
fi

View file

@ -16,9 +16,9 @@ pre_unpack() {
}
makeinstall_target() {
mkdir -p ${INSTALL}/usr/bin/
cp ${PKG_BUILD}/tailscale ${INSTALL}/usr/bin/
cp ${PKG_BUILD}/tailscaled ${INSTALL}/usr/bin/
mkdir -p ${INSTALL}/usr/sbin/
cp ${PKG_BUILD}/tailscale ${INSTALL}/usr/sbin/
cp ${PKG_BUILD}/tailscaled ${INSTALL}/usr/sbin/
mkdir -p ${INSTALL}/usr/config
cp -R ${PKG_DIR}/config/tailscaled.defaults ${INSTALL}/usr/config

View file

@ -6,9 +6,9 @@ After=network-pre.target
[Service]
EnvironmentFile=/storage/.config/tailscaled.defaults
ExecStartPre=/usr/bin/tailscaled --cleanup
ExecStart=/usr/bin/tailscaled --state=/var/lib/tailscale/tailscaled.state --socket=/run/tailscale/tailscaled.sock --port $PORT $FLAGS
ExecStopPost=/usr/bin/tailscaled --cleanup
ExecStartPre=/usr/sbin/tailscaled --cleanup
ExecStart=/usr/sbin/tailscaled --state=/storage/.cache/tailscale/tailscaled.state --socket=/run/tailscale/tailscaled.sock --port $PORT $FLAGS
ExecStopPost=/usr/sbin/tailscaled --cleanup
Restart=on-failure