73b7b358e8
* Creates a new directory structure for games: * Internal Storage (or tf1): /storage/games-internal * External MicroSD: /storage/games-external * Combined Path: /storage/roms * Games copied to /storage/roms will be saved to /storage/games-internal. * Samba has been updated to present both volumes for network access. * EmulationStation now has an eject option under System Settings -> Hardware /Storage. * When a compatible microsd is inserted, JELOS will automatically add it to the overlay, making the content available to ES after a gamelist update or an ES restart. * Udevil will no longer mount microsd cards to /run/media, however it will still handle mounting all other external storage. * After the update, JELOS will automatically migrate your current roms directory once. * Additionally the hotkey management feature has moved from System Settings to Controller and Bluetooth Settings. * The rom split tool is now deprecated as it is no longer needed.
48 lines
1.1 KiB
Bash
Executable file
48 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
### If you add a variable that should persist across processes,
|
|
### remember to export it here.
|
|
|
|
export SLOW_CORES \
|
|
FAST_CORES \
|
|
CPU_FREQ \
|
|
DMC_FREQ \
|
|
GPU_FREQ \
|
|
DEVICE_AUDIO_MIXER \
|
|
DEVICE_BASE_TDP \
|
|
DEVICE_BRIGHTNESS \
|
|
DEVICE_BATTERY_LED_STATUS \
|
|
DEVICE_FAKE_JACKSENSE \
|
|
DEVICE_FUNC_KEYA_MODIFIER \
|
|
DEVICE_FUNC_KEYB_MODIFIER \
|
|
DEVICE_HAS_FAN \
|
|
DEVICE_HAS_HDMI \
|
|
DEVICE_HDMI_GPIO \
|
|
DEVICE_HEADPHONE_DEV \
|
|
DEVICE_JACK \
|
|
DEVICE_KEY_VOLUMEDOWN \
|
|
DEVICE_KEY_VOLUMEUP \
|
|
DEVICE_LED_BRIGHTNESS \
|
|
DEVICE_LED_CONTROL \
|
|
DEVICE_MMC_EJECT \
|
|
DEVICE_PIPEWIRE_PROFILE \
|
|
DEVICE_PWR_LED_CONTROL \
|
|
DEVICE_PWR_LED_GPIO \
|
|
DEVICE_PLAYBACK_PATH \
|
|
DEVICE_PLAYBACK_PATH_HP \
|
|
DEVICE_PLAYBACK_PATH_SPK \
|
|
DEVICE_POWER_LED \
|
|
DEVICE_PWM_FAN \
|
|
DEVICE_PWM_MOTOR \
|
|
DEVICE_ROTATED_SDL \
|
|
DEVICE_SW_HP_SWITCH \
|
|
DEVICE_TEMP_SENSOR \
|
|
DEVICE_VOLUME \
|
|
DEVICE_VOLUMECTL \
|
|
DEVICE_WIFI \
|
|
HDMI_DETECT_PATTERN \
|
|
HDMI_STATE \
|
|
PANEL_FULL_OFF \
|
|
UI_SERVICE
|