From patchwork Tue Oct 25 03:44:48 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sam Mendoza-Jonas X-Patchwork-Id: 686305 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3t2zZR1c4kz9t1L for ; Tue, 25 Oct 2016 14:45:35 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=mendozajonas.com header.i=@mendozajonas.com header.b=X+tC9BQv; dkim-atps=neutral Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 3t2zZR0FsCzDvk4 for ; Tue, 25 Oct 2016 14:45:35 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=mendozajonas.com header.i=@mendozajonas.com header.b=X+tC9BQv; dkim-atps=neutral X-Original-To: petitboot@lists.ozlabs.org Delivered-To: petitboot@lists.ozlabs.org Received: from mendozajonas.com (mendozajonas.com [188.166.185.233]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3t2zYw4vPCzDvjl for ; Tue, 25 Oct 2016 14:45:08 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=mendozajonas.com header.i=@mendozajonas.com header.b=X+tC9BQv; dkim-atps=neutral Received: from skellige.ozlabs.ibm.com (unknown [122.99.82.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: sam@mendozajonas.com) by mendozajonas.com (Postfix) with ESMTPSA id D678B143FB6; Tue, 25 Oct 2016 11:45:03 +0800 (SGT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mendozajonas.com; s=mail; t=1477367104; bh=kMynCh6WFyz0L3GuS7w6oAieUXoRr6mSMYERr9Epmyo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=X+tC9BQvbTVPk1eqltT/tNmcA9Q9BOyy7bOXwGR2IZDeyGZJT0BnNjCOcasvz6bKR ePJm5yvDnALN3pDrzNK1umKDe9MlkIBnlCQ5mX2T/s5hNa5zbsyGNrSpaRgoyankQK pLOmmj7Vv1yYFcYr47aWn6VP7zaj+U6p7iJH1UrA= From: Samuel Mendoza-Jonas To: petitboot@lists.ozlabs.org Subject: [PATCH 6/6] ui/ncurses: Update titles to mention ISO files Date: Tue, 25 Oct 2016 14:44:48 +1100 Message-Id: <20161025034448.28723-6-sam@mendozajonas.com> X-Mailer: git-send-email 2.10.0 In-Reply-To: <20161025034448.28723-1-sam@mendozajonas.com> References: <20161025034448.28723-1-sam@mendozajonas.com> X-BeenThere: petitboot@lists.ozlabs.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Petitboot bootloader development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Samuel Mendoza-Jonas MIME-Version: 1.0 Errors-To: petitboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Petitboot" Signed-off-by: Samuel Mendoza-Jonas --- ui/ncurses/nc-add-url.c | 2 +- ui/ncurses/nc-cui.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/ncurses/nc-add-url.c b/ui/ncurses/nc-add-url.c index 451b050..41dab42 100644 --- a/ui/ncurses/nc-add-url.c +++ b/ui/ncurses/nc-add-url.c @@ -237,7 +237,7 @@ struct add_url_screen *add_url_screen_init(struct cui *cui, NULL); screen->scr.frame.ltitle = talloc_strdup(screen, - _("Petitboot Config Retrieval")); + _("Petitboot Config / ISO Retrieval")); screen->scr.frame.rtitle = NULL; screen->scr.frame.help = talloc_strdup(screen, _("tab=next, shift+tab=previous, x=exit, h=help")); diff --git a/ui/ncurses/nc-cui.c b/ui/ncurses/nc-cui.c index c2f1c83..1d6a01e 100644 --- a/ui/ncurses/nc-cui.c +++ b/ui/ncurses/nc-cui.c @@ -882,7 +882,7 @@ static struct pmenu *main_menu_init(struct cui *cui) i->on_execute = menu_reinit_execute; pmenu_item_insert(m, i, 4); - i = pmenu_item_create(m, _("Retrieve config from URL")); + i = pmenu_item_create(m, _("Retrieve config or ISO from URL")); i->on_execute = menu_add_url_execute; pmenu_item_insert(m, i, 5);