cmdline.c 692 字节
Newer Older
1 2
#include "misc.h"

3 4
#ifdef CONFIG_EARLY_PRINTK

5 6 7 8 9 10 11 12 13 14 15
static unsigned long fs;
static inline void set_fs(unsigned long seg)
{
	fs = seg << 4;  /* shift it back */
}
typedef unsigned long addr_t;
static inline char rdfs8(addr_t addr)
{
	return *((char *)(fs + addr));
}
#include "../cmdline.c"
Y
Yinghai Lu 已提交
16 17 18 19 20 21
static unsigned long get_cmd_line_ptr(void)
{
	unsigned long cmd_line_ptr = real_mode->hdr.cmd_line_ptr;

	return cmd_line_ptr;
}
22 23
int cmdline_find_option(const char *option, char *buffer, int bufsize)
{
Y
Yinghai Lu 已提交
24
	return __cmdline_find_option(get_cmd_line_ptr(), option, buffer, bufsize);
25 26 27
}
int cmdline_find_option_bool(const char *option)
{
Y
Yinghai Lu 已提交
28
	return __cmdline_find_option_bool(get_cmd_line_ptr(), option);
29
}
30 31

#endif