diff options
author | Kristian Høgsberg <krh@redhat.com> | 2008-05-30 00:31:15 +0200 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-05-31 02:00:47 +0200 |
commit | 3b6b9293d0f8e1b11630102013ca2a1dcef17d44 (patch) | |
tree | cd1fc0fac98d436b63a6e9062e5fdba72b8c5d17 /include | |
parent | x86: Use structs instead of hardcoded offsets in x86 boot decompressor. (diff) | |
download | linux-3b6b9293d0f8e1b11630102013ca2a1dcef17d44.tar.xz linux-3b6b9293d0f8e1b11630102013ca2a1dcef17d44.zip |
x86: Honor 'quiet' command line option in real mode boot decompressor.
This patch lets the early real mode code look for the 'quiet' option
on the kernel command line and pass a loadflag to the decompressor.
When this flag is set, we suppress the "Decompressing Linux... Parsing
ELF... done." messages.
Signed-off-by: Kristian Høgsberg <krh@redhat.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/bootparam.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-x86/bootparam.h b/include/asm-x86/bootparam.h index f62f4733606b..3e36ba8f288b 100644 --- a/include/asm-x86/bootparam.h +++ b/include/asm-x86/bootparam.h @@ -40,6 +40,7 @@ struct setup_header { __u8 type_of_loader; __u8 loadflags; #define LOADED_HIGH (1<<0) +#define QUIET_FLAG (1<<5) #define KEEP_SEGMENTS (1<<6) #define CAN_USE_HEAP (1<<7) __u16 setup_move_size; |