xref: /openbmc/linux/arch/x86/boot/compressed/cmdline.c (revision 565d76cb)
1 #include "misc.h"
2 
3 static unsigned long fs;
4 static inline void set_fs(unsigned long seg)
5 {
6 	fs = seg << 4;  /* shift it back */
7 }
8 typedef unsigned long addr_t;
9 static inline char rdfs8(addr_t addr)
10 {
11 	return *((char *)(fs + addr));
12 }
13 #include "../cmdline.c"
14 int cmdline_find_option(const char *option, char *buffer, int bufsize)
15 {
16 	return __cmdline_find_option(real_mode->hdr.cmd_line_ptr, option, buffer, bufsize);
17 }
18 int cmdline_find_option_bool(const char *option)
19 {
20 	return __cmdline_find_option_bool(real_mode->hdr.cmd_line_ptr, option);
21 }
22