diff options
| author | Szymon Dziok <b0hoon@o2.pl> | 2010-01-30 21:11:18 +0000 |
|---|---|---|
| committer | Szymon Dziok <b0hoon@o2.pl> | 2010-01-30 21:11:18 +0000 |
| commit | c2bd57a9b0a74d6c4dc0e94c62c41e2b84136d90 (patch) | |
| tree | ac2573b1677a757f0f7cf193f066183d85d01266 /tools | |
| parent | f6b46caa404b15987ee0ccb14060306e531ee592 (diff) | |
| download | rockbox-c2bd57a9b0a74d6c4dc0e94c62c41e2b84136d90.zip rockbox-c2bd57a9b0a74d6c4dc0e94c62c41e2b84136d90.tar.gz rockbox-c2bd57a9b0a74d6c4dc0e94c62c41e2b84136d90.tar.bz2 rockbox-c2bd57a9b0a74d6c4dc0e94c62c41e2b84136d90.tar.xz | |
PBell vibe 500: ROLO fix
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24385 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 4 | ||||
| -rw-r--r-- | tools/scramble.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index 1fe8190..20a7029 100755 --- a/tools/configure +++ b/tools/configure @@ -2462,14 +2462,14 @@ fi target="-DPBELL_VIBE500" memory=32 # always arm7tdmicc - tool="$rootdir/tools/scramble -mi4v3 -model=vibe500 -type=RBOS" + tool="$rootdir/tools/scramble -mi4v3 -model=v500 -type=RBOS" bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" bmp2rb_native="$rootdir/tools/bmp2rb -f 5" output="jukebox.mi4" appextra="recorder:gui" plugins="no" swcodec="yes" - boottool="$rootdir/tools/scramble -mi4v3 -model=vibe500 -type=RBBL" + boottool="$rootdir/tools/scramble -mi4v3 -model=v500 -type=RBBL" bootoutput="rockbox.mi4" # toolset is the tools within the tools directory that we build for # this particular target. diff --git a/tools/scramble.c b/tools/scramble.c index 3ee8b26..7d981ae 100644 --- a/tools/scramble.c +++ b/tools/scramble.c @@ -322,6 +322,8 @@ int main (int argc, char** argv) modelnum = 65; else if (!strcmp(&argv[1][5], "cli+")) /* Sansa Clip+ */ modelnum = 66; + else if (!strcmp(&argv[1][5], "v500")) /* Packard Bell Vibe 500 */ + modelnum = 67; else if (!strcmp(&argv[1][5], "m244")) modelnum = 131; else { |