special usb hub handling, IDE disks, and retries all over the place
[linux-2.4.git] / include / asm-sh64 / linux_logo.h
1 /*
2  * include/asm-shmedia/linux_logo.h
3  *
4  * Copyright (C) 1996 Larry Ewing (lewing@isc.tamu.edu)
5  * Copyright (C) 1996 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
6  *
7  * You can put anything here, but:
8  * LINUX_LOGO_COLORS has to be less than 224
9  * image size has to be 80x80
10  * values have to start from 0x20
11  * (i.e. RGB(linux_logo_red[0],
12  *           linux_logo_green[0],
13  *           linux_logo_blue[0]) is color 0x20)
14  * BW image has to be 80x80 as well, with MS bit
15  * on the left
16  * Serial_console ascii image can be any size,
17  * but should contain %s to display the version
18  */
19  
20 #include <linux/init.h>
21 #include <linux/version.h>
22
23 #define linux_logo_banner "Linux/SHmedia version " UTS_RELEASE
24
25 #define LINUX_LOGO_COLORS 214
26
27 #ifdef INCLUDE_LINUX_LOGO_DATA
28
29 #define INCLUDE_LINUX_LOGOBW
30 #define INCLUDE_LINUX_LOGO16
31
32 #include <linux/linux_logo.h>
33
34 #else
35
36 /* prototypes only */
37 extern unsigned char linux_logo_red[];
38 extern unsigned char linux_logo_green[];
39 extern unsigned char linux_logo_blue[];
40 extern unsigned char linux_logo[];
41 extern unsigned char linux_logo_bw[];
42 extern unsigned char linux_logo16_red[];
43 extern unsigned char linux_logo16_green[];
44 extern unsigned char linux_logo16_blue[];
45 extern unsigned char linux_logo16[];
46
47 #endif