From patchwork Sun Mar 27 12:39:15 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Robert P. J. Day" X-Patchwork-Id: 602353 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3qXxh55Lfjz9s5M for ; Sun, 27 Mar 2016 23:49:41 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5B220A7518; Sun, 27 Mar 2016 14:49:39 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4y7mfCiwjUkX; Sun, 27 Mar 2016 14:49:38 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 443A3A74C6; Sun, 27 Mar 2016 14:49:38 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 04D83A74C6 for ; Sun, 27 Mar 2016 14:49:35 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sG0cbepe9iUv for ; Sun, 27 Mar 2016 14:49:34 +0200 (CEST) X-Greylist: delayed 603 seconds by postgrey-1.34 at theia; Sun, 27 Mar 2016 14:49:31 CEST X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from smtp485.redcondor.net (smtp485.redcondor.net [208.80.204.85]) by theia.denx.de (Postfix) with ESMTPS id 85C32A748A for ; Sun, 27 Mar 2016 14:49:31 +0200 (CEST) Received: from astoria.ccjclearline.com ([64.235.106.9]) by smtp485.redcondor.net ({3be039ea-4351-44b0-a8af-642c38b25916}) via TCP (outbound) with ESMTPS id 20160327123924842_0485 for ; Sun, 27 Mar 2016 12:39:24 +0000 X-RC-FROM: X-RC-RCPT: Received: from [99.240.204.5] (port=47774 helo=crashcourse.ca) by astoria.ccjclearline.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.80) (envelope-from ) id 1ak9zp-0003H3-78 for u-boot@lists.denx.de; Sun, 27 Mar 2016 08:40:45 -0400 Date: Sun, 27 Mar 2016 08:39:15 -0400 (EDT) From: "Robert P. J. Day" X-X-Sender: rpjday@localhost.localdomain To: U-Boot list Message-ID: User-Agent: Alpine 2.20 (LFD 67 2015-01-07) MIME-Version: 1.0 X-MAG-OUTBOUND: ccj.redcondor.net@64.235.106.9/32 Subject: [U-Boot] [PATCH] post: Remove reference to deleted "lwmon" board from Makefile X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" POST support for sample lwmon board was removed in commit e5d3078622. Signed-off-by: Robert P. J. Day B diff --git a/post/Makefile b/post/Makefile index 2fa6f8a..92024e1 100644 --- a/post/Makefile +++ b/post/Makefile @@ -13,6 +13,6 @@ obj-$(CONFIG_PPC) += lib_powerpc/ obj-$(CONFIG_MPC83xx) += cpu/mpc83xx/ obj-$(CONFIG_8xx) += cpu/mpc8xx/ obj-$(CONFIG_4xx) += cpu/ppc4xx/ -ifneq ($(filter lwmon lwmon5 netta pdm360ng,$(BOARD)),) +ifneq ($(filter lwmon5 netta pdm360ng,$(BOARD)),) obj-y += board/$(BOARD)/ endif