[U-Boot-Users] [PATCH] FSL-Add-a-freescale-bitmap-logo.patch

Wolfgang,
This gzip'ed file is the output of git-format-patch on one Freescale Logo file that is 68K large; too large for a single clear-text post.
Wolfgang, you were right to question my orginal size of this file! It caused me to go look further... It turned out to be two logos, only one of which was use! Gah.
This patch is basically as follows:
jdl
------------------------------------------------------------------
From e0328eae237074becfbb37adf978906f4828ef1c Mon Sep 17 00:00:00 2001
From: York Sun yorksun@freescale.com Date: Wed, 31 Oct 2007 10:43:59 -0500 Subject: [PATCH 1/3] FSL: Add a freescale bitmap logo.
This Freescale logo is a 340 x 128 x 4bpp BMP file that can be displayed by the DIU Framebuffer driver.
Signed-off-by: York Sun yorksun@freescale.com Signed-off-by: Jon Loeliger jdl@freescale.com --- board/freescale/common/fsl_logo_bmp.c | 878 +++++++++++++++++++++++++++++++++ 1 files changed, 878 insertions(+), 0 deletions(-) create mode 100644 board/freescale/common/fsl_logo_bmp.c
diff --git a/board/freescale/common/fsl_logo_bmp.c b/board/freescale/common/fsl_logo_bmp.c new file mode 100644 index 0000000..956dbee --- /dev/null +++ b/board/freescale/common/fsl_logo_bmp.c @@ -0,0 +1,878 @@ +/* + * Copyright 2007 Freescale Semiconductor, Inc. + * York Sun yorksun@freescale.com + * + * See file CREDITS for list of people who contributed to this + * project. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + */ + +/*--------------------------------------------------------------------------- + * FSL_Logo_BMP -- + * + * A 340x128x4bpp BMP logo. + *--------------------------------------------------------------------------- + */ +unsigned int FSL_Logo_BMP[] = { +0x424d765c, +0x00000000,0x00007600,0x00002800,0x00006c01,0x00008000,0x00000100,0x04000000, +0x0000005c,0x0000130b,0x0000130b,0x00001000,0x00000000,0x00000402,0x04000d91, +0xbc000b51,0x67001536,0x9a000f2a,0x4b005050,0x50009090,0x90000c70,0x92002e2f, +0x2e00cfcf,0xcf007c82,0x7c00fbfd,0xfb006f70,0x6f00b0b0,0xb00004bd,0xfa000542, +0xf9000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, +0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, +0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
[ snip ]
+0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, +0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, +0x00000000,0x0000babe +};
participants (1)
-
Jon Loeliger