From patchwork Sat Jul 28 13:20:42 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 950483 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 41d60R7561z9ryt for ; Sat, 28 Jul 2018 23:20:55 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id EEFF6C21EB4; Sat, 28 Jul 2018 13:20:52 +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_H3, RCVD_IN_MSPIKE_WL 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 04CA7C21C6A; Sat, 28 Jul 2018 13:20:50 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 8066DC21C6A; Sat, 28 Jul 2018 13:20:49 +0000 (UTC) Received: from mail-qt0-f195.google.com (mail-qt0-f195.google.com [209.85.216.195]) by lists.denx.de (Postfix) with ESMTPS id 50BCCC21C4A for ; Sat, 28 Jul 2018 13:20:47 +0000 (UTC) Received: by mail-qt0-f195.google.com with SMTP id h4-v6so7863755qtj.7 for ; Sat, 28 Jul 2018 06:20:47 -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; bh=U6RqqkqKC2O74Cn54owLKePeZKqoFWITlNB6YZdFbIg=; b=SHiPMeW0ax9wiT0HIR7y5YQEUXvaRwN7Zx6bHJaN8s7pS3LnPGTtB/QhSl3jXpAdt6 0dW5Zn9gdlx4t4dORcC9CzMg6R32uyeAeH/Mg2lVR75KqHfJZJNpSs9/Fi9vA/wCy0ia 6F3hrDjmX5q/TuxjyH224o6O116+28KU14UX0hra816+NJDUkngC7vwwUpADZZuQi+CX 9eFOxZy9+xgKmKbNLkxeu788XA3TtENPbbVSeVOW6AWKznvhMoTGBX3k/DW2Ij1hGPfK 7J736xOALr1syyLFRsfrLNAaXJP0GYQl5lykmQ7ENlCJK01WGXaTm6WaWoO3SDp+p/HZ 0raA== X-Gm-Message-State: AOUpUlEzW6oVcBitv56g/8GaaBhY3D03ToGLVpzWfGE8Gu2cdclH4YU7 lVks73o8KrPylo3/4GWsMo6RRLQ= X-Google-Smtp-Source: AAOMgpdB1v0zrjWCrw5E3QHIvz60nY4hd/nyUYOqozdoYHOQkED8Cy0etPGgflcva6+M61zvB909lg== X-Received: by 2002:ac8:3f24:: with SMTP id c33-v6mr9974390qtk.76.1532784045825; Sat, 28 Jul 2018 06:20:45 -0700 (PDT) Received: from bill-the-cat.ec.rr.com (cpe-65-184-142-68.ec.res.rr.com. [65.184.142.68]) by smtp.gmail.com with ESMTPSA id q51-v6sm5867987qta.92.2018.07.28.06.20.45 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 28 Jul 2018 06:20:45 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Sat, 28 Jul 2018 09:20:42 -0400 Message-Id: <1532784042-26470-1-git-send-email-trini@konsulko.com> X-Mailer: git-send-email 2.7.4 Subject: [U-Boot] [PATCH] tpmv2: Make it select CMD_LOG 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" The TPMv2 code requires the log functionality, so select it. Signed-off-by: Tom Rini --- cmd/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/Kconfig b/cmd/Kconfig index 6a471020f844..ef43ed8dda45 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1544,6 +1544,7 @@ config CMD_TPM_V1 config CMD_TPM_V2 bool + select CMD_LOG config CMD_TPM bool "Enable the 'tpm' command"