summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-01-22 23:32:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-01-22 23:32:34 +0000
commit2c923a5efcd0b82bcf4a609ffc2d71c3556f9d4a (patch)
tree2ad52eda1ad0752de1e2703be072aefe869798f4
parent19c0664d3b7e46825f5485dd33bcb98562d50331 (diff)
downloadrockbox-2c923a5efcd0b82bcf4a609ffc2d71c3556f9d4a.tar.gz
rockbox-2c923a5efcd0b82bcf4a609ffc2d71c3556f9d4a.zip
Added (somewhat blurry) boot logo for X5 and made sure it builds logos for
remote fine git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8421 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/bitmaps/native/SOURCES2
-rw-r--r--apps/bitmaps/native/rockboxlogo.160x50x16.bmpbin0 -> 24054 bytes
-rw-r--r--apps/recorder/icons.h5
-rwxr-xr-xtools/configure2
4 files changed, 9 insertions, 0 deletions
diff --git a/apps/bitmaps/native/SOURCES b/apps/bitmaps/native/SOURCES
index f15624bb34..b4ac2e8cb2 100644
--- a/apps/bitmaps/native/SOURCES
+++ b/apps/bitmaps/native/SOURCES
@@ -5,6 +5,8 @@
5rockboxlogo.112x37x1.bmp 5rockboxlogo.112x37x1.bmp
6#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 2) 6#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 2)
7rockboxlogo.160x53x2.bmp 7rockboxlogo.160x53x2.bmp
8#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 16)
9rockboxlogo.160x50x16.bmp
8#elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16) 10#elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16)
9rockboxlogo.176x54x16.bmp 11rockboxlogo.176x54x16.bmp
10#elif (LCD_WIDTH >= 220) && (LCD_DEPTH == 16) 12#elif (LCD_WIDTH >= 220) && (LCD_DEPTH == 16)
diff --git a/apps/bitmaps/native/rockboxlogo.160x50x16.bmp b/apps/bitmaps/native/rockboxlogo.160x50x16.bmp
new file mode 100644
index 0000000000..59e472def1
--- /dev/null
+++ b/apps/bitmaps/native/rockboxlogo.160x50x16.bmp
Binary files differ
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index 1ff6a670f8..258d93b444 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -90,6 +90,11 @@ extern const fb_data rockboxlogo[];
90#define ROCKBOXLOGO_WIDTH 160 90#define ROCKBOXLOGO_WIDTH 160
91#define ROCKBOXLOGO_HEIGHT 53 91#define ROCKBOXLOGO_HEIGHT 53
92 92
93#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 16)
94/* iAudio X5 */
95#define ROCKBOXLOGO_WIDTH 160
96#define ROCKBOXLOGO_HEIGHT 50
97
93#elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16) 98#elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16)
94/* iPod Nano */ 99/* iPod Nano */
95#define ROCKBOXLOGO_WIDTH 176 100#define ROCKBOXLOGO_WIDTH 176
diff --git a/tools/configure b/tools/configure
index e7a7c8d27f..9d51e4077f 100755
--- a/tools/configure
+++ b/tools/configure
@@ -680,6 +680,8 @@ appsdir='\$(ROOTDIR)/apps'
680 tool="$rootdir/tools/scramble -add=x5" # wrong, must be fixed 680 tool="$rootdir/tools/scramble -add=x5" # wrong, must be fixed
681 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" 681 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
682 bmp2rb_native="$rootdir/tools/bmp2rb -f 4" 682 bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
683 bmp2rb_remotemono="$rootdir/tools/bmp2rb -f 0"
684 bmp2rb_remotenative="$rootdir/tools/bmp2rb -f 0"
683 output="rockbox.iaudio" 685 output="rockbox.iaudio"
684 appextra="recorder:gui" 686 appextra="recorder:gui"
685 archosrom="" 687 archosrom=""