summaryrefslogtreecommitdiff
path: root/tools/buildzip.pl (follow)
Commit message (Collapse)AuthorAge
...
* Renamed simulator disk directory from 'archos' to 'simdisk'.Björn Stenberg2008-11-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19204 a1c6a512-1295-4272-9138-f99709370657
* Patch FS#9556 by Alex Bennee - clean up buildzip.plLinus Nielsen Feltzing2008-11-17
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19125 a1c6a512-1295-4272-9138-f99709370657
* Changes to simulator installation, 'make fullinstall' is now the way to ↵Nils Wallménius2008-11-04
| | | | | | install everything, 'make install' is much faster but does not include fonts, avoid useless file compression/extraction making fullinstall about twice as fast as the old install, remember to reconfigure your sim builds git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19000 a1c6a512-1295-4272-9138-f99709370657
* Don't include a database.ignore file in a font-only package.Jens Arnold2008-08-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18351 a1c6a512-1295-4272-9138-f99709370657
* Fix FS #9280 (bsd tar errors out when called with -u and the destination ↵Jens Arnold2008-08-26
| | | | | | file doesn't exist) by using -c. This requires buildzip.pl to only call the archiver once, with the additional beneft that it's more efficient (saves a call, and allows 7zip archives to become smaller). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18350 a1c6a512-1295-4272-9138-f99709370657
* Remove unused argument to the buildzip() function.Antoine Cellerier2008-08-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18349 a1c6a512-1295-4272-9138-f99709370657
* Use maximum compression for 'make zip', 'make fullzip' and 'make 7zip' ↵Jens Arnold2008-08-16
| | | | | | (reconfigure for the 7zip change to take effect). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18296 a1c6a512-1295-4272-9138-f99709370657
* Make 'make tar' and hence 'make gzip' and 'make bzip2' work again ↵Jens Arnold2008-07-23
| | | | | | (reconfigure if you use one of these). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18116 a1c6a512-1295-4272-9138-f99709370657
* Add a glob_move() function and use it for moving the .cp files.Jens Arnold2008-07-21
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18113 a1c6a512-1295-4272-9138-f99709370657
* Chmod all moved files to 0755 (everything moved is codecs or plugins).Jonas Häggqvist2008-07-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18112 a1c6a512-1295-4272-9138-f99709370657
* Only print convbdf command if running in verbose mode.Jonas Häggqvist2008-07-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18111 a1c6a512-1295-4272-9138-f99709370657
* Further speedup: call convbdf once, rather than once for each font.Jonas Häggqvist2008-07-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18110 a1c6a512-1295-4272-9138-f99709370657
* Skip an unneeded check. Simply call rmdir, and if it's empty it goes - if ↵Jonas Häggqvist2008-07-20
| | | | | | not, it stays. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18109 a1c6a512-1295-4272-9138-f99709370657
* Buildzip.pl changes - do as much as possible with Perl, rather than using ↵Jonas Häggqvist2008-07-20
| | | | | | | | | | the shell. This gives a huge speedup on Cygwin (>400%), and a slight speedup (25%) on Linux. If zips suddenly start missing files - blame this commit. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18108 a1c6a512-1295-4272-9138-f99709370657
* FS#8637 - new UI for disktidy.Jonathan Gordon2008-05-18
| | | | | | | | | | | | | | | | | | | Usage changes: - disktidy.config is loaded with a list of file/directory names (included in the .zip) - disktidy_custom.config is then loaded which is the same list but marks the files/dirs to be deleted. Also used to add custom files - the default config is to not remove any files so the first time you run it you need to go into the "files to clean" option and select the files to remove. they will be then saved for next time. The "Files To Clean" screen: use the usual select option to toggle an item (if it has the cursor icon it will be removed) selecting < ALL > will remove all, < NONE > will deselect all. selecting a < > group will toggle all items in that group to exit that screen use the standard cancel action (usually left arrow) Directories are marked with a trailing / and * can be used at the end of the name (e.g .Trash-*/) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17565 a1c6a512-1295-4272-9138-f99709370657
* FS#8482 take two. Make the language files built first, so that the largestDaniel Stenberg2008-02-18
| | | | | | | | size can be used as buffer size for languages. Work to this also contributed by Jonas Haggqvist. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16343 a1c6a512-1295-4272-9138-f99709370657
* eeek, revert the FS#8482 commit again as it broke the bootloaders and theDaniel Stenberg2008-02-17
| | | | | | | generated size wasn't actually used yet! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16339 a1c6a512-1295-4272-9138-f99709370657
* FS#8482:Daniel Stenberg2008-02-17
| | | | | | | | | Build system tweak that builds all languages first, to make the system able to use a buffer size that fits the larger language only. Parts of this work done by Jonas Haggqvist, but all the mistakes are my own! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16337 a1c6a512-1295-4272-9138-f99709370657
* Bulgarian should work on the Player - no need to exclude it.Jonas Häggqvist2008-02-17
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16335 a1c6a512-1295-4272-9138-f99709370657
* Exclude languages that don't work on the Player's charcell display when ↵Jonas Häggqvist2008-02-17
| | | | | | building for the Player. Also include commented out functionality to exclude langauges on all targets (such as very incomplete languages in case of release). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16334 a1c6a512-1295-4272-9138-f99709370657
* FS#5690 - folders with a file named database.ignore will be skipped by the ↵Jonathan Gordon2007-11-21
| | | | | | database when it rebuilds, (this includes any subdirs in that fodler) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15738 a1c6a512-1295-4272-9138-f99709370657
* Fix FS#7549 - plugins would only get listed once in viewers.config which ↵Jonathan Gordon2007-08-07
| | | | | | meant some extensions dont appear as supported git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14228 a1c6a512-1295-4272-9138-f99709370657
* Accept FS#5464 - organise the rocks directory. Jonathan Gordon2007-08-06
| | | | | | | If any plugins or "open with" optoins dont work please let me know... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14214 a1c6a512-1295-4272-9138-f99709370657
* *** Lang v2 cleanup (FS#6574) ***Nils Wallménius2007-08-05
| | | | | | | | | | | | | | | | | | | 1) Introduces apps/features.txt that controls which strings are included for each target based on defines. 2) .lng and .voice files are now target specific and the format versions of both these file types have been bumped, which means that new voice files are needed. 3) Use the 'features' mechanism to exclude strings for targets that didn't use them. 4) Delete unused and deprecated and duplicated strings, sort strings in english.lang Some string IDs were changed so translations will be slightly worse than before. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14198 a1c6a512-1295-4272-9138-f99709370657
* Some more sokoban changes from Sean Morrisey's FS #6702. (includes moving ↵Antoine Cellerier2007-06-29
| | | | | | the default level file back to the previous filename) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13738 a1c6a512-1295-4272-9138-f99709370657
* Apply FS #6702: More Sokoban Improvements.Antoine Cellerier2007-06-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13731 a1c6a512-1295-4272-9138-f99709370657
* Make user-visible spelling "colours" rather than "colors".Paul Louden2007-06-19
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13671 a1c6a512-1295-4272-9138-f99709370657
* Add a sample.icons file, and add a few more files to the docs folder in the zipsJonathan Gordon2007-06-18
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13664 a1c6a512-1295-4272-9138-f99709370657
* only create the recpresets directory on recording targets.Jonathan Gordon2007-05-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13511 a1c6a512-1295-4272-9138-f99709370657
* this adds 2 options to the recording settings menu to let you save all the ↵Jonathan Gordon2007-05-29
| | | | | | | | | | recording settings to a .cfg and view your saved presets. saves them in /.rockbox/recpresets. also moves the default location for "write theme config" to /.rockbox/themes git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13510 a1c6a512-1295-4272-9138-f99709370657
* introducing rockbox-info.txtDaniel Stenberg2007-04-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13216 a1c6a512-1295-4272-9138-f99709370657
* * its name[rows][columns] you drongo!Jonathan Gordon2007-04-16
| | | | | | | | | * make custom viewer icons work slightly better * minor nit-picks to keep crop happy * create a /.rockbox/themes/default_rockbox_icons.cfg to restore the default icons easily git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13183 a1c6a512-1295-4272-9138-f99709370657
* copy+paste mistakeJonathan Gordon2007-04-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13178 a1c6a512-1295-4272-9138-f99709370657
* Customizable icons for all bitmap targets. (FS#7013)Jonathan Gordon2007-04-16
| | | | | | | http://www.rockbox.org/twiki/bin/view/Main/CustomIcons for info on format and how to load them git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13177 a1c6a512-1295-4272-9138-f99709370657
* Enable building WPSs and themes for charcell targets, and add an example WPS ↵Jens Arnold2007-04-04
| | | | | | using special charcell progress and text alignment. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13015 a1c6a512-1295-4272-9138-f99709370657
* Player: Reduced the selectable codepages to those which can actually work, ↵Jens Arnold2007-04-01
| | | | | | and made them work. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12990 a1c6a512-1295-4272-9138-f99709370657
* remove the debug output againDaniel Stenberg2007-03-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12854 a1c6a512-1295-4272-9138-f99709370657
* fix binary extension checkDaniel Stenberg2007-03-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12853 a1c6a512-1295-4272-9138-f99709370657
* FS#6840 - Move rockbox.* inside .rockbox on targets that allow it.Barry Wardell2007-03-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12851 a1c6a512-1295-4272-9138-f99709370657
* fix warningsDaniel Stenberg2007-03-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12736 a1c6a512-1295-4272-9138-f99709370657
* simplified the code and now invokes gcc to figure out specific target specificsDaniel Stenberg2007-03-12
| | | | | | | to allow better crafting of zips for specific target configs git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12734 a1c6a512-1295-4272-9138-f99709370657
* Enable ROM file generation for H120/H140.Miika Pekkarinen2007-01-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11947 a1c6a512-1295-4272-9138-f99709370657
* Removed the Gmini 120 and Gmini SP code. These ports are dead, unfortunately.Jens Arnold2006-11-10
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11504 a1c6a512-1295-4272-9138-f99709370657
* Add some presets for the equalizer. Includes a Default preset that resets ↵Dan Everton2006-10-12
| | | | | | everything. From FS#6113, thanks to David Quesada. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11209 a1c6a512-1295-4272-9138-f99709370657
* Adding the rockbox file for all packages except the font-only packages mightDaniel Stenberg2006-05-11
| | | | | | | be considered a cool idea. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9904 a1c6a512-1295-4272-9138-f99709370657
* 'make zip' no longer includes the fonts. 'make fontzip' makes a font packageDaniel Stenberg2006-05-10
| | | | | | | | | only. 'make fullzip' makes a full zip including fonts. http://www.rockbox.org/mail/archive/rockbox-dev-archive-2006-05/0049.shtml git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9902 a1c6a512-1295-4272-9138-f99709370657
* Initial support for the advanced conditional fully configurable tagcacheMiika Pekkarinen2006-04-04
| | | | | | | | browser. Browsing not supported by numeric tags yet, and some features work currently only when tagcache is loaded in ram. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9501 a1c6a512-1295-4272-9138-f99709370657
* langv2Daniel Stenberg2006-04-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9470 a1c6a512-1295-4272-9138-f99709370657
* only ship the licences as the other plain text doc files are waaaay outDaniel Stenberg2006-03-25
| | | | | | | of date git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9255 a1c6a512-1295-4272-9138-f99709370657
* exclude more bitmap and swcodec things from the player zipsDaniel Stenberg2006-03-18
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9103 a1c6a512-1295-4272-9138-f99709370657