From 9a4ddbc85674f341854696ea2d55af038d23df8d Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Fri, 11 Jun 2004 14:42:40 +0000 Subject: in testing mode, try to open cmdline file in current directory before trying in /proc --- mdk-stage1/tools.c | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) (limited to 'mdk-stage1/tools.c') diff --git a/mdk-stage1/tools.c b/mdk-stage1/tools.c index 76a70dec0..2a5200aa7 100644 --- a/mdk-stage1/tools.c +++ b/mdk-stage1/tools.c @@ -53,13 +53,23 @@ static int param_number = 0; void process_cmdline(void) { char buf[512]; - int fd, size, i; - - log_message("opening /proc/cmdline... "); - - if ((fd = open("/proc/cmdline", O_RDONLY)) == -1) - fatal_error("could not open /proc/cmdline"); - + int size, i; + int fd = -1; + + if (IS_TESTING) { + log_message("TESTING: opening cmdline... "); + + if ((fd = open("cmdline", O_RDONLY)) == -1) + log_message("TESTING: could not open cmdline"); + } + + if (fd == -1) { + log_message("opening /proc/cmdline... "); + + if ((fd = open("/proc/cmdline", O_RDONLY)) == -1) + fatal_error("could not open /proc/cmdline"); + } + size = read(fd, buf, sizeof(buf)); buf[size-1] = '\0'; // -1 to eat the \n close(fd); -- cgit v1.2.1