norm said:
iv got it working - just edit the path at the bottom of the energysaver autorun to gmenu and all works fine
it runs gmenu, but doesn't run energysaver.
ive tried this;
#!/bin/sh
cd /mnt/sd/gmenu2x
exec ../Apps/EnergySaver/EnergySaver/EnergySaver.gpu&
exec ./gmenu2x
which end in the energysaver error and flickering screen.
this;
#!/bin/sh
# AutoRun script for EnergySaver - Script de inicio para EnergySaver
# Copy to root of SD Card or NAND - Copiar a la raiz de una SD o de la NAND
# Copy setbl to the same place - Copiar setbl al mismo lugar
# Activate autorun feature and - Activar el autoinicio de la consola y
# NAND automount if necessary - el montaje de la NAND si hiciera falta
# Edit only this two lines - Editar estas dos lineas
SPEED=20
TIME=30
EXCEPTIONS="mplayer MusicPlayer g_file_storage"
# Please, don't delete the quotes - Por favor, no borre las comillas
# PLEASE, DO NOT EDIT UNDER THIS LINE - NO EDITAR POR DEBAJO DE ESTA LINEA
# ---------------------------------------------------------------------------- #
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE
# ---------------------------------------------------------------------------- #
killall setbl
${0%/*}/setbl $SPEED $TIME $EXCEPTIONS &>/dev/null &
cd /mnt/sd/gmenu2x
exec ../Apps/EnergySaver/EnergySaver/EnergySaver.gpu&
exec ./gmenu2x
which does exactly the same.
and this;
#!/bin/sh
# AutoRun script for EnergySaver - Script de inicio para EnergySaver
# Copy to root of SD Card or NAND - Copiar a la raiz de una SD o de la NAND
# Copy setbl to the same place - Copiar setbl al mismo lugar
# Activate autorun feature and - Activar el autoinicio de la consola y
# NAND automount if necessary - el montaje de la NAND si hiciera falta
# Edit only this two lines - Editar estas dos lineas
SPEED=20
TIME=30
EXCEPTIONS="mplayer MusicPlayer g_file_storage"
# Please, don't delete the quotes - Por favor, no borre las comillas
# PLEASE, DO NOT EDIT UNDER THIS LINE - NO EDITAR POR DEBAJO DE ESTA LINEA
# ---------------------------------------------------------------------------- #
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE
# ---------------------------------------------------------------------------- #
killall setbl
${0%/*}/setbl $SPEED $TIME $EXCEPTIONS &>/dev/null &
cd /mnt/sd/gmenu2x
exec ./gmenu2x
which doesn't seem to call the energysaver function at all (obviousley)
am i doing this wrong?