From ce54f866b2b9e48bab73acd73b4c05a057f9ddca Mon Sep 17 00:00:00 2001 From: Samuel Mendoza-Jonas Date: Wed, 8 Jun 2016 13:51:28 +1000 Subject: 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 --- discover/platform.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'discover/platform.c') 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); -- cgit v1.2.1