summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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") {