summaryrefslogtreecommitdiff
path: root/apps/bitmaps
diff options
context:
space:
mode:
Diffstat (limited to 'apps/bitmaps')
-rw-r--r--apps/bitmaps/mono/Makefile32
-rw-r--r--apps/bitmaps/mono/SOURCES0
-rw-r--r--apps/bitmaps/native/Makefile32
-rw-r--r--apps/bitmaps/native/SOURCES14
-rw-r--r--apps/bitmaps/native/rockboxlogo.112x37x1.bmpbin0 -> 654 bytes
-rw-r--r--apps/bitmaps/native/rockboxlogo.160x53x2.bmpbin0 -> 4550 bytes
-rw-r--r--apps/bitmaps/native/rockboxlogo.176x54x16.bmpbin0 -> 28566 bytes
-rw-r--r--apps/bitmaps/native/rockboxlogo.220x68x16.bmpbin0 -> 44934 bytes
-rw-r--r--apps/bitmaps/remote_mono/Makefile32
-rw-r--r--apps/bitmaps/remote_mono/SOURCES0
-rw-r--r--apps/bitmaps/remote_native/Makefile32
-rw-r--r--apps/bitmaps/remote_native/SOURCES3
-rw-r--r--apps/bitmaps/remote_native/remote_rockboxlogo.112x37x1.bmpbin0 -> 654 bytes
13 files changed, 145 insertions, 0 deletions
diff --git a/apps/bitmaps/mono/Makefile b/apps/bitmaps/mono/Makefile
new file mode 100644
index 0000000000..ec75520735
--- /dev/null
+++ b/apps/bitmaps/mono/Makefile
@@ -0,0 +1,32 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9
10INCLUDES= -I$(FIRMDIR)/include -I$(FIRMDIR)/export -I. -I$(BUILDDIR) \
11 -I$(OBJDIR)
12CFLAGS = $(GCCOPTS) $(INCLUDES) $(TARGET) $(EXTRA_DEFINES)
13
14# This sets up 'SRC' based on the files mentioned in SOURCES
15include $(TOOLSDIR)/makesrc.inc
16
17SOURCES = $(SRC)
18CSRC := $(SRC:%.bmp=$(OBJDIR)/%.c)
19OBJS := $(CSRC:%.c=%.o)
20DEPFILE = $(OBJDIR)/dep-bitmaps-mono
21
22BMP2RB = $(BMP2RB_MONO)
23OUTPUT = $(BUILDDIR)/libbitmapsmono.a
24
25include $(TOOLSDIR)/makebmp.inc
26
27clean:
28 @echo "cleaning bitmaps/mono"
29 @rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE)
30 @rmdir $(OBJDIR)
31
32-include $(DEPFILE)
diff --git a/apps/bitmaps/mono/SOURCES b/apps/bitmaps/mono/SOURCES
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/apps/bitmaps/mono/SOURCES
diff --git a/apps/bitmaps/native/Makefile b/apps/bitmaps/native/Makefile
new file mode 100644
index 0000000000..17e9376dd9
--- /dev/null
+++ b/apps/bitmaps/native/Makefile
@@ -0,0 +1,32 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9
10INCLUDES= -I$(FIRMDIR)/include -I$(FIRMDIR)/export -I. -I$(BUILDDIR) \
11 -I$(OBJDIR)
12CFLAGS = $(GCCOPTS) $(INCLUDES) $(TARGET) $(EXTRA_DEFINES)
13
14# This sets up 'SRC' based on the files mentioned in SOURCES
15include $(TOOLSDIR)/makesrc.inc
16
17SOURCES = $(SRC)
18CSRC := $(SRC:%.bmp=$(OBJDIR)/%.c)
19OBJS := $(CSRC:%.c=%.o)
20DEPFILE = $(OBJDIR)/dep-bitmaps-native
21
22BMP2RB = $(BMP2RB_NATIVE)
23OUTPUT = $(BUILDDIR)/libbitmapsnative.a
24
25include $(TOOLSDIR)/makebmp.inc
26
27clean:
28 @echo "cleaning bitmaps/native"
29 @rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE)
30 @rmdir $(OBJDIR)
31
32-include $(DEPFILE)
diff --git a/apps/bitmaps/native/SOURCES b/apps/bitmaps/native/SOURCES
new file mode 100644
index 0000000000..f15624bb34
--- /dev/null
+++ b/apps/bitmaps/native/SOURCES
@@ -0,0 +1,14 @@
1#ifdef HAVE_LCD_BITMAP
2
3/* Rockbox logo */
4#if (LCD_DEPTH == 1)
5rockboxlogo.112x37x1.bmp
6#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 2)
7rockboxlogo.160x53x2.bmp
8#elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16)
9rockboxlogo.176x54x16.bmp
10#elif (LCD_WIDTH >= 220) && (LCD_DEPTH == 16)
11rockboxlogo.220x68x16.bmp
12#endif
13
14#endif /* HAVE_LCD_BITMAP */
diff --git a/apps/bitmaps/native/rockboxlogo.112x37x1.bmp b/apps/bitmaps/native/rockboxlogo.112x37x1.bmp
new file mode 100644
index 0000000000..426d9aeef7
--- /dev/null
+++ b/apps/bitmaps/native/rockboxlogo.112x37x1.bmp
Binary files differ
diff --git a/apps/bitmaps/native/rockboxlogo.160x53x2.bmp b/apps/bitmaps/native/rockboxlogo.160x53x2.bmp
new file mode 100644
index 0000000000..05d6ebcb2e
--- /dev/null
+++ b/apps/bitmaps/native/rockboxlogo.160x53x2.bmp
Binary files differ
diff --git a/apps/bitmaps/native/rockboxlogo.176x54x16.bmp b/apps/bitmaps/native/rockboxlogo.176x54x16.bmp
new file mode 100644
index 0000000000..aa84709a2e
--- /dev/null
+++ b/apps/bitmaps/native/rockboxlogo.176x54x16.bmp
Binary files differ
diff --git a/apps/bitmaps/native/rockboxlogo.220x68x16.bmp b/apps/bitmaps/native/rockboxlogo.220x68x16.bmp
new file mode 100644
index 0000000000..1dc68a09f2
--- /dev/null
+++ b/apps/bitmaps/native/rockboxlogo.220x68x16.bmp
Binary files differ
diff --git a/apps/bitmaps/remote_mono/Makefile b/apps/bitmaps/remote_mono/Makefile
new file mode 100644
index 0000000000..9f6997c71a
--- /dev/null
+++ b/apps/bitmaps/remote_mono/Makefile
@@ -0,0 +1,32 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9
10INCLUDES= -I$(FIRMDIR)/include -I$(FIRMDIR)/export -I. -I$(BUILDDIR) \
11 -I$(OBJDIR)
12CFLAGS = $(GCCOPTS) $(INCLUDES) $(TARGET) $(EXTRA_DEFINES)
13
14# This sets up 'SRC' based on the files mentioned in SOURCES
15include $(TOOLSDIR)/makesrc.inc
16
17SOURCES = $(SRC)
18CSRC := $(SRC:%.bmp=$(OBJDIR)/%.c)
19OBJS := $(CSRC:%.c=%.o)
20DEPFILE = $(OBJDIR)/dep-bitmaps-remotemono
21
22BMP2RB = $(BMP2RB_REMOTEMONO)
23OUTPUT = $(BUILDDIR)/libbitmapsremotemono.a
24
25include $(TOOLSDIR)/makebmp.inc
26
27clean:
28 @echo "cleaning bitmaps/remotemono"
29 @rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE)
30 @rmdir $(OBJDIR)
31
32-include $(DEPFILE)
diff --git a/apps/bitmaps/remote_mono/SOURCES b/apps/bitmaps/remote_mono/SOURCES
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/apps/bitmaps/remote_mono/SOURCES
diff --git a/apps/bitmaps/remote_native/Makefile b/apps/bitmaps/remote_native/Makefile
new file mode 100644
index 0000000000..882505ded9
--- /dev/null
+++ b/apps/bitmaps/remote_native/Makefile
@@ -0,0 +1,32 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9
10INCLUDES= -I$(FIRMDIR)/include -I$(FIRMDIR)/export -I. -I$(BUILDDIR) \
11 -I$(OBJDIR)
12CFLAGS = $(GCCOPTS) $(INCLUDES) $(TARGET) $(EXTRA_DEFINES)
13
14# This sets up 'SRC' based on the files mentioned in SOURCES
15include $(TOOLSDIR)/makesrc.inc
16
17SOURCES = $(SRC)
18CSRC := $(SRC:%.bmp=$(OBJDIR)/%.c)
19OBJS := $(CSRC:%.c=%.o)
20DEPFILE = $(OBJDIR)/dep-bitmaps-remotenative
21
22BMP2RB = $(BMP2RB_REMOTENATIVE)
23OUTPUT = $(BUILDDIR)/libbitmapsremotenative.a
24
25include $(TOOLSDIR)/makebmp.inc
26
27clean:
28 @echo "cleaning bitmaps/remote_native"
29 @rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE)
30 @rmdir $(OBJDIR)
31
32-include $(DEPFILE)
diff --git a/apps/bitmaps/remote_native/SOURCES b/apps/bitmaps/remote_native/SOURCES
new file mode 100644
index 0000000000..edb7c2037c
--- /dev/null
+++ b/apps/bitmaps/remote_native/SOURCES
@@ -0,0 +1,3 @@
1#ifdef HAVE_REMOTE_LCD
2remote_rockboxlogo.112x37x1.bmp
3#endif
diff --git a/apps/bitmaps/remote_native/remote_rockboxlogo.112x37x1.bmp b/apps/bitmaps/remote_native/remote_rockboxlogo.112x37x1.bmp
new file mode 100644
index 0000000000..426d9aeef7
--- /dev/null
+++ b/apps/bitmaps/remote_native/remote_rockboxlogo.112x37x1.bmp
Binary files differ