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=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED 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 E627EECDFB8 for ; Fri, 20 Jul 2018 00:16:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8320120673 for ; Fri, 20 Jul 2018 00:16:07 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8320120673 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=users.sourceforge.jp Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731673AbeGTBBi (ORCPT ); Thu, 19 Jul 2018 21:01:38 -0400 Received: from mail03.asahi-net.or.jp ([202.224.55.15]:44000 "EHLO mail03.asahi-net.or.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731618AbeGTBBi (ORCPT ); Thu, 19 Jul 2018 21:01:38 -0400 Received: from h61-195-96-97.vps.ablenet.jp (h61-195-96-97.vps.ablenet.jp [61.195.96.97]) (Authenticated sender: PQ4Y-STU) by mail03.asahi-net.or.jp (Postfix) with ESMTPA id 3D914EBCC9; Fri, 20 Jul 2018 09:16:02 +0900 (JST) Received: from yo-satoh-debian.ysato.ml (pw126033022183.23.panda-world.ne.jp [126.33.22.183]) by h61-195-96-97.vps.ablenet.jp (Postfix) with ESMTPSA id B75B124006D; Fri, 20 Jul 2018 09:16:01 +0900 (JST) Date: Fri, 20 Jul 2018 09:15:58 +0900 Message-ID: <87in5arcch.wl-ysato@users.sourceforge.jp> From: Yoshinori Sato To: Randy Dunlap Cc: LKML , uclinux-h8-devel@lists.sourceforge.jp Subject: Re: [PATCH] arch/h8300: add a defconfig target In-Reply-To: <84ff16cd-2549-56f2-9e26-60b70188c9f2@infradead.org> References: <84ff16cd-2549-56f2-9e26-60b70188c9f2@infradead.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 19 Jul 2018 15:04:29 +0900, Randy Dunlap wrote: > > From: Randy Dunlap > > Make the "defconfig" target valid for arch/h8300. Currently > "make ARCH=h8300 defconfig" produces: > > *** Can't find default configuration "arch/h8300/defconfig"! > ../scripts/kconfig/Makefile:87: recipe for target 'defconfig' failed > > By adding a value for KBUILD_DEFCONFIG, "make ARCH=h8300 defconfig" > successfully produces a kernel .config file: > > *** Default configuration is based on 'edosk2674_defconfig' > > This is useful for Kconfig editing/testing. > > Signed-off-by: Randy Dunlap > Cc: Yoshinori Sato > Cc: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) > --- > arch/h8300/Makefile | 2 ++ > 1 file changed, 2 insertions(+) > > --- linux-next-20180717.orig/arch/h8300/Makefile > +++ linux-next-20180717/arch/h8300/Makefile > @@ -8,6 +8,8 @@ > # (C) Copyright 2002-2015 Yoshinori Sato > # > > +KBUILD_DEFCONFIG := edosk2674_defconfig > + > cflags-$(CONFIG_CPU_H8300H) := -mh > aflags-$(CONFIG_CPU_H8300H) := -mh -Wa,--mach=h8300h > ldflags-$(CONFIG_CPU_H8300H) := -mh8300helf_linux > > Applied for h8300-next. Thanks. -- Yosinori Sato