1 /*
2 * include/asm-ppc/linux_logo.h: A linux logo to be displayed on boot
3 * (pinched from the sparc port).
4 *
5 * Copyright (C) 1996 Larry Ewing (lewing@isc.tamu.edu)
6 * Copyright (C) 1996 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
7 *
8 * You can put anything here, but:
9 * LINUX_LOGO_COLORS has to be less than 224
10 * values have to start from 0x20
11 * (i.e. linux_logo_{red,green,blue}[0] is color 0x20)
12 */
13 #ifdef __KERNEL__
14
15 #include <linux/init.h>
16
17 #define linux_logo_banner "Linux/PPC version " UTS_RELEASE
18
19 #define LINUX_LOGO_HEIGHT 80
20 #define LINUX_LOGO_WIDTH 80
21 #define LINUX_LOGO_COLORS 214
22
23 #ifdef INCLUDE_LINUX_LOGO_DATA
24
25 #define INCLUDE_LINUX_LOGOBW
26 #define INCLUDE_LINUX_LOGO16
27 #include <linux/linux_logo.h>
28
29 #else
30
31 /* prototypes only */
32 extern unsigned char linux_logo_red[];
33 extern unsigned char linux_logo_green[];
34 extern unsigned char linux_logo_blue[];
35 extern unsigned char linux_logo[];
36 extern unsigned char linux_logo_bw[];
37 extern unsigned char linux_logo16_red[];
38 extern unsigned char linux_logo16_green[];
39 extern unsigned char linux_logo16_blue[];
40 extern unsigned char linux_logo16[];
41
42 #endif
43 #endif /* __KERNEL__ */
44
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.