mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2025-04-21 12:27:27 +03:00
Merge branch 'install_locations'
Conflicts: configure.in
This commit is contained in:
9
data/Makefile.am
Normal file
9
data/Makefile.am
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
#pkgdata_DATA = platform/@PLATFORM@ translations skins/@SCREEN_RES@
|
||||
|
||||
install-data-local:
|
||||
test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
|
||||
$(MKDIR_P) "$(DESTDIR)$(pkgdatadir)/skins"
|
||||
cp -r platform/@PLATFORM@/* "$(DESTDIR)$(pkgdatadir)"
|
||||
cp -r translations "$(DESTDIR)$(pkgdatadir)"
|
||||
cp -r skins/@SCREEN_RES@/* "$(DESTDIR)$(pkgdatadir)/skins"
|
||||
12
data/platform/dingux/input.conf
Normal file
12
data/platform/dingux/input.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
accept=keyboard,306
|
||||
cancel=keyboard,308
|
||||
clear=keyboard,32
|
||||
manual=keyboard,304
|
||||
altleft=keyboard,9
|
||||
altright=keyboard,8
|
||||
menu=keyboard,27
|
||||
settings=keyboard,13
|
||||
up=keyboard,273
|
||||
down=keyboard,274
|
||||
left=keyboard,276
|
||||
right=keyboard,275
|
||||
16
data/platform/nanonote/gmenu2x.conf
Normal file
16
data/platform/nanonote/gmenu2x.conf
Normal file
@@ -0,0 +1,16 @@
|
||||
lang="English"
|
||||
tvoutEncoding="PAL"
|
||||
wallpaper="skins/Default/wallpapers/default.png"
|
||||
skin="Default"
|
||||
resolutionX=320
|
||||
section=0
|
||||
backlight=25
|
||||
menuClock=100
|
||||
resolutionY=240
|
||||
outputLogs=0
|
||||
maxClock=336
|
||||
link=0
|
||||
saveSelection=1
|
||||
gamma=10
|
||||
globalVolume=50
|
||||
videoBpp=32
|
||||
11
data/platform/nanonote/gmenu2x.sh
Executable file
11
data/platform/nanonote/gmenu2x.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
source /etc/profile
|
||||
|
||||
#setfont2 /usr/share/setfont2/un-fuzzy-6x10-font.pnm
|
||||
#loadunimap /usr/share/setfont2/ben_uni.trans
|
||||
|
||||
setfont /usr/share/kbd/consolefonts/kernel-6x11-font
|
||||
|
||||
clear
|
||||
/usr/bin/gmenu2x.bin
|
||||
12
data/platform/nanonote/input.conf
Normal file
12
data/platform/nanonote/input.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
cancel=keyboard,104 #NanoNote H
|
||||
accept=keyboard,13 #NanoNote Enter
|
||||
clear=keyboard,120 #NanoNote X
|
||||
manual=keyboard,121 #NanoNote Y
|
||||
altleft=keyboard,108 #NanoNote L
|
||||
altright=keyboard,9 #NanoNote Tab
|
||||
menu=keyboard,283 #Nanonote F2
|
||||
settings=keyboard,115 #NanoNote S
|
||||
up=keyboard,273
|
||||
down=keyboard,274
|
||||
left=keyboard,276
|
||||
right=keyboard,275
|
||||
12
data/platform/nanonote/scripts/services.sh
Executable file
12
data/platform/nanonote/scripts/services.sh
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
# $1 = ip
|
||||
# $2 = inet
|
||||
# $3 = samba
|
||||
# $4 = web
|
||||
insmod net2272
|
||||
insmod g_ether
|
||||
ifconfig usb0 $1 netmask 255.255.255.0 up
|
||||
# route add default gw $defaultgw
|
||||
if [ $2 = "on" ]; then /etc/init.d/inet start; fi
|
||||
if [ $3 = "on" ]; then smbd; fi
|
||||
if [ $4 = "on" ]; then thttpd; fi
|
||||
11
data/platform/nanonote/scripts/usboff.sh
Executable file
11
data/platform/nanonote/scripts/usboff.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
export PATH=$PATH:/sbin
|
||||
rmmod g_file_storage
|
||||
rmmod net2272
|
||||
if [ $1 = "nand" ]; then
|
||||
mount /mnt/nand || mount -o remount,rw /mnt/nand
|
||||
elif [ $1 = "root" ]; then
|
||||
mount -o remount,rw /
|
||||
else
|
||||
mount /mnt/sd || mount -o remount,rw /mnt/sd
|
||||
fi
|
||||
15
data/platform/nanonote/scripts/usbon.sh
Executable file
15
data/platform/nanonote/scripts/usbon.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
# $1 = sd|nand|root
|
||||
# defaults to sd (compatible with previous versions)
|
||||
export PATH=$PATH:/sbin
|
||||
modprobe net2272
|
||||
if [ $1 = "nand" ]; then
|
||||
umount /mnt/nand || mount -o remount,loop,ro /mnt/nand
|
||||
modprobe g_file_storage file=/dev/loop/7
|
||||
elif [ $1 = "root" ]; then
|
||||
mount -o remount,loop,ro /
|
||||
modprobe g_file_storage file=/dev/mtdblock/3
|
||||
else
|
||||
umount /mnt/sd || mount -o remount,loop,ro /mnt/sd
|
||||
modprobe g_file_storage file=/dev/mmcsd/disc0/disc
|
||||
fi
|
||||
3
data/platform/nanonote/sections/applications/abook
Normal file
3
data/platform/nanonote/sections/applications/abook
Normal file
@@ -0,0 +1,3 @@
|
||||
title=abook
|
||||
icon=skin:icons/abook.png
|
||||
exec=/usr/bin/abook
|
||||
3
data/platform/nanonote/sections/applications/aewan
Normal file
3
data/platform/nanonote/sections/applications/aewan
Normal file
@@ -0,0 +1,3 @@
|
||||
title=aewan
|
||||
icon=skin:icons/aewan.png
|
||||
exec=/usr/bin/aewan
|
||||
3
data/platform/nanonote/sections/applications/ase
Normal file
3
data/platform/nanonote/sections/applications/ase
Normal file
@@ -0,0 +1,3 @@
|
||||
title=ASEPRITE
|
||||
icon=skin:icons/ase.png
|
||||
exec=/usr/bin/aseprite
|
||||
4
data/platform/nanonote/sections/applications/bc
Normal file
4
data/platform/nanonote/sections/applications/bc
Normal file
@@ -0,0 +1,4 @@
|
||||
title=bc
|
||||
icon=skin:icons/calc.png
|
||||
params=-l
|
||||
exec=/usr/bin/bc
|
||||
3
data/platform/nanonote/sections/applications/calcurse
Normal file
3
data/platform/nanonote/sections/applications/calcurse
Normal file
@@ -0,0 +1,3 @@
|
||||
title=calcurse
|
||||
icon=skin:icons/calcurse.png
|
||||
exec=/usr/bin/calcurse
|
||||
3
data/platform/nanonote/sections/applications/centerim
Normal file
3
data/platform/nanonote/sections/applications/centerim
Normal file
@@ -0,0 +1,3 @@
|
||||
title=centerim
|
||||
icon=skin:icons/irc.png
|
||||
exec=/usr/bin/centerim
|
||||
3
data/platform/nanonote/sections/applications/ctronome
Normal file
3
data/platform/nanonote/sections/applications/ctronome
Normal file
@@ -0,0 +1,3 @@
|
||||
title=ctronome
|
||||
icon=skin:icons/ctronome.png
|
||||
exec=/usr/bin/ctronome
|
||||
4
data/platform/nanonote/sections/applications/dgclock
Normal file
4
data/platform/nanonote/sections/applications/dgclock
Normal file
@@ -0,0 +1,4 @@
|
||||
title=DGClock
|
||||
icon=skin:icons/dgclock.png
|
||||
exec=/usr/bin/dgclock
|
||||
wrapper=true
|
||||
3
data/platform/nanonote/sections/applications/elinks
Normal file
3
data/platform/nanonote/sections/applications/elinks
Normal file
@@ -0,0 +1,3 @@
|
||||
title=elinks
|
||||
icon=skin:icons/browser.png
|
||||
exec=/usr/bin/elinks
|
||||
3
data/platform/nanonote/sections/applications/emacs
Normal file
3
data/platform/nanonote/sections/applications/emacs
Normal file
@@ -0,0 +1,3 @@
|
||||
title=emacs
|
||||
icon=skin:icons/emacs.png
|
||||
exec=/usr/bin/emacs
|
||||
3
data/platform/nanonote/sections/applications/gmu
Normal file
3
data/platform/nanonote/sections/applications/gmu
Normal file
@@ -0,0 +1,3 @@
|
||||
title=GMU
|
||||
icon=skin:icons/gmu.png
|
||||
exec=/usr/bin/gmu
|
||||
4
data/platform/nanonote/sections/applications/gnuplot
Normal file
4
data/platform/nanonote/sections/applications/gnuplot
Normal file
@@ -0,0 +1,4 @@
|
||||
title=Gnuplot
|
||||
icon=skin:icons/gnuplot.png
|
||||
exec=/usr/bin/gnuplot
|
||||
params=
|
||||
2
data/platform/nanonote/sections/applications/hnb
Normal file
2
data/platform/nanonote/sections/applications/hnb
Normal file
@@ -0,0 +1,2 @@
|
||||
title=hnb
|
||||
exec=/usr/bin/hnb
|
||||
3
data/platform/nanonote/sections/applications/ikog
Normal file
3
data/platform/nanonote/sections/applications/ikog
Normal file
@@ -0,0 +1,3 @@
|
||||
title=ikog.py
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/ikog.py
|
||||
3
data/platform/nanonote/sections/applications/joe
Normal file
3
data/platform/nanonote/sections/applications/joe
Normal file
@@ -0,0 +1,3 @@
|
||||
title=joe
|
||||
icon=skin:icons/editor.png
|
||||
exec=/usr/bin/joe
|
||||
4
data/platform/nanonote/sections/applications/links
Normal file
4
data/platform/nanonote/sections/applications/links
Normal file
@@ -0,0 +1,4 @@
|
||||
title=links
|
||||
icon=skin:icons/links.png
|
||||
exec=/usr/bin/links
|
||||
params=-driver svgalib -mode 320x240x16M32 http://en.qi-hardware.com/wiki/Main_Page
|
||||
4
data/platform/nanonote/sections/applications/lynx
Normal file
4
data/platform/nanonote/sections/applications/lynx
Normal file
@@ -0,0 +1,4 @@
|
||||
title=lynx
|
||||
icon=skin:icons/lynx.png
|
||||
exec=/bin/sh
|
||||
params=--login -c /usr/bin/lynx
|
||||
3
data/platform/nanonote/sections/applications/mathomatic
Normal file
3
data/platform/nanonote/sections/applications/mathomatic
Normal file
@@ -0,0 +1,3 @@
|
||||
title=mathomatic
|
||||
icon=skin:icons/mathomatic.png
|
||||
exec=/usr/bin/mathomatic
|
||||
3
data/platform/nanonote/sections/applications/mcabber
Normal file
3
data/platform/nanonote/sections/applications/mcabber
Normal file
@@ -0,0 +1,3 @@
|
||||
title=mcabber
|
||||
icon=skin:icons/mcabber.png
|
||||
exec=/usr/bin/mcabber
|
||||
3
data/platform/nanonote/sections/applications/mediatomb
Normal file
3
data/platform/nanonote/sections/applications/mediatomb
Normal file
@@ -0,0 +1,3 @@
|
||||
$title=mediatomb
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/mediatomb
|
||||
3
data/platform/nanonote/sections/applications/minicom
Normal file
3
data/platform/nanonote/sections/applications/minicom
Normal file
@@ -0,0 +1,3 @@
|
||||
title=minicom
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/minicom
|
||||
3
data/platform/nanonote/sections/applications/mutt
Normal file
3
data/platform/nanonote/sections/applications/mutt
Normal file
@@ -0,0 +1,3 @@
|
||||
title=mutt
|
||||
icon=skin:icons/mutt.png
|
||||
exec=/usr/bin/mutt
|
||||
4
data/platform/nanonote/sections/applications/nanomap
Normal file
4
data/platform/nanonote/sections/applications/nanomap
Normal file
@@ -0,0 +1,4 @@
|
||||
title=NanoMap
|
||||
icon=skin:icons/nanomap.png
|
||||
exec=/usr/bin/NanoMap
|
||||
params=-qws
|
||||
3
data/platform/nanonote/sections/applications/netsurf
Normal file
3
data/platform/nanonote/sections/applications/netsurf
Normal file
@@ -0,0 +1,3 @@
|
||||
title=netsurf
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/netsurf@BROKEN #don't know how to exit
|
||||
3
data/platform/nanonote/sections/applications/nightsky
Normal file
3
data/platform/nanonote/sections/applications/nightsky
Normal file
@@ -0,0 +1,3 @@
|
||||
title=nightsky
|
||||
icon=skin:icons/nightsky.png
|
||||
exec=/usr/bin/nightsky
|
||||
2
data/platform/nanonote/sections/applications/pyclock
Normal file
2
data/platform/nanonote/sections/applications/pyclock
Normal file
@@ -0,0 +1,2 @@
|
||||
title=pyclock
|
||||
exec=/usr/bin/pyclock
|
||||
3
data/platform/nanonote/sections/applications/qc
Normal file
3
data/platform/nanonote/sections/applications/qc
Normal file
@@ -0,0 +1,3 @@
|
||||
title=qc
|
||||
icon=skin:icons/calc.png
|
||||
exec=/usr/bin/qc
|
||||
4
data/platform/nanonote/sections/applications/qstardict
Normal file
4
data/platform/nanonote/sections/applications/qstardict
Normal file
@@ -0,0 +1,4 @@
|
||||
title=qStarDict
|
||||
icon=skin:icons/qstardict.png
|
||||
exec=/usr/bin/qstardict
|
||||
params=-qws
|
||||
3
data/platform/nanonote/sections/applications/sc
Normal file
3
data/platform/nanonote/sections/applications/sc
Normal file
@@ -0,0 +1,3 @@
|
||||
title=sc
|
||||
icon=skin:icons/sc.png
|
||||
exec=/usr/bin/sc
|
||||
4
data/platform/nanonote/sections/applications/sdcv
Normal file
4
data/platform/nanonote/sections/applications/sdcv
Normal file
@@ -0,0 +1,4 @@
|
||||
title=sdcv
|
||||
icon=skin:icons/stardict.png
|
||||
exec=/usr/bin/sdcv
|
||||
params=--utf8-output
|
||||
3
data/platform/nanonote/sections/applications/snownews
Normal file
3
data/platform/nanonote/sections/applications/snownews
Normal file
@@ -0,0 +1,3 @@
|
||||
title=snownews
|
||||
icon=skin:icons/leaf_red.png
|
||||
exec=/usr/bin/snownews
|
||||
3
data/platform/nanonote/sections/applications/stardict
Normal file
3
data/platform/nanonote/sections/applications/stardict
Normal file
@@ -0,0 +1,3 @@
|
||||
title=StarDict
|
||||
icon=skin:icons/stardict.png
|
||||
exec=/usr/bin/stardict
|
||||
3
data/platform/nanonote/sections/applications/tunec
Normal file
3
data/platform/nanonote/sections/applications/tunec
Normal file
@@ -0,0 +1,3 @@
|
||||
title=tunec
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/tunec
|
||||
3
data/platform/nanonote/sections/applications/vim
Normal file
3
data/platform/nanonote/sections/applications/vim
Normal file
@@ -0,0 +1,3 @@
|
||||
title=vim
|
||||
icon=skin:icons/vim.png
|
||||
exec=/usr/bin/vim
|
||||
4
data/platform/nanonote/sections/applications/w3m
Normal file
4
data/platform/nanonote/sections/applications/w3m
Normal file
@@ -0,0 +1,4 @@
|
||||
title=w3m
|
||||
icon=skin:icons/w3m.png
|
||||
exec=/usr/bin/w3m
|
||||
params=http://en.qi-hardware.com/wiki/Main_Page
|
||||
4
data/platform/nanonote/sections/applications/zgv
Normal file
4
data/platform/nanonote/sections/applications/zgv
Normal file
@@ -0,0 +1,4 @@
|
||||
title=zgv
|
||||
icon=skin:icons/zgv.png
|
||||
exec=/usr/bin/zgv
|
||||
params=/root/
|
||||
4
data/platform/nanonote/sections/games/alex4
Normal file
4
data/platform/nanonote/sections/games/alex4
Normal file
@@ -0,0 +1,4 @@
|
||||
title=Alex4
|
||||
icon=skin:icons/allegro.png
|
||||
exec=/usr/bin/alex4
|
||||
|
||||
4
data/platform/nanonote/sections/games/allegro-demo
Normal file
4
data/platform/nanonote/sections/games/allegro-demo
Normal file
@@ -0,0 +1,4 @@
|
||||
title=Allegro Demo
|
||||
icon=skin:icons/allegro.png
|
||||
exec=/usr/bin/shooter
|
||||
|
||||
3
data/platform/nanonote/sections/games/backgammon
Normal file
3
data/platform/nanonote/sections/games/backgammon
Normal file
@@ -0,0 +1,3 @@
|
||||
title=backgammon
|
||||
icon=skin:icons/backgammon.png
|
||||
exec=/usr/bin/backgammon.sh
|
||||
4
data/platform/nanonote/sections/games/brainless
Normal file
4
data/platform/nanonote/sections/games/brainless
Normal file
@@ -0,0 +1,4 @@
|
||||
title=Brainless
|
||||
icon=skin:icons/brainless.png
|
||||
exec=/usr/bin/brainless-jfbterm
|
||||
params=
|
||||
4
data/platform/nanonote/sections/games/dunnet
Normal file
4
data/platform/nanonote/sections/games/dunnet
Normal file
@@ -0,0 +1,4 @@
|
||||
title=dunnet
|
||||
icon=skin:icons/emacs.png
|
||||
exec=/usr/bin/emacs
|
||||
params=-batch -l dunnet
|
||||
4
data/platform/nanonote/sections/games/freedroid
Normal file
4
data/platform/nanonote/sections/games/freedroid
Normal file
@@ -0,0 +1,4 @@
|
||||
title=freedroid
|
||||
exec=/usr/bin/freedroid
|
||||
icon=skin:icons/freedroid.png
|
||||
params=-q
|
||||
3
data/platform/nanonote/sections/games/gnuchess
Normal file
3
data/platform/nanonote/sections/games/gnuchess
Normal file
@@ -0,0 +1,3 @@
|
||||
title=gnuchess
|
||||
icon=skin:icons/chess.png
|
||||
exec=/usr/bin/gnuchess
|
||||
4
data/platform/nanonote/sections/games/gottet
Normal file
4
data/platform/nanonote/sections/games/gottet
Normal file
@@ -0,0 +1,4 @@
|
||||
title=gottet
|
||||
icon=skin:icons/gottet.png
|
||||
exec=/usr/bin/gottet
|
||||
params=-qws
|
||||
4
data/platform/nanonote/sections/games/qball
Normal file
4
data/platform/nanonote/sections/games/qball
Normal file
@@ -0,0 +1,4 @@
|
||||
title=qball
|
||||
icon=skin:icons/qball.png
|
||||
exec=/usr/bin/qball
|
||||
params=-qws
|
||||
4
data/platform/nanonote/sections/games/sokoban
Normal file
4
data/platform/nanonote/sections/games/sokoban
Normal file
@@ -0,0 +1,4 @@
|
||||
title=sokoban
|
||||
icon=skin:icons/gforth.png
|
||||
exec=/usr/bin/gforth
|
||||
params=sokoban.fs -e sokoban -e bye
|
||||
3
data/platform/nanonote/sections/games/supertux
Normal file
3
data/platform/nanonote/sections/games/supertux
Normal file
@@ -0,0 +1,3 @@
|
||||
title=Supertux
|
||||
icon=skin:icons/supertux.png
|
||||
exec=/usr/bin/supertux
|
||||
3
data/platform/nanonote/sections/games/tetris
Normal file
3
data/platform/nanonote/sections/games/tetris
Normal file
@@ -0,0 +1,3 @@
|
||||
title=tetris
|
||||
icon=skin:icons/tetris.png
|
||||
exec=/usr/bin/tetris
|
||||
4
data/platform/nanonote/sections/games/tile
Normal file
4
data/platform/nanonote/sections/games/tile
Normal file
@@ -0,0 +1,4 @@
|
||||
title=Tile
|
||||
icon=skin:icons/tile.png
|
||||
exec=/usr/bin/Tile
|
||||
params=-qws
|
||||
3
data/platform/nanonote/sections/games/worm
Normal file
3
data/platform/nanonote/sections/games/worm
Normal file
@@ -0,0 +1,3 @@
|
||||
title=worm
|
||||
icon=skin:icons/worm.png
|
||||
exec=/usr/bin/worm
|
||||
0
data/platform/nanonote/sections/programming/.gitignore
vendored
Normal file
0
data/platform/nanonote/sections/programming/.gitignore
vendored
Normal file
3
data/platform/nanonote/sections/programming/gforth
Normal file
3
data/platform/nanonote/sections/programming/gforth
Normal file
@@ -0,0 +1,3 @@
|
||||
title=gforth
|
||||
icon=skin:icons/gforth.png
|
||||
exec=/usr/bin/gforth
|
||||
3
data/platform/nanonote/sections/programming/guile
Normal file
3
data/platform/nanonote/sections/programming/guile
Normal file
@@ -0,0 +1,3 @@
|
||||
title=guile
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/guile
|
||||
3
data/platform/nanonote/sections/programming/lua
Normal file
3
data/platform/nanonote/sections/programming/lua
Normal file
@@ -0,0 +1,3 @@
|
||||
title=lua
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/lua
|
||||
3
data/platform/nanonote/sections/programming/octave
Normal file
3
data/platform/nanonote/sections/programming/octave
Normal file
@@ -0,0 +1,3 @@
|
||||
title=GNU Octave
|
||||
icon=skin:icons/octave.png
|
||||
exec=/usr/bin/octave
|
||||
3
data/platform/nanonote/sections/programming/python
Normal file
3
data/platform/nanonote/sections/programming/python
Normal file
@@ -0,0 +1,3 @@
|
||||
title=python
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/python
|
||||
3
data/platform/nanonote/sections/programming/tcl
Normal file
3
data/platform/nanonote/sections/programming/tcl
Normal file
@@ -0,0 +1,3 @@
|
||||
title=tcl
|
||||
icon=skin:icons/tclsh.png
|
||||
exec=/usr/bin/tclsh8.5
|
||||
0
data/platform/nanonote/sections/settings/.gitignore
vendored
Normal file
0
data/platform/nanonote/sections/settings/.gitignore
vendored
Normal file
4
data/platform/nanonote/sections/terminals/ash-color
Normal file
4
data/platform/nanonote/sections/terminals/ash-color
Normal file
@@ -0,0 +1,4 @@
|
||||
title=ash(Color)
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/setfont
|
||||
params=/usr/share/kbd/consolefonts/kernel-6x11-font; /bin/ash --login
|
||||
4
data/platform/nanonote/sections/terminals/ash-default
Normal file
4
data/platform/nanonote/sections/terminals/ash-default
Normal file
@@ -0,0 +1,4 @@
|
||||
title=ash(Default)
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/sbin/setfont2
|
||||
params=/usr/share/setfont2/un-fuzzy-6x10-font.pnm; /usr/bin/loadunimap /usr/share/setfont2/ben_uni.trans; /bin/ash --login
|
||||
4
data/platform/nanonote/sections/terminals/bash
Normal file
4
data/platform/nanonote/sections/terminals/bash
Normal file
@@ -0,0 +1,4 @@
|
||||
title=bash
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/bin/bash
|
||||
params=--login
|
||||
4
data/platform/nanonote/sections/terminals/byobu
Normal file
4
data/platform/nanonote/sections/terminals/byobu
Normal file
@@ -0,0 +1,4 @@
|
||||
title=byobu
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/bin/touch
|
||||
params=/var/run/utmp; /usr/bin/byobu
|
||||
4
data/platform/nanonote/sections/terminals/fbterm
Normal file
4
data/platform/nanonote/sections/terminals/fbterm
Normal file
@@ -0,0 +1,4 @@
|
||||
title=fbterm
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/fbterm
|
||||
params=-- /bin/ash --login
|
||||
3
data/platform/nanonote/sections/terminals/jfbterm
Normal file
3
data/platform/nanonote/sections/terminals/jfbterm
Normal file
@@ -0,0 +1,3 @@
|
||||
title=jfbterm
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/jfbterm
|
||||
3
data/platform/nanonote/sections/terminals/nanoterm
Normal file
3
data/platform/nanonote/sections/terminals/nanoterm
Normal file
@@ -0,0 +1,3 @@
|
||||
title=nanoterm
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/bin/nanoterm
|
||||
3
data/platform/nanonote/sections/terminals/screen
Normal file
3
data/platform/nanonote/sections/terminals/screen
Normal file
@@ -0,0 +1,3 @@
|
||||
title=screen
|
||||
icon=skin:icons/utilities-terminal.png
|
||||
exec=/usr/sbin/screen
|
||||
0
data/platform/nanonote/sections/utilities/.gitignore
vendored
Normal file
0
data/platform/nanonote/sections/utilities/.gitignore
vendored
Normal file
4
data/platform/nanonote/sections/utilities/alsamixer
Normal file
4
data/platform/nanonote/sections/utilities/alsamixer
Normal file
@@ -0,0 +1,4 @@
|
||||
title=alsamixer
|
||||
icon=skin:icons/alsamixer.png
|
||||
exec=/usr/bin/alsamixer
|
||||
params=-Vall
|
||||
3
data/platform/nanonote/sections/utilities/htop
Normal file
3
data/platform/nanonote/sections/utilities/htop
Normal file
@@ -0,0 +1,3 @@
|
||||
title=htop
|
||||
icon=skin:icons/htop.png
|
||||
exec=/usr/bin/htop
|
||||
4
data/platform/nanonote/sections/utilities/mc
Normal file
4
data/platform/nanonote/sections/utilities/mc
Normal file
@@ -0,0 +1,4 @@
|
||||
title=mc
|
||||
icon=skin:icons/mc.png
|
||||
exec=/usr/bin/mc
|
||||
params=-b ~/ ~/
|
||||
2
data/platform/nanonote/sections/utilities/mediatomb
Normal file
2
data/platform/nanonote/sections/utilities/mediatomb
Normal file
@@ -0,0 +1,2 @@
|
||||
title=mediatomb
|
||||
exec=/usr/bin/mediatomb
|
||||
3
data/platform/nanonote/sections/utilities/powertop
Normal file
3
data/platform/nanonote/sections/utilities/powertop
Normal file
@@ -0,0 +1,3 @@
|
||||
title=powertop
|
||||
icon=skin:icons/powertop.png
|
||||
exec=/usr/bin/powertop
|
||||
16
data/platform/pandora/gmenu2x.conf
Normal file
16
data/platform/pandora/gmenu2x.conf
Normal file
@@ -0,0 +1,16 @@
|
||||
lang="English"
|
||||
tvoutEncoding="PAL"
|
||||
wallpaper="skins/Default/wallpapers/default.png"
|
||||
skin="Default"
|
||||
resolutionX=320
|
||||
section=3
|
||||
backlight=25
|
||||
menuClock=100
|
||||
resolutionY=240
|
||||
outputLogs=0
|
||||
maxClock=300
|
||||
link=0
|
||||
saveSelection=1
|
||||
gamma=10
|
||||
globalVolume=50
|
||||
videoBpp=32
|
||||
12
data/platform/pandora/input.conf
Normal file
12
data/platform/pandora/input.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
cancel=keyboard,122
|
||||
accept=keyboard,120
|
||||
clear=keyboard,115
|
||||
manual=keyboard,121
|
||||
altleft=keyboard,113
|
||||
altright=keyboard,112
|
||||
menu=keyboard,27
|
||||
settings=keyboard,13
|
||||
up=keyboard,273
|
||||
down=keyboard,274
|
||||
left=keyboard,276
|
||||
right=keyboard,275
|
||||
12
data/platform/pandora/scripts/services.sh
Executable file
12
data/platform/pandora/scripts/services.sh
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
# $1 = ip
|
||||
# $2 = inet
|
||||
# $3 = samba
|
||||
# $4 = web
|
||||
insmod net2272
|
||||
insmod g_ether
|
||||
ifconfig usb0 $1 netmask 255.255.255.0 up
|
||||
# route add default gw $defaultgw
|
||||
if [ $2 = "on" ]; then /etc/init.d/inet start; fi
|
||||
if [ $3 = "on" ]; then smbd; fi
|
||||
if [ $4 = "on" ]; then thttpd; fi
|
||||
11
data/platform/pandora/scripts/usboff.sh
Executable file
11
data/platform/pandora/scripts/usboff.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
export PATH=$PATH:/sbin
|
||||
rmmod g_file_storage
|
||||
rmmod net2272
|
||||
if [ $1 = "nand" ]; then
|
||||
mount /mnt/nand || mount -o remount,rw /mnt/nand
|
||||
elif [ $1 = "root" ]; then
|
||||
mount -o remount,rw /
|
||||
else
|
||||
mount /mnt/sd || mount -o remount,rw /mnt/sd
|
||||
fi
|
||||
15
data/platform/pandora/scripts/usbon.sh
Executable file
15
data/platform/pandora/scripts/usbon.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
# $1 = sd|nand|root
|
||||
# defaults to sd (compatible with previous versions)
|
||||
export PATH=$PATH:/sbin
|
||||
modprobe net2272
|
||||
if [ $1 = "nand" ]; then
|
||||
umount /mnt/nand || mount -o remount,loop,ro /mnt/nand
|
||||
modprobe g_file_storage file=/dev/loop/7
|
||||
elif [ $1 = "root" ]; then
|
||||
mount -o remount,loop,ro /
|
||||
modprobe g_file_storage file=/dev/mtdblock/3
|
||||
else
|
||||
umount /mnt/sd || mount -o remount,loop,ro /mnt/sd
|
||||
modprobe g_file_storage file=/dev/mmcsd/disc0/disc
|
||||
fi
|
||||
6
data/platform/pandora/sections/applications/ebook
Normal file
6
data/platform/pandora/sections/applications/ebook
Normal file
@@ -0,0 +1,6 @@
|
||||
title=eBook
|
||||
icon=skin:icons/ebook.png
|
||||
exec=/usr/gp2x/gp2xmenu
|
||||
params=--disable-autorun --enable-terminate --view-ebook
|
||||
clock=75
|
||||
wrapper=true
|
||||
5
data/platform/pandora/sections/applications/mplayer
Normal file
5
data/platform/pandora/sections/applications/mplayer
Normal file
@@ -0,0 +1,5 @@
|
||||
title=Movies
|
||||
icon=skin:icons/mplayer.png
|
||||
exec=/usr/gp2x/mplayer
|
||||
clock=200
|
||||
wrapper=true
|
||||
5
data/platform/pandora/sections/applications/music
Normal file
5
data/platform/pandora/sections/applications/music
Normal file
@@ -0,0 +1,5 @@
|
||||
title=Music
|
||||
icon=skin:icons/music.png
|
||||
exec=/usr/gp2x/gp2xmenu
|
||||
params=--disable-autorun --enable-terminate --view-music
|
||||
clock=75
|
||||
6
data/platform/pandora/sections/applications/photo
Normal file
6
data/platform/pandora/sections/applications/photo
Normal file
@@ -0,0 +1,6 @@
|
||||
title=Photo
|
||||
icon=skin:icons/photo.png
|
||||
exec=/usr/gp2x/gp2xmenu
|
||||
params=--disable-autorun --enable-terminate --view-photo
|
||||
clock=100
|
||||
wrapper=true
|
||||
5
data/platform/pandora/sections/emulators/Amiga
Normal file
5
data/platform/pandora/sections/emulators/Amiga
Normal file
@@ -0,0 +1,5 @@
|
||||
title=Amiga
|
||||
description=UAE-2X
|
||||
exec=/mnt/sd/uae2x_01alpha/uae2x-tweak.gpe
|
||||
manual=fonttest.txt
|
||||
clock=200
|
||||
9
data/platform/pandora/sections/emulators/GBAdvance
Normal file
9
data/platform/pandora/sections/emulators/GBAdvance
Normal file
@@ -0,0 +1,9 @@
|
||||
title=gpSP
|
||||
description=vba2xg
|
||||
icon=/mnt/sd/Icons/Videogames/gba-purple.png
|
||||
exec=/mnt/sd/vba2x/vba.gpe
|
||||
clock=280
|
||||
selectordir=/mnt/sd/roms/gba/
|
||||
selectorfilter=.zip,.vba
|
||||
selectorscreens=/mnt/sd/roms/gba
|
||||
wrapper=true
|
||||
6
data/platform/pandora/sections/emulators/GameBoy
Normal file
6
data/platform/pandora/sections/emulators/GameBoy
Normal file
@@ -0,0 +1,6 @@
|
||||
title=GameBoy
|
||||
description=Gnuboy2x
|
||||
icon=/mnt/sd/Icons/Videogames/gb-silver.png
|
||||
exec=/mnt/sd/gnuboy2x/Gnuboy2x.gpe
|
||||
manual=/mnt/sd/gnuboy2x/readme.txt
|
||||
clock=180
|
||||
9
data/platform/pandora/sections/emulators/Genesis
Normal file
9
data/platform/pandora/sections/emulators/Genesis
Normal file
@@ -0,0 +1,9 @@
|
||||
title=Genesis
|
||||
description=PicoDrive
|
||||
icon=/mnt/sd/Icons/Videogames/genesis.png
|
||||
exec=/mnt/sd/PicoDrive/PicoDrive.gpe
|
||||
params=-menu " " [selFullPath]
|
||||
clock=160
|
||||
selectordir=/mnt/sd/roms/genesis/
|
||||
selectorscreens=/mnt/sd/screens/genesis
|
||||
wrapper=true
|
||||
10
data/platform/pandora/sections/emulators/Mame
Normal file
10
data/platform/pandora/sections/emulators/Mame
Normal file
@@ -0,0 +1,10 @@
|
||||
title=MAME
|
||||
description=Multiple Arcade Machine Emulator
|
||||
icon=/mnt/sd/mamegp2x/mame.png
|
||||
exec=/mnt/sd/mamegp2x/mame.gpe
|
||||
params=[selFile]
|
||||
manual=/mnt/sd/mamegp2x/mame.man.png
|
||||
clock=200
|
||||
selectordir=/mnt/sd/mamegp2x/roms/
|
||||
selectorscreens=/mnt/sd/mamegp2x/screen
|
||||
selectoraliases=/mnt/sd/mame.alias
|
||||
5
data/platform/pandora/sections/emulators/NK SNES
Normal file
5
data/platform/pandora/sections/emulators/NK SNES
Normal file
@@ -0,0 +1,5 @@
|
||||
title=NK SNES
|
||||
description=Super Nintendo Emulator
|
||||
icon=/mnt/sd/Icons/Videogames/snes.png
|
||||
exec=/mnt/sd/snes-mod/snesgp2x.gpe
|
||||
clock=200
|
||||
5
data/platform/pandora/sections/emulators/NeoGeo
Normal file
5
data/platform/pandora/sections/emulators/NeoGeo
Normal file
@@ -0,0 +1,5 @@
|
||||
title=Neo Geo
|
||||
description=GnGeo2X
|
||||
icon=/mnt/sd/Icons/Videogames/neogeo.png
|
||||
exec=/mnt/sd/neogeo/rage2x.gpe
|
||||
clock=200
|
||||
9
data/platform/pandora/sections/emulators/NeoGeo Pocket
Normal file
9
data/platform/pandora/sections/emulators/NeoGeo Pocket
Normal file
@@ -0,0 +1,9 @@
|
||||
title=NeoGeo Pocket
|
||||
description=Race!
|
||||
icon=/mnt/sd/Icons/Videogames/ngpc white.png
|
||||
exec=/mnt/sd/ngpc/race
|
||||
clock=160
|
||||
selectordir=/mnt/sd/roms/ngpc/
|
||||
selectorfilter=.ngp,.ngc
|
||||
selectorscreens=/mnt/sd/screens/ngpc
|
||||
wrapper=true
|
||||
9
data/platform/pandora/sections/emulators/Nintendo
Normal file
9
data/platform/pandora/sections/emulators/Nintendo
Normal file
@@ -0,0 +1,9 @@
|
||||
title=Nintendo
|
||||
description=GpFCE
|
||||
icon=/mnt/sd/Icons/Videogames/nes.png
|
||||
exec=/mnt/sd/GpFce/gpfce
|
||||
clock=200
|
||||
selectordir=/mnt/sd/roms/nes/
|
||||
selectorfilter=.nes,.zip
|
||||
selectorscreens=/mnt/sd/screens/nes
|
||||
wrapper=true
|
||||
5
data/platform/pandora/sections/emulators/PcEngine
Normal file
5
data/platform/pandora/sections/emulators/PcEngine
Normal file
@@ -0,0 +1,5 @@
|
||||
title=PcEngine
|
||||
description=gp2xengine
|
||||
icon=/mnt/sd/Icons/Videogames/tg16.png
|
||||
exec=/mnt/sd/gp2xengine/gp2xengine.gpe
|
||||
clock=200
|
||||
5
data/platform/pandora/sections/emulators/PlayStation
Normal file
5
data/platform/pandora/sections/emulators/PlayStation
Normal file
@@ -0,0 +1,5 @@
|
||||
title=PlayStation
|
||||
description=psx4gp2x
|
||||
icon=/mnt/sd/Icons/Videogames/psx.png
|
||||
exec=/mnt/sd/psx4gp2x/psx4all.gpe
|
||||
clock=200
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user