1/*
2 * BK Id: SCCS/s.linux_logo.h 1.7 05/17/01 18:14:24 cort
3 */
4/*
5 * include/asm-ppc/linux_logo.h: A linux logo to be displayed on boot
6 * (pinched from the sparc port).
7 *
8 * Copyright (C) 1996 Larry Ewing (lewing@isc.tamu.edu)
9 * Copyright (C) 1996 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
10 *
11 * You can put anything here, but:
12 * LINUX_LOGO_COLORS has to be less than 224
13 * values have to start from 0x20
14 * (i.e. linux_logo_{red,green,blue}[0] is color 0x20)
15 */
16#ifdef __KERNEL__
17
18#include <linux/init.h>
19
20#define linux_logo_banner "Linux/PPC version " UTS_RELEASE
21
22#define LINUX_LOGO_HEIGHT	80
23#define LINUX_LOGO_WIDTH	80
24
25#include <linux/linux_logo.h>
26
27#endif /* __KERNEL__ */
28