From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753202AbdKIIBP (ORCPT ); Thu, 9 Nov 2017 03:01:15 -0500 Received: from mail-vk0-f67.google.com ([209.85.213.67]:44890 "EHLO mail-vk0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753157AbdKIIBM (ORCPT ); Thu, 9 Nov 2017 03:01:12 -0500 X-Google-Smtp-Source: ABhQp+S4Lrjbj++qrjlbfO4b0TqmM7pI97gxo0QRS5oPuG4iyGTq2COINaEriWlUP1WVFurfQqbE7S46/HPI9HYDpzk= MIME-Version: 1.0 In-Reply-To: References: <805f8432979e2707fbc9bf62dc52b8abfbd2cb14.1510118606.git.green.hu@gmail.com> From: Greentime Hu Date: Thu, 9 Nov 2017 16:00:30 +0800 Message-ID: Subject: Re: [PATCH 25/31] nds32: defconfig To: Arnd Bergmann Cc: Greentime , Linux Kernel Mailing List , linux-arch , Thomas Gleixner , Jason Cooper , Marc Zyngier , Rob Herring , Networking , Vincent Chen , deanbo422@gmail.com Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 2017-11-08 18:03 GMT+08:00 Arnd Bergmann : > On Wed, Nov 8, 2017 at 6:55 AM, Greentime Hu wrote: >> From: Greentime Hu >> >> Signed-off-by: Vincent Chen >> Signed-off-by: Greentime Hu >> --- >> arch/nds32/configs/ae3xx_defconfig | 110 +++++++++++++++++++++++++++++++++++ >> arch/nds32/configs/ag101p_defconfig | 109 ++++++++++++++++++++++++++++++++++ > > Are those two incompatible? I would recommend starting without board > specific defconfig > files, it just gets messy once you get more than a few machines you > want to support. Thanks. These 2 are incompatible. They use different drivers. I may still keep these 2 defconfigs. >> diff --git a/arch/nds32/configs/ae3xx_defconfig b/arch/nds32/configs/ae3xx_defconfig >> new file mode 100644 >> index 0000000..14d49a3 >> --- /dev/null >> +++ b/arch/nds32/configs/ae3xx_defconfig >> @@ -0,0 +1,110 @@ >> +CONFIG_CROSS_COMPILE="nds32le-linux-" >> +CONFIG_SYSVIPC=y >> +CONFIG_POSIX_MQUEUE=y >> +CONFIG_HIGH_RES_TIMERS=y >> +CONFIG_BSD_PROCESS_ACCT=y >> +CONFIG_BSD_PROCESS_ACCT_V3=y >> +CONFIG_IKCONFIG=y >> +CONFIG_IKCONFIG_PROC=y >> +CONFIG_LOG_BUF_SHIFT=14 >> +CONFIG_NAMESPACES=y >> +CONFIG_USER_NS=y >> +CONFIG_RELAY=y >> +CONFIG_BLK_DEV_INITRD=y >> +CONFIG_SYSCTL_SYSCALL=y >> +CONFIG_KALLSYMS_ALL=y >> +CONFIG_EMBEDDED=y > > You usually don't want to select 'CONFIG_EMBEDDED' for regular > builds, it's should only be needed to disable options that are > usually considered essential. Thanks. I will remove this config in the next version patch. >> +CONFIG_FB=y >> +# CONFIG_VGA_CONSOLE is not set >> +CONFIG_FRAMEBUFFER_CONSOLE=y > > You have a framebuffer console here, but no framebuffer driver? Thanks. I shall enable it when I push our framebuffer in the next time. I will disable it in the next version patch. >> +CONFIG_MMC=y >> +CONFIG_RTC_CLASS=y >> +# CONFIG_RTC_HCTOSYS is not set >> +CONFIG_CLKSRC_ATCPIT100=y >> +CONFIG_EXT2_FS=y > > Maybe use EXT4, not EXT2, in the defconfig? > Thanks. I will enable EXT4 instead of EXT2 in the defconfig.