From patchwork Mon Aug 20 14:22:26 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: 178830 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 B0AAF2C00B2 for ; Tue, 21 Aug 2012 00:24:16 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1B51928533; Mon, 20 Aug 2012 16:24:03 +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 zeY-pr-ZvxQj; Mon, 20 Aug 2012 16:24:02 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 58BBB28531; Mon, 20 Aug 2012 16:23:55 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B9A6628457 for ; Mon, 20 Aug 2012 16:23:52 +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 UEIO0R6SKr4F for ; Mon, 20 Aug 2012 16:23:52 +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 7542528522 for ; Mon, 20 Aug 2012 16:23:44 +0200 (CEST) Received: by mail-pb0-f44.google.com with SMTP id rr4so8769905pbb.3 for ; Mon, 20 Aug 2012 07:23:43 -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=Db703byvrgrjQ0pJ843WnZ9TWQCUy8Re35JOkH8G6e85/4vpGEkxMzLxqM9WChn/Gn t13mwYIRxylRas4pVdyNDdugWO0ibswgyzP1e8+H3fo8GIsdhfeqSPwLlmpN5Bs1fEMK frX9RcgV9F8cbb9dUhiSIOLGdrKqss01WrB/gJ58ZIwcGandnZcx8ytSZC4fjW3LFo1M 91h7Xoo1xRv84aC50bZfRZVMRep8jAWcumYEbbBtnl4hRiVnq4lEY2wHGKTNfnx9YCOV RmARUPXwM31bg2HcGZIbGTQRdln2ZQ72lX0l9RDzHJuklCgbBwXatlka3wGRAAz5GRtX kZ3w== Received: by 10.68.220.193 with SMTP id py1mr35558057pbc.4.1345472623862; Mon, 20 Aug 2012 07:23:43 -0700 (PDT) Received: from localhost.localdomain ([124.165.216.64]) by mx.google.com with ESMTPS id ox5sm11174086pbc.75.2012.08.20.07.23.40 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 20 Aug 2012 07:23:43 -0700 (PDT) From: Zhizhou Zhang To: u-boot@lists.denx.de Date: Mon, 20 Aug 2012 22:22:26 +0800 Message-Id: <1345472551-1546-5-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