diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2010-04-24 00:05:49 +1000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-05-06 00:17:01 +0200 |
commit | 95ffaba39042064c5eb68404894fd6b0f1d6a3e3 (patch) | |
tree | 6a0a1572913552b1f6a94987a341677c00dbfc36 /arch/i386/include/asm/video | |
parent | 79ea6b87011c0524ced31359e2be7aac97c29d0a (diff) | |
download | u-boot-imx-95ffaba39042064c5eb68404894fd6b0f1d6a3e3.zip u-boot-imx-95ffaba39042064c5eb68404894fd6b0f1d6a3e3.tar.gz u-boot-imx-95ffaba39042064c5eb68404894fd6b0f1d6a3e3.tar.bz2 |
x86: Fix support for booting bzImage
Add support for newer (up to 2.6.33) kernels
Add zboot command which takes the address of a bzImage as its first
argument and (optionally) the size of the bzImage as the second argument
(the second argument is needed for older kernels which do not include
the bzImage size in the header)
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'arch/i386/include/asm/video')
-rw-r--r-- | arch/i386/include/asm/video/edid.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/i386/include/asm/video/edid.h b/arch/i386/include/asm/video/edid.h new file mode 100644 index 0000000..928c342 --- /dev/null +++ b/arch/i386/include/asm/video/edid.h @@ -0,0 +1,16 @@ +#ifndef __linux_video_edid_h__ +#define __linux_video_edid_h__ + +#if !defined(__KERNEL__) || defined(CONFIG_X86) + +struct edid_info { + unsigned char dummy[128]; +}; + +#ifdef __KERNEL__ +extern struct edid_info edid_info; +#endif /* __KERNEL__ */ + +#endif + +#endif /* __linux_video_edid_h__ */ |