gmenu2x: no clock and menu that switches to retrofe, Retrofe: clock and menu that switches to gmenu2x
This commit is contained in:
parent
7cb240543f
commit
bc9b87f2e1
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Busybox version: 1.31.1
|
||||
# Mon Nov 9 00:34:05 2020
|
||||
# Tue Nov 24 08:37:01 2020
|
||||
#
|
||||
CONFIG_HAVE_DOT_CONFIG=y
|
||||
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Check number of args
|
||||
if [ ${#} -ne 1 ]; then
|
||||
echo "Usage: $(basename ${0}) launcher"
|
||||
echo " launcher: retrofe, gmenu2x"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Check Launcher
|
||||
LAUNCHER=${1}
|
||||
if [ ${LAUNCHER} == "gmenu2x" ]; then
|
||||
echo "Setting default launcher: gmenu2x"
|
||||
touch /mnt/gmenu2x
|
||||
elif [ ${LAUNCHER} == "retrofe" ]; then
|
||||
echo "Setting default launcher: retrofe"
|
||||
rm -rf /mnt/gmenu2x
|
||||
else
|
||||
echo "Usage: $(basename ${0}) launcher"
|
||||
echo " launcher: retrofe, gmenu2x"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
exit 0
|
|
@ -89,4 +89,3 @@ BR2_PACKAGE_HOST_UBOOT_TOOLS=y
|
|||
BR2_PACKAGE_LIBOPK=y
|
||||
BR2_PACKAGE_LIBXDGMIME=y
|
||||
BR2_PACKAGE_GMENU2X=y
|
||||
BR2_PACKAGE_GMENU2X_SHOW_CLOCK=y
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# gmenu2x
|
||||
#
|
||||
#############################################################
|
||||
GMENU2X_VERSION = 4802749
|
||||
GMENU2X_VERSION = 7032045
|
||||
GMENU2X_SITE_METHOD = git
|
||||
GMENU2X_SITE = https://github.com/FunKey-Project/gmenu2x.git
|
||||
GMENU2X_LICENSE = GPL-2.0
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
################################################################################
|
||||
|
||||
RETROFE_VERSION = RetroFE-FunKey-1.00
|
||||
RETROFE_VERSION = 9dad33d
|
||||
RETROFE_SITE_METHOD = git
|
||||
RETROFE_SITE = https://github.com/FunKey-Project/RetroFE.git
|
||||
RETROFE_DEPENDENCIES = gstreamer1 gst1-plugins-base sdl sdl_image sdl_mixer sdl_sound sdl_ttf libglib2 sqlite zlib
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Busybox version: 1.31.1
|
||||
# Sun Nov 8 23:55:55 2020
|
||||
# Tue Nov 24 01:26:17 2020
|
||||
#
|
||||
CONFIG_HAVE_DOT_CONFIG=y
|
||||
|
||||
|
|
Loading…
Reference in New Issue