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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8EF87C433FE for ; Wed, 18 May 2022 15:22:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239233AbiERPWj (ORCPT ); Wed, 18 May 2022 11:22:39 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60692 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229496AbiERPWf (ORCPT ); Wed, 18 May 2022 11:22:35 -0400 Received: from mailbox.box.xen0n.name (mail.xen0n.name [115.28.160.31]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6879535AA7; Wed, 18 May 2022 08:22:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=xen0n.name; s=mail; t=1652887346; bh=Q9LeUXw8EHw4L9SRCRb8ePYUktfr7J4tsLyCA73Vf3Q=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=YxbGDmVoCnOXfWRDnmXRjdPhcQGbdfEfvySLwQah35S51Wrb4EJ4jd9BW0zUl9yN8 jadXiOflC3tSJ62OqfHqC0pFPVM/NFxZDADSwaVzIEOHtFA1QoL2HmzNnAqWaDcavZ FUd3tfyYVzOAYwxiSVg3/UU3HHMRORj6ERNu2kRQ= Received: from [192.168.9.172] (unknown [101.88.28.48]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by mailbox.box.xen0n.name (Postfix) with ESMTPSA id BBD9660691; Wed, 18 May 2022 23:22:25 +0800 (CST) Message-ID: <3d2c210f-03f3-f7e6-9c42-8189c240cd3a@xen0n.name> Date: Wed, 18 May 2022 23:22:25 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.0a1 Subject: Re: [PATCH V11 05/22] LoongArch: Add build infrastructure Content-Language: en-US To: Huacai Chen , Arnd Bergmann , Andy Lutomirski , Thomas Gleixner , Peter Zijlstra , Andrew Morton , David Airlie , Jonathan Corbet , Linus Torvalds Cc: linux-arch@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, Xuefeng Li , Yanteng Si , Huacai Chen , Guo Ren , Xuerui Wang , Jiaxun Yang , Stephen Rothwell References: <20220518092619.1269111-1-chenhuacai@loongson.cn> <20220518092619.1269111-6-chenhuacai@loongson.cn> From: WANG Xuerui In-Reply-To: <20220518092619.1269111-6-chenhuacai@loongson.cn> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 5/18/22 17:26, Huacai Chen wrote: > Add Kbuild, Makefile, Kconfig and link script for LoongArch build > infrastructure. > > Signed-off-by: Huacai Chen > --- > arch/loongarch/Kbuild | 6 + > arch/loongarch/Kconfig | 395 +++++++++++++++++++++++++ > arch/loongarch/Kconfig.debug | 0 > arch/loongarch/Makefile | 105 +++++++ > arch/loongarch/boot/.gitignore | 2 + > arch/loongarch/boot/Makefile | 20 ++ > arch/loongarch/boot/dts/Makefile | 4 + > arch/loongarch/include/asm/Kbuild | 30 ++ > arch/loongarch/include/uapi/asm/Kbuild | 2 + > arch/loongarch/kernel/.gitignore | 2 + > arch/loongarch/kernel/Makefile | 21 ++ > arch/loongarch/kernel/vmlinux.lds.S | 117 ++++++++ > arch/loongarch/lib/Makefile | 6 + > arch/loongarch/mm/Makefile | 9 + > arch/loongarch/pci/Makefile | 7 + > arch/loongarch/vdso/.gitignore | 2 + > scripts/subarch.include | 2 +- > 17 files changed, 729 insertions(+), 1 deletion(-) > create mode 100644 arch/loongarch/Kbuild > create mode 100644 arch/loongarch/Kconfig > create mode 100644 arch/loongarch/Kconfig.debug > create mode 100644 arch/loongarch/Makefile > create mode 100644 arch/loongarch/boot/.gitignore > create mode 100644 arch/loongarch/boot/Makefile > create mode 100644 arch/loongarch/boot/dts/Makefile > create mode 100644 arch/loongarch/include/asm/Kbuild > create mode 100644 arch/loongarch/include/uapi/asm/Kbuild > create mode 100644 arch/loongarch/kernel/.gitignore > create mode 100644 arch/loongarch/kernel/Makefile > create mode 100644 arch/loongarch/kernel/vmlinux.lds.S > create mode 100644 arch/loongarch/lib/Makefile > create mode 100644 arch/loongarch/mm/Makefile > create mode 100644 arch/loongarch/pci/Makefile > create mode 100644 arch/loongarch/vdso/.gitignore Seems most (if not all) my comments from v10 are addressed; and there seems to have no obvious mistake. Reviewed-by: WANG Xuerui