Lakka-v6.1: Add LakkaSimpleClock libretoro core for Date & Time adjustment#2229
Open
ShigeakiAsai wants to merge 3 commits into
Open
Lakka-v6.1: Add LakkaSimpleClock libretoro core for Date & Time adjustment#2229ShigeakiAsai wants to merge 3 commits into
ShigeakiAsai wants to merge 3 commits into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds LakkaSimpleClock libretoro core for the system Date & Time adjustment
"Lakka is a lightweight Linux distribution that transforms a small computer into a full blown game console."
The frontend retroarch of Lakka has no function of Date & Time adjustment.
This LakkaSimpleClock libretoro core adds to support Date & Time adjustment function.
And it also adds "Date & Time" into Lakka setting menu on Lakka frontend.
Note.
Nintendo Switch port can't set date and time, please see the following [Restriction].
[Function]
When this menu item is selected by user, retroarch starts LakkaSimpleClock libretoro core immediately.
Because avoid conflicts with NTP time synchronization.
The edit mode is enabled by "START" button push on your controller.
[Build]
All devices build are passed with no failure
# [Allwinner]
- DISTRO=Lakka PROJECT=Allwinner DEVICE=A64 ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=Allwinner DEVICE=H2-plus ARCH=arm make image
- DISTRO=Lakka PROJECT=Allwinner DEVICE=H3 ARCH=arm make image
- DISTRO=Lakka PROJECT=Allwinner DEVICE=H5 ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=Allwinner DEVICE=H6 ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=Allwinner DEVICE=R40 ARCH=arm make image
# [Amlogic]
- DISTRO=Lakka PROJECT=Amlogic DEVICE=AMLGX ARCH=aarch64 make image
# [Ayn]
- DISTRO=Lakka PROJECT=Ayn DEVICE=Odin ARCH=aarch64 make image
# [Generic]
- DISTRO=Lakka PROJECT=Generic DEVICE=Generic ARCH=i386 make image
- DISTRO=Lakka PROJECT=Generic DEVICE=Generic ARCH=x86_64 make image
- DISTRO=Lakka PROJECT=Generic DEVICE=wayland ARCH=x86_64 make image
- DISTRO=Lakka PROJECT=Generic DEVICE=x11 ARCH=x86_64 make image
# [Nintendo-Switch]
- DISTRO=Lakka PROJECT=L4T DEVICE=Switch ARCH=aarch64 make image
# [NXP]
- DISTRO=Lakka PROJECT=NXP DEVICE=iMX6 ARCH=arm make image
- DISTRO=Lakka PROJECT=NXP DEVICE=iMX8 ARCH=aarch64 make image
# [RPi]
- DISTRO=Lakka PROJECT=RPi DEVICE=RPi ARCH=arm make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPi2 ARCH=arm make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPi3 ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPi3-Composite ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPi4 ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPi4-Composite ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPi4-GPiCase2 ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPi4-PiBoyDmg ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPi4-RetroDreamer ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPi5 ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPi5-Composite ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPiZero-GPiCase ARCH=arm make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPiZero2-GPiCase ARCH=arm make image
- DISTRO=Lakka PROJECT=RPi DEVICE=RPiZero2-GPiCase2W ARCH=aarch64 make image
# [Rockchip]
- DISTRO=Lakka PROJECT=Rockchip DEVICE=RK3288 ARCH=arm make image
- DISTRO=Lakka PROJECT=Rockchip DEVICE=RK3326 ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=Rockchip DEVICE=RK3328 ARCH=aarch64 make image
- DISTRO=Lakka PROJECT=Rockchip DEVICE=RK3399 ARCH=aarch64 make image
# [Samsung]
- DISTRO=Lakka PROJECT=Samsung DEVICE=Exynos ARCH=arm make image
[Test]
a) retroarch is able to start
b) LakkaSimpleClock is able to start via retroarch "Date & Time" menu
c) it detects network online/offline
d) it changes edit mode when push "START" button on controller
e) it is able to change date and time when edit mode
f) LakkaSimpleClock is able to exit by push "SELECT" button on controller
g) chaned date & time is set in Lakkasystem
[Restriction]
I will look into it, but there is a possibility that I may not be able to help.
Thanks
ASAI, Shigeaki