From patchwork Thu Oct 8 03:19: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: 527558 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 BF6BE140273 for ; Thu, 8 Oct 2015 14:17:49 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=a2h7Ne/Z; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 213EF4B8C7; Thu, 8 Oct 2015 05:17: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 r31QuJ74eMyk; Thu, 8 Oct 2015 05:17:33 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B2E364A039; Thu, 8 Oct 2015 05:17:18 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8D2D64B885 for ; Thu, 8 Oct 2015 05:16:55 +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 aqjP_awAwJ60 for ; Thu, 8 Oct 2015 05:16:55 +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-pa0-f48.google.com (mail-pa0-f48.google.com [209.85.220.48]) by theia.denx.de (Postfix) with ESMTPS id 194964B881 for ; Thu, 8 Oct 2015 05:16:50 +0200 (CEST) Received: by pacex6 with SMTP id ex6so40222361pac.0 for ; Wed, 07 Oct 2015 20:16:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:in-reply-to:references; bh=HfILh83xGPJpEwa7zxkyxeQmIfOtdeQNgwLyikplGGY=; b=a2h7Ne/ZySqY+wuWkUUHejtxqhhJn3LK1EjuLWzRfcPDP97pTj3xu2hKj8ZsLOA4Wx FrJhTwvBb/GRd44lFvxX8JYLLqIK2+U7iwPVNF9cKmrm9psM2LF/ZVOMfhlzLF7Rezdf bQaXAbeNDcWpxiFW35ffl4B67hs0zQBPdf60fb+XW+QsPTbm8ONZ1tNuXsrWaEHexqFn f0Qn35QEBm08ambrwxPZ9dH/UwObKgYmFQ8FexxmWl+fZm8IpDjCfmKYI8Ay0eZXeRmw KFjorD/U/JCikWfveqgJ7X2K8hksd7GOF2nX1Slp5QxtRgYxiqYk/lZ7G17c8mU0Yczc mw0Q== X-Received: by 10.66.146.69 with SMTP id ta5mr5357650pab.46.1444274208920; Wed, 07 Oct 2015 20:16:48 -0700 (PDT) Received: from ala-d2121-lx1.wrs.com (unknown-157-139.windriver.com. [147.11.157.139]) by smtp.gmail.com with ESMTPSA id fb1sm42284352pab.9.2015.10.07.20.16.48 (version=TLS1_1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 07 Oct 2015 20:16:48 -0700 (PDT) From: Bin Meng To: Simon Glass , U-Boot Mailing List , Tom Rini , Hannes Schmelzer , Jian Luo , Miao Yan , Dean Armstrong Date: Wed, 7 Oct 2015 20:19:11 -0700 Message-Id: <1444274360-30189-4-git-send-email-bmeng.cn@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1444274360-30189-1-git-send-email-bmeng.cn@gmail.com> References: <1444274360-30189-1-git-send-email-bmeng.cn@gmail.com> Subject: [U-Boot] [PATCH v3 03/12] x86: Remove quotation mark in CONFIG_HOSTNAME 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: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" CONFIG_HOSTNAME is an environment varible, so that quotation mark is not needed. Signed-off-by: Bin Meng Acked-by: Simon Glass --- Changes in v3: None Changes in v2: - New patch to remove quotation mark in CONFIG_HOSTNAME include/configs/x86-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/x86-common.h b/include/configs/x86-common.h index 3f153f2..44765f6 100644 --- a/include/configs/x86-common.h +++ b/include/configs/x86-common.h @@ -217,7 +217,7 @@ /* Default environment */ #define CONFIG_ROOTPATH "/opt/nfsroot" -#define CONFIG_HOSTNAME "x86" +#define CONFIG_HOSTNAME x86 #define CONFIG_BOOTFILE "bzImage" #define CONFIG_LOADADDR 0x1000000