summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-06-18 09:32:28 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-06-18 09:32:28 +0000
commit06797c2c7fd2643343f3209e9f9c940565fe6f1b (patch)
tree1a4ab1d3e6a7cb9693736bc5fb52bfbba2a3828b
parent24d167206f42140d5e1cedb62053d7e0dd83abaf (diff)
downloadrockbox-06797c2c7fd2643343f3209e9f9c940565fe6f1b.tar.gz
rockbox-06797c2c7fd2643343f3209e9f9c940565fe6f1b.zip
Add a sample.icons file, and add a few more files to the docs folder in the zips
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13664 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--docs/sample.icons9
-rwxr-xr-xtools/buildzip.pl9
2 files changed, 18 insertions, 0 deletions
diff --git a/docs/sample.icons b/docs/sample.icons
new file mode 100644
index 0000000000..7673dcbad0
--- /dev/null
+++ b/docs/sample.icons
@@ -0,0 +1,9 @@
1# this line sets the mpeg icon to the 4th icon in the viewers bmp file
2# 0 is the first icon
3mpeg: 3
4
5# this one sets bmp to the 5th icon of the main iconset (0 is the first one again)
6bmp: *5
7
8# This sets no icon for wav
9wav: -
diff --git a/tools/buildzip.pl b/tools/buildzip.pl
index 1d869f8426..79cf59c7eb 100755
--- a/tools/buildzip.pl
+++ b/tools/buildzip.pl
@@ -356,9 +356,18 @@ STOP
356 mkdir ".rockbox/docs", 0777; 356 mkdir ".rockbox/docs", 0777;
357 for(("COPYING", 357 for(("COPYING",
358 "LICENSES", 358 "LICENSES",
359 "KNOWN_ISSUES"
359 )) { 360 )) {
360 `cp $ROOT/docs/$_ .rockbox/docs/$_.txt`; 361 `cp $ROOT/docs/$_ .rockbox/docs/$_.txt`;
361 } 362 }
363 if ($fonts) {
364 `cp $ROOT/docs/profontdoc.txt .rockbox/docs/`;
365 }
366 for(("sample.colors",
367 "sample.icons"
368 )) {
369 `cp $ROOT/docs/$_ .rockbox/docs/`;
370 }
362 371
363 # Now do the WPS dance 372 # Now do the WPS dance
364 if(-d "$ROOT/wps") { 373 if(-d "$ROOT/wps") {