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 @@ +# this line sets the mpeg icon to the 4th icon in the viewers bmp file +# 0 is the first icon +mpeg: 3 + +# this one sets bmp to the 5th icon of the main iconset (0 is the first one again) +bmp: *5 + +# This sets no icon for wav +wav: - 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 mkdir ".rockbox/docs", 0777; for(("COPYING", "LICENSES", + "KNOWN_ISSUES" )) { `cp $ROOT/docs/$_ .rockbox/docs/$_.txt`; } + if ($fonts) { + `cp $ROOT/docs/profontdoc.txt .rockbox/docs/`; + } + for(("sample.colors", + "sample.icons" + )) { + `cp $ROOT/docs/$_ .rockbox/docs/`; + } # Now do the WPS dance if(-d "$ROOT/wps") {