From patchwork Wed Jun 3 15:15:49 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: maxin.john@enea.com X-Patchwork-Id: 480011 X-Patchwork-Delegate: hdegoede@redhat.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 5E0941401F0 for ; Thu, 4 Jun 2015 01:21:30 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id CEA864B664; Wed, 3 Jun 2015 17:21:28 +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 CndXc7tL9oZw; Wed, 3 Jun 2015 17:21:28 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3F4764B65D; Wed, 3 Jun 2015 17:21:28 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4DE8A4B65B for ; Wed, 3 Jun 2015 17:21:24 +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 69r-cVMxV4_l for ; Wed, 3 Jun 2015 17:21:24 +0200 (CEST) X-Greylist: delayed 324 seconds by postgrey-1.34 at theia; Wed, 03 Jun 2015 17:21:21 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 mx-3.enea.com (sestofw01.enea.se [192.36.1.252]) by theia.denx.de (Postfix) with SMTP id 0BCD04B656 for ; Wed, 3 Jun 2015 17:21:21 +0200 (CEST) Received: from sestofb10.enea.se (172.21.3.145) by smtp.enea.com (172.21.1.209) with Microsoft SMTP Server id 14.3.224.2; Wed, 3 Jun 2015 17:15:56 +0200 Received: by sestofb10.enea.se (Postfix, from userid 4454) id C394F28BA1D; Wed, 3 Jun 2015 17:15:56 +0200 (CEST) From: "Maxin B. John" To: Date: Wed, 3 Jun 2015 17:15:49 +0200 Message-ID: <1433344549-40041-1-git-send-email-maxin.john@enea.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 Received-SPF: None (SESTOEX03.enea.se: maxin.john@enea.com does not designate permitted sender hosts) Subject: [U-Boot] [PATCH] Merrii_A80_Optimus: Fix build error 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" make Merrii_A80_Optimus_defconfig make fails with the following error: board/sunxi/built-in.o: In function `misc_init_r': /root/u-boot/board/sunxi/board.c:540: undefined reference to `eth_setenv_enetaddr' Enable CONFIG_CMD_NET in Merrii_A80_Optimus_defconfig to fix it. Signed-off-by: Maxin B. John --- configs/Merrii_A80_Optimus_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/Merrii_A80_Optimus_defconfig b/configs/Merrii_A80_Optimus_defconfig index 6bd5273..b112596 100644 --- a/configs/Merrii_A80_Optimus_defconfig +++ b/configs/Merrii_A80_Optimus_defconfig @@ -9,3 +9,4 @@ CONFIG_MACH_SUN9I=y CONFIG_DRAM_CLK=360 CONFIG_DRAM_ZQ=123 CONFIG_SYS_CLK_FREQ=1008000000 +CONFIG_CMD_NET=y