From patchwork Mon Aug 20 14:22:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zhi-zhou Zhang X-Patchwork-Id: 178835 X-Patchwork-Delegate: daniel.schwierzeck@googlemail.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 E011E2C0083 for ; Tue, 21 Aug 2012 00:25:32 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0FE4328560; Mon, 20 Aug 2012 16:24:48 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 cQjeZmGbyWgE; Mon, 20 Aug 2012 16:24:47 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 472442857D; Mon, 20 Aug 2012 16:24:32 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 362F128545 for ; Mon, 20 Aug 2012 16:24:18 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 RNdfdjAXv0PI for ; Mon, 20 Aug 2012 16:24:18 +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-pb0-f44.google.com (mail-pb0-f44.google.com [209.85.160.44]) by theia.denx.de (Postfix) with ESMTPS id C781628539 for ; Mon, 20 Aug 2012 16:24:07 +0200 (CEST) Received: by mail-pb0-f44.google.com with SMTP id rr4so8769905pbb.3 for ; Mon, 20 Aug 2012 07:24:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=jrBJyhlvTZqHgUiCkBLjhCb4Y1krImx/Tf7JZtXdkd0=; b=DY2hktYokHzAWbM71OW1RiRbphkKLkESG6GyqoylU6P/hxQSjIPb6QuxWlDcFyqEMm xaeAcY1s74YGokEIpcbLQXC/j27rFRjUlRWjYdlHXElHdDAqjzyKP28j6zCponzTtouA c2UXoTZPaVtC8nSWWEX8dGWM4FyPdPCfKS06i8Zxcc071il5gNZhwc2UHgvZoDaAbvvd /7s4V4aI8w4MSXM3oUhdTiUEJBjH/fU7+Kb7xMmRl/5eBDMPCES/XW1a6xKR50+0nc+P huFvV/sBbhm9rIfro1Gw30TF8hb8+K61RdPFuh0UUdaVD0+jWHGKyWmt33961MF8Hp9m KRcA== Received: by 10.68.216.104 with SMTP id op8mr34838716pbc.65.1345472646779; Mon, 20 Aug 2012 07:24:06 -0700 (PDT) Received: from localhost.localdomain ([124.165.216.64]) by mx.google.com with ESMTPS id ox5sm11174086pbc.75.2012.08.20.07.24.03 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 20 Aug 2012 07:24:06 -0700 (PDT) From: Zhizhou Zhang To: u-boot@lists.denx.de Date: Mon, 20 Aug 2012 22:22:31 +0800 Message-Id: <1345472551-1546-10-git-send-email-etou.zh@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1345472551-1546-1-git-send-email-etou.zh@gmail.com> References: <1345472551-1546-1-git-send-email-etou.zh@gmail.com> Subject: [U-Boot] [Patch V3 4/4] [MIPS] Disable standalone while building MIPS64 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de I think copy mips.lds to mips64.lds with only one line changed is not good. So I disable it in top Makefile. Signed-off-by: Zhizhou Zhang --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 5ce5cc3..626d888 100644 --- a/Makefile +++ b/Makefile @@ -155,8 +155,10 @@ sinclude $(obj)include/autoconf.mk.dep sinclude $(obj)include/autoconf.mk ifndef CONFIG_SANDBOX +ifndef CONFIG_MIPS64 SUBDIRS += $(SUBDIR_EXAMPLES) endif +endif # load ARCH, BOARD, and CPU configuration include $(obj)include/config.mk