summaryrefslogtreecommitdiffstats
path: root/tools
AgeCommit message (Collapse)AuthorFilesLines
2005-02-08Emacs hintJean-Philippe Bernardy1-0/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5854 a1c6a512-1295-4272-9138-f99709370657
2005-02-07Fixed updating of old translations which don't contain voice: entries.Jens Arnold1-0/+6
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5842 a1c6a512-1295-4272-9138-f99709370657
2005-02-06Strict alignment for the coldfireLinus Nielsen Feltzing1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5809 a1c6a512-1295-4272-9138-f99709370657
2005-02-04enable plugins in the iRiver buildsDaniel Stenberg1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5786 a1c6a512-1295-4272-9138-f99709370657
2005-02-01Keep comments other than the special ### comments.Jens Arnold1-2/+13
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5735 a1c6a512-1295-4272-9138-f99709370657
2005-02-01Bug fixes & enhancements: (1) Don't change voice: strings back to english ↵Jens Arnold1-11/+29
just because they are different. They are supposed to be that way. (2) Instead, put a comment and set voice: back to english if one of the following conditions are met: (2a) It's a voice only id, and the description changed (2b) It's a standard id, the eng: string changed, and the english and/or translated voice: string is not empty. (3) Append new ids in the same order as they appear in english.lang, for better maintenance. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5731 a1c6a512-1295-4272-9138-f99709370657
2005-02-01Bug fix: The trailing null byte wasn't added when there was whitespace after ↵Jens Arnold1-1/+1
the closing quote in the .lang file, leading to garbled strings when doing non-english builds. Thanks to quelsaruk for tracking this down. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5730 a1c6a512-1295-4272-9138-f99709370657
2005-01-31support iriver versionDaniel Stenberg1-0/+3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5728 a1c6a512-1295-4272-9138-f99709370657
2005-01-31Fix: Deprecated voice-only entries were treated as (deprecated) standard ↵Jens Arnold2-2/+2
LANG_ entries. Now they are detected by the id matching VOICE_*. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5720 a1c6a512-1295-4272-9138-f99709370657
2005-01-29add bootloader option (only usable for iRiver)Daniel Stenberg1-2/+18
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5706 a1c6a512-1295-4272-9138-f99709370657
2005-01-28New tool to insert the rockbox boot loader into the original firmware (iRiver)Linus Nielsen Feltzing2-2/+168
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5690 a1c6a512-1295-4272-9138-f99709370657
2005-01-28Changed scrambling type for iriverLinus Nielsen Feltzing1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5689 a1c6a512-1295-4272-9138-f99709370657
2005-01-28Adjusted the max/min sizes for the iriver scramblerLinus Nielsen Feltzing1-2/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5688 a1c6a512-1295-4272-9138-f99709370657
2005-01-28Made the -add option use char instead of short, prevents endianness problemsLinus Nielsen Feltzing1-4/+3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5687 a1c6a512-1295-4272-9138-f99709370657
2005-01-28The checksum is not a CRCLinus Nielsen Feltzing1-4/+4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5686 a1c6a512-1295-4272-9138-f99709370657
2005-01-24store the 'add' checksum big-endianDaniel Stenberg1-2/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5658 a1c6a512-1295-4272-9138-f99709370657
2005-01-24remove duplicated codeDaniel Stenberg1-2/+0
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5651 a1c6a512-1295-4272-9138-f99709370657
2005-01-24Added the "--add=[model]" option for upcoming iRiver work. Rockbox for iRiverDaniel Stenberg1-5/+58
will not be scrambled, only have a 8 bytes header for checksum and model name. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5650 a1c6a512-1295-4272-9138-f99709370657
2005-01-24iRiver scramble and descramble code from Dave CooperDaniel Stenberg6-16/+474
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5649 a1c6a512-1295-4272-9138-f99709370657
2005-01-23Correctly disable plugins for gmini.Jens Arnold1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5636 a1c6a512-1295-4272-9138-f99709370657
2005-01-19New way of handling the builtin language strings. Now the string pointers ↵Jens Arnold1-4/+11
are no longer stored as initialised data, but calculated by walking one long string containing all language strings separated by \0. While this doesn't need more RAM, it fixes the problem that loading incomplete .lng files after complete ones did not reset the missing strings to the default, and it also decreases the binary size by >1700 bytes. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5608 a1c6a512-1295-4272-9138-f99709370657
2005-01-19Bugfix: Due to the wrong position of the LANG_LAST_INDEX_IN_ARRAY marker, ↵Jens Arnold1-3/+6
lang_load() was potentially unsafe. Loading a newer .lng file with an older rockbox build would have caused an out-of-bound access of language_strings[]. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5607 a1c6a512-1295-4272-9138-f99709370657
2005-01-19Strip trailing directory slashBjörn Stenberg1-1/+4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5604 a1c6a512-1295-4272-9138-f99709370657
2005-01-19Windows requires setting files to binary modeBjörn Stenberg1-0/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5603 a1c6a512-1295-4272-9138-f99709370657
2005-01-17Removed 'strict'Björn Stenberg1-1/+0
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5585 a1c6a512-1295-4272-9138-f99709370657
2005-01-17re-indented to look normal ;-)Daniel Stenberg1-430/+430
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5582 a1c6a512-1295-4272-9138-f99709370657
2005-01-17Don't die on opendir() failure. Index .mp2 files too.Björn Stenberg1-6/+10
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5581 a1c6a512-1295-4272-9138-f99709370657
2005-01-17Don't print to STDERR.Björn Stenberg1-9/+9
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5580 a1c6a512-1295-4272-9138-f99709370657
2005-01-17Added MP3::Info.pm inside script to make it standalone.Björn Stenberg1-11/+1571
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5579 a1c6a512-1295-4272-9138-f99709370657
2005-01-17Added progress display and summary. Implemented --strip.Björn Stenberg1-35/+73
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5573 a1c6a512-1295-4272-9138-f99709370657
2005-01-09Jean-Philippe Bernardy: removed -m1 from calmrisc gcc optionsDaniel Stenberg1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5540 a1c6a512-1295-4272-9138-f99709370657
2005-01-04prepare for gmini 120 portDaniel Stenberg1-0/+24
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5531 a1c6a512-1295-4272-9138-f99709370657
2004-12-20Fixed to allow conversions of 160x128 pictures too.Daniel Stenberg1-9/+27
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5498 a1c6a512-1295-4272-9138-f99709370657
2004-12-01specify mode in mkdirDaniel Stenberg1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5475 a1c6a512-1295-4272-9138-f99709370657
2004-11-27Fixed register tableJens Arnold1-2/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5469 a1c6a512-1295-4272-9138-f99709370657
2004-11-24Make the simulator builds acknowledge the plugins variable set in the configureDaniel Stenberg1-0/+2
script. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5464 a1c6a512-1295-4272-9138-f99709370657
2004-11-23No ROMBox for FM RecorderLinus Nielsen Feltzing1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5460 a1c6a512-1295-4272-9138-f99709370657
2004-11-20Include .ucl files for playersJens Arnold1-8/+9
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5448 a1c6a512-1295-4272-9138-f99709370657
2004-11-20Enable building flashed rockbox and rombox for playersJens Arnold1-2/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5446 a1c6a512-1295-4272-9138-f99709370657
2004-11-19We use the apps/recorder dir for the iriver build as wellLinus Nielsen Feltzing1-2/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5434 a1c6a512-1295-4272-9138-f99709370657
2004-10-26Add dummy text if some tags are missingBjörn Stenberg1-0/+4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5360 a1c6a512-1295-4272-9138-f99709370657
2004-10-23Sort songarray on track number if availableBjörn Stenberg1-3/+15
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5330 a1c6a512-1295-4272-9138-f99709370657
2004-10-21Minor adjustmentsBjörn Stenberg1-2/+8
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5320 a1c6a512-1295-4272-9138-f99709370657
2004-10-21Now fully v1 spec compliantBjörn Stenberg1-23/+64
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5319 a1c6a512-1295-4272-9138-f99709370657
2004-10-21updates, still not thereDaniel Stenberg1-9/+21
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5316 a1c6a512-1295-4272-9138-f99709370657
2004-10-20Closing in on the TagDatabase 1.7 specDaniel Stenberg1-4/+174
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5314 a1c6a512-1295-4272-9138-f99709370657
2004-10-18present table to the user, easily converted to binary form once we settleDaniel Stenberg1-3/+57
on a format git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5303 a1c6a512-1295-4272-9138-f99709370657
2004-10-13song db generation tool embryoDaniel Stenberg1-0/+93
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5269 a1c6a512-1295-4272-9138-f99709370657
2004-10-08Don't bail out and die if SOURCES is empty.Daniel Stenberg1-3/+5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5222 a1c6a512-1295-4272-9138-f99709370657
2004-10-08Escaped the comma in the iriver GCCOPTSLinus Nielsen Feltzing1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5221 a1c6a512-1295-4272-9138-f99709370657