From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.0 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D099BC072B1 for ; Mon, 27 May 2019 14:39:21 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9C0362070D for ; Mon, 27 May 2019 14:39:21 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=nifty.com header.i=@nifty.com header.b="2sJXweNI" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726899AbfE0OjV (ORCPT ); Mon, 27 May 2019 10:39:21 -0400 Received: from conuserg-07.nifty.com ([210.131.2.74]:43269 "EHLO conuserg-07.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726435AbfE0OjT (ORCPT ); Mon, 27 May 2019 10:39:19 -0400 Received: from grover.flets-west.jp (softbank126125154139.bbtec.net [126.125.154.139]) (authenticated) by conuserg-07.nifty.com with ESMTP id x4REc8hq015915; Mon, 27 May 2019 23:38:11 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com x4REc8hq015915 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1558967892; bh=6bglQw1o0+227H4JjdFxK5L+4gQ5kdmgdzv31/MURZU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=2sJXweNIRR4f+KtxL9FuNZntt+7ccU2SYjSqdqCWNjiJ/CR18XNsC/u/6N68rxHxc K2jblZO8e7Je5mD7l0TmxOjxw/wIu1T36uHB1M7KYo7nx9+v4aWMAn9/zI2Lv46HR0 09ciS8LqbnKZQD6uvb8X40Wu/wNUAjPKcXqjIn6Kwg/Fi3p5yrxZnvZRkY14WQClXA J1nhXY1BxTiraxxYY/bIm1hR1/kBHxXMG6u5DFXJV2ujZRjBFQuQ6D5zZtMPf7qAro dR1OJt6q3eXF7ztQKVgYrTVnmZSTlUtMRwHip5z6442nGXIscIgG/nGmL3QUWNtYzT bDfUWDDJKX25Q== X-Nifty-SrcIP: [126.125.154.139] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Masahiro Yamada , Robert Jarzmik , Guenter Roeck , linux-kernel@vger.kernel.org, Guan Xuetao , Paul Burton , Krzysztof Kozlowski , Zhang Rui , Daniel Lezcano Subject: [PATCH 5/5] unicore32: rename unicore32_defconfig to defconfig Date: Mon, 27 May 2019 23:37:25 +0900 Message-Id: <20190527143725.12542-5-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190527143725.12542-1-yamada.masahiro@socionext.com> References: <20190527143725.12542-1-yamada.masahiro@socionext.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Since the initial support of unicore32, it has always had a single defconfig. Rename it to 'defconfig', which is now the standard name when arch has just a single defconfig file. Signed-off-by: Masahiro Yamada --- arch/unicore32/Makefile | 3 +-- arch/unicore32/configs/{unicore32_defconfig => defconfig} | 0 2 files changed, 1 insertion(+), 2 deletions(-) rename arch/unicore32/configs/{unicore32_defconfig => defconfig} (100%) diff --git a/arch/unicore32/Makefile b/arch/unicore32/Makefile index 98a5ca43ae87..390819947c37 100644 --- a/arch/unicore32/Makefile +++ b/arch/unicore32/Makefile @@ -41,8 +41,7 @@ libs-y += arch/unicore32/lib/ boot := arch/unicore32/boot -# Default defconfig and target when executing plain make -KBUILD_DEFCONFIG := $(ARCH)_defconfig +# Default target when executing plain make KBUILD_IMAGE := $(boot)/zImage all: zImage diff --git a/arch/unicore32/configs/unicore32_defconfig b/arch/unicore32/configs/defconfig similarity index 100% rename from arch/unicore32/configs/unicore32_defconfig rename to arch/unicore32/configs/defconfig -- 2.17.1