]> git.ozlabs.org Git - petitboot/blobdiff - discover/platform.c
Use 'consoles' instead of 'tty' to refer to interfaces
[petitboot] / discover / platform.c
index 254da979b41e2cc8157ba39f0ad9734979d43498..95a905d6ec82eac746c1bd6d38f928d34c4f4aa1 100644 (file)
@@ -83,7 +83,7 @@ static void dump_config(struct config *config)
                        config->allow_writes ? "yes" : "no");
 
        pb_log("  Default UI to boot on: %s\n",
                        config->allow_writes ? "yes" : "no");
 
        pb_log("  Default UI to boot on: %s\n",
-               config->boot_tty ?: "none set");
+               config->boot_console ?: "none set");
 
 
        pb_log(" language: %s\n", config->lang ?: "");
 
 
        pb_log(" language: %s\n", config->lang ?: "");
@@ -123,9 +123,9 @@ void config_set_defaults(struct config *config)
        config->allow_writes = true;
        config->disable_snapshots = false;
 
        config->allow_writes = true;
        config->disable_snapshots = false;
 
-       config->n_tty = 0;
-       config->tty_list = NULL;
-       config->boot_tty = NULL;
+       config->n_consoles = 0;
+       config->consoles = NULL;
+       config->boot_console = NULL;
 
        config->n_autoboot_opts = 2;
        config->autoboot_opts = talloc_array(config, struct autoboot_option,
 
        config->n_autoboot_opts = 2;
        config->autoboot_opts = talloc_array(config, struct autoboot_option,