From 7850e12d0d0fca36e53bc4634afc33361a500e47 Mon Sep 17 00:00:00 2001 From: administratar Date: Fri, 7 Jun 2024 08:19:35 +0200 Subject: [PATCH 1/3] feat(firstboot): add firstboot script --- board/recalbox/fsoverlay/etc/init.d/S12populateshare | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/board/recalbox/fsoverlay/etc/init.d/S12populateshare b/board/recalbox/fsoverlay/etc/init.d/S12populateshare index eb809cd13b..11c90658bd 100755 --- a/board/recalbox/fsoverlay/etc/init.d/S12populateshare +++ b/board/recalbox/fsoverlay/etc/init.d/S12populateshare @@ -300,4 +300,8 @@ recallog -s "${INIT_SCRIPT}" -t "POPULATE" "[14] - CORE LIST" # END +# call postshare.sh script +recallog -s "${INIT_SCRIPT}" -t "POPULATE" "[15] - POST SHARE SCRIPT" +test -e "/boot/postshare.sh" && bash /boot/postshare.sh + stopMpvQueue -- GitLab From 71d282a58361d270e19993d9f3bd2504b7752900 Mon Sep 17 00:00:00 2001 From: administratar Date: Fri, 7 Jun 2024 08:27:16 +0200 Subject: [PATCH 2/3] docs(release-notes): add firstboot to news --- RELEASE-NOTES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 984a653dd9..03a02589ef 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -56,6 +56,7 @@ as release notes for end user on a Recalbox upgrade. - Add libretro-dolphin (MagicSeb) - Add possibility to adjust music volume in EmulationStation - Add en_GB translation (SecularSteve) +- Execute /boot/firstboot.sh on first boot ### Bumps - Bump RetroArch to version 1.15.0 -- GitLab From 5c0ae940964e4c2dfd67e86d65173df2316e6f2b Mon Sep 17 00:00:00 2001 From: administratar Date: Fri, 7 Jun 2024 08:29:00 +0200 Subject: [PATCH 3/3] fix(release-notes): firstboot should be postshare --- RELEASE-NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 03a02589ef..771185ab2c 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -56,7 +56,7 @@ as release notes for end user on a Recalbox upgrade. - Add libretro-dolphin (MagicSeb) - Add possibility to adjust music volume in EmulationStation - Add en_GB translation (SecularSteve) -- Execute /boot/firstboot.sh on first boot +- Execute /boot/postshare.sh on first boot ### Bumps - Bump RetroArch to version 1.15.0 -- GitLab