From patchwork Sat Dec 19 19:20:49 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Schwierzeck X-Patchwork-Id: 559237 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 8C86A140313 for ; Sun, 20 Dec 2015 06:21:51 +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=mSWkv37U; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8CBA24B7D0; Sat, 19 Dec 2015 20:21:36 +0100 (CET) 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 Dx9YMr_jQogi; Sat, 19 Dec 2015 20:21:36 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E06314B7D5; Sat, 19 Dec 2015 20:21:18 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0D79F4B765 for ; Sat, 19 Dec 2015 20:21:09 +0100 (CET) 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 vy3_3nOi4IA7 for ; Sat, 19 Dec 2015 20:21:08 +0100 (CET) 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-wm0-f46.google.com (mail-wm0-f46.google.com [74.125.82.46]) by theia.denx.de (Postfix) with ESMTPS id 8644E4B76F for ; Sat, 19 Dec 2015 20:21:02 +0100 (CET) Received: by mail-wm0-f46.google.com with SMTP id l126so24195602wml.1 for ; Sat, 19 Dec 2015 11:21:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=CBjFwEFmO678MHeD01xVd0ZB4ag7S//E+YfrV2aeAHA=; b=mSWkv37UY8+jNu9uLilGAX0DGkKvhJ2SRVab0sZhuwrCLLRBv4RhnOR7HVVezYazb/ ZBF3j9X9rLRiABRQVJiKycZhtynmoD4CSdTcN9qKpDZvaT8bh/QnFecPUqiUurNhaMne J3+ygeH1p6lGNpnnFg96kk7ul6Uec5YLmy3LJAOncCBnzW6tHctae6mrDMX6AOcEiWAH 7C9THv4yHkYaUEC7jm/+vo1tWgtWoTMAE/fcJQv5WLlACb/Nkm1TBz5XJzdZBBz/BTSl wuILaWJyZoNDguqbF1qPl3Tese7lBoD/Z9tUf0qzLz+4ZgxgciFjmIiNAHFiIZQdTMIx Rimw== X-Received: by 10.194.250.39 with SMTP id yz7mr12579527wjc.92.1450552862186; Sat, 19 Dec 2015 11:21:02 -0800 (PST) Received: from workstation.zombienet.local (pD9EBF19C.dip0.t-ipconnect.de. [217.235.241.156]) by smtp.gmail.com with ESMTPSA id ej10sm20256992wjd.32.2015.12.19.11.21.00 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 19 Dec 2015 11:21:00 -0800 (PST) From: Daniel Schwierzeck To: u-boot@lists.denx.de Date: Sat, 19 Dec 2015 20:20:49 +0100 Message-Id: <1450552849-10813-6-git-send-email-daniel.schwierzeck@gmail.com> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1450552849-10813-1-git-send-email-daniel.schwierzeck@gmail.com> References: <1450552849-10813-1-git-send-email-daniel.schwierzeck@gmail.com> Cc: Tom Rini Subject: [U-Boot] [PATCH 5/5] Kconfig: create symbolic link on MIPS 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" Commit a350c6a60223f7a60228ed563d2e7b02fb7944ab disabled the creation of symbolic links on MIPS. But that feature is used in out-of-tree SoC ports and will be required for the upcoming mainline support of those SoC's. Signed-off-by: Daniel Schwierzeck --- arch/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/Kconfig b/arch/Kconfig index ec12013..85743d0 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -52,6 +52,7 @@ config MICROBLAZE config MIPS bool "MIPS architecture" + select CREATE_ARCH_SYMLINK select HAVE_PRIVATE_LIBGCC select HAVE_GENERIC_BOARD select SYS_GENERIC_BOARD