summaryrefslogtreecommitdiffstats
path: root/discover/platform.c
diff options
context:
space:
mode:
authorSamuel Mendoza-Jonas <sam@mendozajonas.com>2016-06-08 13:51:28 +1000
committerSamuel Mendoza-Jonas <sam@mendozajonas.com>2016-06-29 14:19:08 +1000
commitce54f866b2b9e48bab73acd73b4c05a057f9ddca (patch)
tree1c96e2ffcea00f5806262aba9e7ec95e6c8bed3f /discover/platform.c
parentd19b94a83870f7b2a41e55d7462bcf36d2b5ba0b (diff)
downloadtalos-petitboot-ce54f866b2b9e48bab73acd73b4c05a057f9ddca.tar.gz
talos-petitboot-ce54f866b2b9e48bab73acd73b4c05a057f9ddca.zip
discover: Add petitboot,tty and track available consoles
Add the NVRAM parameter petitboot,tty which sets the default console to use when booting a kernel. In load_config() construct a list of available consoles depending on the current platform. A future patch depending on firmware changes will allow this list to be constructed dynamically. Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
Diffstat (limited to 'discover/platform.c')
-rw-r--r--discover/platform.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/discover/platform.c b/discover/platform.c
index fc0930d..254da97 100644
--- a/discover/platform.c
+++ b/discover/platform.c
@@ -79,6 +79,12 @@ static void dump_config(struct config *config)
pb_log(" IPMI boot device 0x%02x%s\n", config->ipmi_bootdev,
config->ipmi_bootdev_persistent ? " (persistent)" : "");
+ pb_log(" Modifications allowed to disks: %s\n",
+ config->allow_writes ? "yes" : "no");
+
+ pb_log(" Default UI to boot on: %s\n",
+ config->boot_tty ?: "none set");
+
pb_log(" language: %s\n", config->lang ?: "");
}
@@ -117,6 +123,10 @@ void config_set_defaults(struct config *config)
config->allow_writes = true;
config->disable_snapshots = false;
+ config->n_tty = 0;
+ config->tty_list = NULL;
+ config->boot_tty = NULL;
+
config->n_autoboot_opts = 2;
config->autoboot_opts = talloc_array(config, struct autoboot_option,
config->n_autoboot_opts);
OpenPOWER on IntegriCloud