9450689483
__builtin found fix for rbendian.h tools/configure defines SIM_USE_BYTESWAP_H if byteswap.h is found in /usr/include/ maybe there is a better mechanism for this genshortcut.sh is a simple script to make .desktop shortcut files several newer distros don't allow you to run the simulator from the file manager, this or perhaps a different method can probably be included while building a sim at a later date. for now it can be run manually like so: similar to ../tools/configure run from your simulator folder ../tools/genshortcut.sh exepath shortname icon ex. ../tools/genshortcut.sh ./rockboxui clip+sim music-app Change-Id: Ia05d3a9349b27c5968a4a7a68b2eb480e60faec3
41 lines
1.1 KiB
Bash
Executable file
41 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
#
|
|
#shortcut.desktop generator
|
|
|
|
# Create a .desktop entry to allow the simulator to be executed in newer shells
|
|
# $1 executable
|
|
# $2 shortcut name
|
|
# $3 icon
|
|
create_shortcut() {
|
|
path="$(cd "$(dirname "$1")"; pwd)/"
|
|
execname=$(basename "$1")
|
|
shortname="$2"
|
|
icon="$3"
|
|
shortcut="$path$shortname.desktop"
|
|
|
|
echo "Creating shortcut $shortcut"
|
|
echo "path: $path"
|
|
echo "exec: $execname"
|
|
echo "icon: $icon"
|
|
|
|
echo "[Desktop Entry]
|
|
Encoding=UTF-8
|
|
Version=1.1
|
|
Type=Application
|
|
Categories=Apps;
|
|
Terminal=false
|
|
Name=$shortname
|
|
Path=$path
|
|
Exec=$path/$execname
|
|
Icon=$icon
|
|
Name[en-US]=$shortname" > $shortcut
|
|
}
|
|
|
|
#./genshortcut.sh ./rockboxui target-sim music-app
|
|
create_shortcut $@
|