summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2009-09-23 03:24:26 -0400
committerRay Strode <rstrode@redhat.com>2009-09-28 09:07:59 -0400
commit841b77761bd02b73dd3a71debdbe56ec6c007b16 (patch)
tree86425a09f224b57ac4e19eef704c35243d564036
parentb85fb4cbb5b83fca2cef871d88c35b06fc65d57e (diff)
[main] rename state->console to state->kernel_console_tty
The name "console" is sort of ambiguous. It could mean: 1) the keyboard and mouse together (also known as "seat") 2) the VT console 3) /dev/console 4) where /dev/console messages should go In this case we mean 4, so we rename it to kernel_console_tty for clarity.
-rw-r--r--src/main.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/main.c b/src/main.c
index 1feac1d8..a77c45b6 100644
--- a/src/main.c
+++ b/src/main.c
@@ -102,7 +102,7 @@ typedef struct
uint32_t should_be_attached : 1;
uint32_t should_retain_splash : 1;
- char *console;
+ char *kernel_console_tty;
char *override_splash_path;
int number_of_errors;
@@ -523,7 +523,7 @@ plymouth_should_show_default_splash (state_t *state)
};
int i;
- if (state->console != NULL)
+ if (state->kernel_console_tty != NULL)
return false;
if (!has_open_window (state))
@@ -1185,26 +1185,26 @@ check_for_consoles (state_t *state,
char *end;
ply_trace ("serial console found!");
- free (state->console);
- state->console = strdup (console_key + strlen (" console="));
+ free (state->kernel_console_tty);
+ state->kernel_console_tty = strdup (console_key + strlen (" console="));
remaining_command_line = console_key + strlen (" console=");
- end = strpbrk (state->console, " \n\t\v,");
+ end = strpbrk (state->kernel_console_tty, " \n\t\v,");
if (end != NULL)
{
*end = '\0';
- remaining_command_line += end - state->console;
+ remaining_command_line += end - state->kernel_console_tty;
}
- if (strcmp (state->console, "tty0") == 0 || strcmp (state->console, "/dev/tty0") == 0)
+ if (strcmp (state->kernel_console_tty, "tty0") == 0 || strcmp (state->kernel_console_tty, "/dev/tty0") == 0)
{
- free (state->console);
- state->console = strdup (default_tty);
+ free (state->kernel_console_tty);
+ state->kernel_console_tty = strdup (default_tty);
}
- ply_list_append_data (state->windows, create_window (state, state->console));
+ ply_list_append_data (state->windows, create_window (state, state->kernel_console_tty));
}
if (ply_list_get_length (state->windows) == 0)
@@ -1267,8 +1267,8 @@ initialize_environment (state_t *state)
check_for_consoles (state, default_tty);
- if (state->console != NULL)
- redirect_standard_io_to_device (state->console);
+ if (state->kernel_console_tty != NULL)
+ redirect_standard_io_to_device (state->kernel_console_tty);
else
redirect_standard_io_to_device (default_tty);