Yinghai Lu | 8fee13a4 | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 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> |
| 21 | |
| 22 | #define BOOT_BOOT_H |
H. Peter Anvin | 6238b47 | 2010-08-02 21:03:46 -0700 | [diff] [blame] | 23 | #include "../ctype.h" |
Yinghai Lu | 8fee13a4 | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 24 | |
| 25 | /* misc.c */ |
| 26 | extern struct boot_params *real_mode; /* Pointer to real-mode data */ |
Joe Millenbach | 7aac301 | 2012-07-19 18:04:39 -0700 | [diff] [blame^] | 27 | void __putstr(const char *s); |
| 28 | #define error_putstr(__x) __putstr(__x) |
| 29 | |
| 30 | #ifdef CONFIG_X86_VERBOSE_BOOTUP |
| 31 | |
| 32 | #define debug_putstr(__x) __putstr(__x) |
| 33 | |
| 34 | #else |
| 35 | |
| 36 | static inline void debug_putstr(const char *s) |
| 37 | { } |
| 38 | |
| 39 | #endif |
Yinghai Lu | 8fee13a4 | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 40 | |
| 41 | /* cmdline.c */ |
| 42 | int cmdline_find_option(const char *option, char *buffer, int bufsize); |
| 43 | int cmdline_find_option_bool(const char *option); |
| 44 | |
| 45 | /* early_serial_console.c */ |
| 46 | extern int early_serial_base; |
| 47 | void console_init(void); |
| 48 | |
| 49 | #endif |