x86, boot: Sanitize boot_params if not zeroed on creation
[deliverable/linux.git] / arch / x86 / boot / compressed / misc.h
CommitLineData
8fee13a4
YL
1#ifndef BOOT_COMPRESSED_MISC_H
2#define BOOT_COMPRESSED_MISC_H
3
4/*
5 * we have to be careful, because no indirections are allowed here, and
6 * paravirt_ops is a kind of one. As it will only run in baremetal anyway,
7 * we just keep it from happening
8 */
9#undef CONFIG_PARAVIRT
10#ifdef CONFIG_X86_32
11#define _ASM_X86_DESC_H 1
12#endif
13
14#include <linux/linkage.h>
15#include <linux/screen_info.h>
16#include <linux/elf.h>
17#include <linux/io.h>
18#include <asm/page.h>
19#include <asm/boot.h>
20#include <asm/bootparam.h>
5dcd14ec 21#include <asm/bootparam_utils.h>
8fee13a4
YL
22
23#define BOOT_BOOT_H
6238b47b 24#include "../ctype.h"
8fee13a4
YL
25
26/* misc.c */
27extern struct boot_params *real_mode; /* Pointer to real-mode data */
7aac3015
JM
28void __putstr(const char *s);
29#define error_putstr(__x) __putstr(__x)
30
31#ifdef CONFIG_X86_VERBOSE_BOOTUP
32
33#define debug_putstr(__x) __putstr(__x)
34
35#else
36
37static inline void debug_putstr(const char *s)
38{ }
39
40#endif
8fee13a4 41
bd448d4d
GC
42#ifdef CONFIG_EARLY_PRINTK
43
8fee13a4
YL
44/* cmdline.c */
45int cmdline_find_option(const char *option, char *buffer, int bufsize);
46int cmdline_find_option_bool(const char *option);
47
48/* early_serial_console.c */
49extern int early_serial_base;
50void console_init(void);
51
cec49df9
JM
52#else
53
bd448d4d 54/* early_serial_console.c */
cec49df9
JM
55static const int early_serial_base;
56static inline void console_init(void)
57{ }
58
59#endif
60
8fee13a4 61#endif
This page took 0.160397 seconds and 5 git commands to generate.