From patchwork Sun May 19 13:52:03 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 1101559 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=konsulko.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 456NlH24Hhz9sBK for ; Sun, 19 May 2019 23:52:58 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id B016DC21C93; Sun, 19 May 2019 13:52:37 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=RCVD_IN_MSPIKE_H2 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 1EF79C21E26; Sun, 19 May 2019 13:52:24 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 92F0DC21DD3; Sun, 19 May 2019 13:52:21 +0000 (UTC) Received: from mail-yb1-f193.google.com (mail-yb1-f193.google.com [209.85.219.193]) by lists.denx.de (Postfix) with ESMTPS id 78EB7C21D56 for ; Sun, 19 May 2019 13:52:20 +0000 (UTC) Received: by mail-yb1-f193.google.com with SMTP id v66so392724ybb.3 for ; Sun, 19 May 2019 06:52:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=ZPQYoI7MLZrbpqen/ZyT4LLEcH/hCmmtbHNiW+T7H6U=; b=WTC/G0PaMyTRnJbbxHY35ZqTBam0fHCgADFaWEExAdZS5WsRrNjXceWbTlCoLjm2qF vyNSzcHCuwgNWRaaMVYA7HRvZWiCXnpGY4h75RlrAA3eExbbJjivqwOLGHhFwozrLNF9 bsuAkFnugTseqcq7/s0ZSkP9oUp9tdjyv1zXiBf2lkdRHAPdKjmXuxka7ZCZwR+zatx+ 3EDhLyINdO4lK4Q4dElNRvz5UYpxmmR+9KBiWbl+BHWY/EKTR+64sJNiAtQgH+l5lmTP ayImMDZ0EgkVlkBJo2CwAkmGQgbO9upHMOLkAWq7pHv9G6Gt66hE+80Ly99UDVIX0j3s j39A== X-Gm-Message-State: APjAAAUxZ1h4wPs325MNoMIavxGpdqyQAT04qG26Uq389NmS+86ABd22 U1lrh4DaNdZTWJahfJ19h+/DXfM= X-Google-Smtp-Source: APXvYqyK2PPIqIlUMXEz2rjfwYBAQ4YNZSBGhqh4e5TKXLZqtSZEHsd4oaNK5NZZEUSoS3OHOZgBmQ== X-Received: by 2002:a25:99c3:: with SMTP id q3mr7167872ybo.43.1558273939231; Sun, 19 May 2019 06:52:19 -0700 (PDT) Received: from bill-the-cat.local (cpe-65-184-141-147.ec.res.rr.com. [65.184.141.147]) by smtp.gmail.com with ESMTPSA id v128sm4053392ywd.24.2019.05.19.06.52.17 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 19 May 2019 06:52:17 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Sun, 19 May 2019 09:52:03 -0400 Message-Id: <1558273931-1415-3-git-send-email-trini@konsulko.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1558273931-1415-1-git-send-email-trini@konsulko.com> References: <1558273931-1415-1-git-send-email-trini@konsulko.com> Subject: [U-Boot] [PATCHv2 03/11] Kconfig: Add DEPRECATED option X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Add a new option, CONFIG_DEPRECATED, for code that relies on deprecated functionality and has not been converted past the deadline for conversion. Signed-off-by: Tom Rini --- Kconfig | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Kconfig b/Kconfig index da208d65a32c..e780fce8efdb 100644 --- a/Kconfig +++ b/Kconfig @@ -20,6 +20,13 @@ config BROKEN This option cannot be enabled. It is used as dependency for broken and incomplete features. +config DEPRECATED + bool + help + This option cannot be enabled. It it used as a dependency for + code that relies on deprecated features that will be removed and + the conversion deadline has passed. + config LOCALVERSION string "Local version - append to U-Boot release" help