From patchwork Tue Jun 2 10:40:11 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bin Meng X-Patchwork-Id: 479389 X-Patchwork-Delegate: sjg@chromium.org 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 18854140E1A for ; Tue, 2 Jun 2015 20:40:37 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=Vi4lIdUZ; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6006B4B806; Tue, 2 Jun 2015 12:40:33 +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 gwPGlpPr4Nm0; Tue, 2 Jun 2015 12:40:33 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B8EBF4B7FF; Tue, 2 Jun 2015 12:40:32 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7D1C64B7FF for ; Tue, 2 Jun 2015 12:40:30 +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 CstYKSTkc4mx for ; Tue, 2 Jun 2015 12:40:30 +0200 (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 mail-qc0-f174.google.com (mail-qc0-f174.google.com [209.85.216.174]) by theia.denx.de (Postfix) with ESMTPS id 1DDE54B7FD for ; Tue, 2 Jun 2015 12:40:25 +0200 (CEST) Received: by qcmi9 with SMTP id i9so57848274qcm.0 for ; Tue, 02 Jun 2015 03:40:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:from:to:subject:date:mime-version:content-type; bh=pw6Svpmc/xLaoQRSbNTi3QhRoEXtCiieVa/WQ8dSGM8=; b=Vi4lIdUZDPympmEoMeLES+w/w2DOwNc9QaaOuxybiZ3rnt8t0U/8+dCALfAve/5HUF ynN4o11uEKTDuYfSf+5FhYNoxJedzoyJgtm8Ooo10rgbrPund5G2BLJphn9bNj7YxKwB jAvc6j4Fgfb+DGjntC57S+DPWQuHxorUZWblXvziwYCRgqn2jipUB8D3kTHROde/7BB7 B45SRBf83LfFevQ/vgPEO7xHz85xXCxzshbiKL8GFL31+3V1MH3zTq++kxAvqDypATaB jCfpPdQhKVLj1DQIW65zZ6pVRLzvoWQrmyrMBvmebXqHOs5qGal8u3zgRxbgxpckhPSb NqDw== X-Received: by 10.140.81.135 with SMTP id f7mr27750337qgd.33.1433241624149; Tue, 02 Jun 2015 03:40:24 -0700 (PDT) Received: from mail.hotmail.com (blu004-wss1s3.hotmail.com. [134.170.2.218]) by mx.google.com with ESMTPSA id m73sm7263370qkh.26.2015.06.02.03.40.23 (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 02 Jun 2015 03:40:23 -0700 (PDT) Received: from BLU436-SMTP191 ([134.170.2.215]) by BLU004-WSS1S3.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751); Tue, 2 Jun 2015 03:40:22 -0700 X-TMN: [YGqqwGvjXwXUv/WK3s/TsnylsPS90s2o] Message-ID: From: Bin Meng To: Simon Glass , U-Boot Mailing List Date: Tue, 2 Jun 2015 18:40:11 +0800 X-Mailer: git-send-email 1.8.2.1 X-OriginalArrivalTime: 02 Jun 2015 10:40:21.0182 (UTC) FILETIME=[86529DE0:01D09D20] MIME-Version: 1.0 Subject: [U-Boot] [PATCH] x86: qemu: Add CMD_NET to qemu-x86_defconfig 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" The following error is observed on QEMU x86. => print ipaddr ipaddr=192.168.178.66 => ping 192.168.178.1 *** ERROR: `ipaddr' not set ping failed; host 192.168.178.1 is not alive The issue was introduced in commit fd30563. Adding CMD_NET to defconfig resolves this. Also reorder the config options to match the order in Kconfig. Signed-off-by: Bin Meng --- configs/qemu-x86_defconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/qemu-x86_defconfig b/configs/qemu-x86_defconfig index a5251b5..07b5176 100644 --- a/configs/qemu-x86_defconfig +++ b/configs/qemu-x86_defconfig @@ -1,9 +1,9 @@ CONFIG_X86=y CONFIG_VENDOR_EMULATION=y CONFIG_TARGET_QEMU_X86=y +CONFIG_GENERATE_PIRQ_TABLE=y +CONFIG_CMD_NET=y CONFIG_OF_CONTROL=y -CONFIG_OF_SEPARATE=y CONFIG_VIDEO_VESA=y CONFIG_FRAMEBUFFER_SET_VESA_MODE=y CONFIG_FRAMEBUFFER_VESA_MODE_111=y -CONFIG_GENERATE_PIRQ_TABLE=y