forked from len0rd/rockbox
Make the tool variable hold the full path, and make the iriver tool 'cp'
for now. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5203 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d681087ad0
commit
a97fe2514d
1 changed files with 8 additions and 8 deletions
16
tools/configure
vendored
16
tools/configure
vendored
|
@ -265,7 +265,7 @@ if [ -z "$archos" ]; then
|
||||||
archos="player"
|
archos="player"
|
||||||
target="-DARCHOS_PLAYER"
|
target="-DARCHOS_PLAYER"
|
||||||
shcc
|
shcc
|
||||||
tool="scramble"
|
tool="$rootdir/tools/scramble"
|
||||||
output="archos.mod"
|
output="archos.mod"
|
||||||
appextra="player"
|
appextra="player"
|
||||||
archosrom=""
|
archosrom=""
|
||||||
|
@ -276,7 +276,7 @@ if [ -z "$archos" ]; then
|
||||||
archos="fmrecorder"
|
archos="fmrecorder"
|
||||||
target="-DARCHOS_FMRECORDER"
|
target="-DARCHOS_FMRECORDER"
|
||||||
shcc
|
shcc
|
||||||
tool="scramble -fm"
|
tool="$rootdir/tools/scramble -fm"
|
||||||
output="ajbrec.ajz"
|
output="ajbrec.ajz"
|
||||||
appextra="recorder"
|
appextra="recorder"
|
||||||
archosrom="$pwd/rombox.ucl"
|
archosrom="$pwd/rombox.ucl"
|
||||||
|
@ -287,7 +287,7 @@ if [ -z "$archos" ]; then
|
||||||
archos="recorderv2"
|
archos="recorderv2"
|
||||||
target="-DARCHOS_RECORDERV2"
|
target="-DARCHOS_RECORDERV2"
|
||||||
shcc
|
shcc
|
||||||
tool="scramble -v2"
|
tool="$rootdir/tools/scramble -v2"
|
||||||
output="ajbrec.ajz"
|
output="ajbrec.ajz"
|
||||||
appextra="recorder"
|
appextra="recorder"
|
||||||
archosrom="$pwd/rombox.ucl"
|
archosrom="$pwd/rombox.ucl"
|
||||||
|
@ -298,7 +298,7 @@ if [ -z "$archos" ]; then
|
||||||
archos="ondiosp"
|
archos="ondiosp"
|
||||||
target="-DARCHOS_ONDIOSP"
|
target="-DARCHOS_ONDIOSP"
|
||||||
shcc
|
shcc
|
||||||
tool="scramble -osp"
|
tool="$rootdir/tools/scramble -osp"
|
||||||
output="ajbrec.ajz"
|
output="ajbrec.ajz"
|
||||||
appextra="recorder"
|
appextra="recorder"
|
||||||
archosrom="$pwd/rombox.ucl"
|
archosrom="$pwd/rombox.ucl"
|
||||||
|
@ -309,7 +309,7 @@ if [ -z "$archos" ]; then
|
||||||
archos="ondiofm"
|
archos="ondiofm"
|
||||||
target="-DARCHOS_ONDIOFM"
|
target="-DARCHOS_ONDIOFM"
|
||||||
shcc
|
shcc
|
||||||
tool="scramble -ofm"
|
tool="$rootdir/tools/scramble -ofm"
|
||||||
output="ajbrec.ajz"
|
output="ajbrec.ajz"
|
||||||
appextra="recorder"
|
appextra="recorder"
|
||||||
archosrom="$pwd/rombox.ucl"
|
archosrom="$pwd/rombox.ucl"
|
||||||
|
@ -321,7 +321,7 @@ if [ -z "$archos" ]; then
|
||||||
target="-DIRIVER_H100"
|
target="-DIRIVER_H100"
|
||||||
memory=32 # always
|
memory=32 # always
|
||||||
coldfirecc
|
coldfirecc
|
||||||
tool="not-written-yet"
|
tool="cp"
|
||||||
output="rockbox.iriver"
|
output="rockbox.iriver"
|
||||||
appextra=""
|
appextra=""
|
||||||
archosrom=""
|
archosrom=""
|
||||||
|
@ -332,7 +332,7 @@ if [ -z "$archos" ]; then
|
||||||
archos="recorder"
|
archos="recorder"
|
||||||
target="-DARCHOS_RECORDER"
|
target="-DARCHOS_RECORDER"
|
||||||
shcc
|
shcc
|
||||||
tool="scramble"
|
tool="$rootdir/tools/scramble"
|
||||||
output="ajbrec.ajz"
|
output="ajbrec.ajz"
|
||||||
appextra="recorder"
|
appextra="recorder"
|
||||||
archosrom="$pwd/rombox.ucl"
|
archosrom="$pwd/rombox.ucl"
|
||||||
|
@ -449,7 +449,7 @@ export OBJDIR=@PWD@
|
||||||
export LANGUAGE=@LANGUAGE@
|
export LANGUAGE=@LANGUAGE@
|
||||||
export MEMORYSIZE=@MEMORY@
|
export MEMORYSIZE=@MEMORY@
|
||||||
export VERSION=\$(shell date +%y%m%d-%H%M)
|
export VERSION=\$(shell date +%y%m%d-%H%M)
|
||||||
export MKFIRMWARE=\$(TOOLSDIR)/@TOOL@
|
export MKFIRMWARE=@TOOL@
|
||||||
export BINARY=@OUTPUT@
|
export BINARY=@OUTPUT@
|
||||||
export APPEXTRA=@APPEXTRA@
|
export APPEXTRA=@APPEXTRA@
|
||||||
export ENABLEDPLUGINS=@PLUGINS@
|
export ENABLEDPLUGINS=@PLUGINS@
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue