1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#include <linux/init.h>
22#include <linux/version.h>
23#include <linux/config.h>
24
25#ifndef CONFIG_DECSTATION
26# include <asm/linux_logo_sgi.h>
27#else
28# include <asm/linux_logo_dec.h>
29#endif
30
31#ifndef INCLUDE_LINUX_LOGO_DATA
32
33extern unsigned char linux_logo_red[];
34extern unsigned char linux_logo_green[];
35extern unsigned char linux_logo_blue[];
36extern unsigned char linux_logo[];
37extern unsigned char linux_logo_bw[];
38extern unsigned char linux_logo16_red[];
39extern unsigned char linux_logo16_green[];
40extern unsigned char linux_logo16_blue[];
41extern unsigned char linux_logo16[];
42
43#endif
44