From patchwork Mon Sep 2 20:07:52 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas De Schampheleire X-Patchwork-Id: 272061 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 71F4C2C0085 for ; Tue, 3 Sep 2013 06:08:26 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 23D2C32AA4; Mon, 2 Sep 2013 20:08:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UfsZOda2kBEj; Mon, 2 Sep 2013 20:08:15 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 388D432A86; Mon, 2 Sep 2013 20:08:12 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 230F11CE5C0 for ; Mon, 2 Sep 2013 20:08:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1B07990C29 for ; Mon, 2 Sep 2013 20:08:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QLCFIWcPWxnV for ; Mon, 2 Sep 2013 20:08:19 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ea0-f177.google.com (mail-ea0-f177.google.com [209.85.215.177]) by whitealder.osuosl.org (Postfix) with ESMTPS id 43F4690C15 for ; Mon, 2 Sep 2013 20:08:19 +0000 (UTC) Received: by mail-ea0-f177.google.com with SMTP id f15so2502821eak.8 for ; Mon, 02 Sep 2013 13:08:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:content-type:mime-version:content-transfer-encoding:subject :message-id:in-reply-to:references:user-agent:date:from:to:cc; bh=B3+j0CoWDzvJtLcflew2U3my0ZermzebL6D1ZeG2tFY=; b=ev/LtaTMewSdhCybQhy6J+IQhLSj0ypg9J8bzuMM14Xct8ogTd2adQIy3I5y03t0bg QQicBE46W0gw2GXJVvRdxGhD8GNaC2H0lG/Ct5sw/B9WJAfMB0BDCxBOlTbMEXjoUCVF ZQz+idAFOTZLrFmCddZg6sDZOkxaAWrTSSFgG+SEneo0xuDBrGuR85k55OcnFOu2F9mP pf3yxXOggaWfUGka5iwdyzoT7GUkz/pd4GJMwuz1cYnRs5VGD8376jmYmddVpsiEmVhU 0mBsrZbeMUN6jCdwoX0ywiTEoVPo9Ev5iDuE/rDxgBsfE/bU3gKC+XdXtPRI/KoYsDPH RUZA== X-Received: by 10.14.199.3 with SMTP id w3mr40386964een.33.1378152497835; Mon, 02 Sep 2013 13:08:17 -0700 (PDT) Received: from [127.0.1.1] (d54C62EEB.access.telenet.be. [84.198.46.235]) by mx.google.com with ESMTPSA id p5sm25251346eeg.5.1969.12.31.16.00.00 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 02 Sep 2013 13:08:17 -0700 (PDT) MIME-Version: 1.0 X-Mercurial-Node: 390f292e28ee40bd95750837e55048cf77fe24d5 Message-Id: <390f292e28ee40bd9575.1378152472@argentina> In-Reply-To: References: User-Agent: Mercurial-patchbomb/2.2.2 Date: Mon, 02 Sep 2013 22:07:52 +0200 From: Thomas De Schampheleire To: buildroot@busybox.net Cc: thomas.petazzoni@free-electrons.com Subject: [Buildroot] [PATCH 3 of 9 v4] Config.in.legacy: add separator to description for users X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net When legacy symbols are selected, the menuconfig shows the explanation for users, immediately followed by the line "Legacy options removed in 2013.08". In order to visually keep these apart, we introduce a separator. Note that a line with all spaces is not correctly shown by menuconfig (the width will not be kept at 80 characters, so the output is '*** ***'). A dashed line seemed a logical alternative, and with another dashed line on top, the description becomes a block. Signed-off-by: Thomas De Schampheleire Acked-by: Arnout Vandecappelle (Essensium/Mind) --- This patch is pure aesthetics. I kept it as a separate patch so it can be rejected easily if you don't feel the same way. v4: no changes (v3): new patch in this series Config.in.legacy | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/Config.in.legacy b/Config.in.legacy --- a/Config.in.legacy +++ b/Config.in.legacy @@ -68,6 +68,7 @@ comment "Legacy detected: check the cont menu "Legacy config options" if BR2_LEGACY +comment "----------------------------------------------------" comment "Your old configuration uses legacy options that no " comment "longer exist in buildroot, as indicated in the menu " comment "below. As long as these options stay selected, or in" @@ -94,6 +95,7 @@ comment "Note: at some point in the futu comment "options will be removed, and configuration files " comment "that still have those options set, will fail to " comment "build, or run, in unpredictable ways. " +comment "----------------------------------------------------" endif ###############################################################################