All of lore.kernel.org
 help / color / mirror / Atom feed
From: Palmer Dabbelt <palmer@dabbelt.com>
To: rdunlap@infradead.org
Cc: linux-kernel@vger.kernel.org, rdunlap@infradead.org,
	mpe@ellerman.id.au, Paul Walmsley <paul.walmsley@sifive.com>,
	aou@eecs.berkeley.edu, linux-riscv@lists.infradead.org
Subject: Re: [PATCH v2] riscv: add rv32 and rv64 randconfig build targets
Date: Mon, 04 Oct 2021 17:57:38 -0700 (PDT)	[thread overview]
Message-ID: <mhng-88e4dc9f-726f-4229-942b-083c9bdb61f8@palmerdabbelt-glaptop> (raw)
In-Reply-To: <20210912034538.19404-1-rdunlap@infradead.org>

On Sat, 11 Sep 2021 20:45:38 PDT (-0700), rdunlap@infradead.org wrote:
> Add the ability to do randconfig build targets for both
> rv32 and rv64.
>
> Based on a similar patch by Michael Ellerman for PowerPC.
>
> Usage:
>   make ARCH=riscv rv32_randconfig
> or
>   make ARCH=riscv rv64_randconfig
>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Michael Ellerman <mpe@ellerman.id.au>
> Cc: Paul Walmsley <paul.walmsley@sifive.com>
> Cc: Palmer Dabbelt <palmer@dabbelt.com>
> Cc: Albert Ou <aou@eecs.berkeley.edu>
> Cc: linux-riscv@lists.infradead.org
> ---
> v2: add missing S-o-b
>
>  arch/riscv/Makefile              |   10 ++++++++++
>  arch/riscv/configs/32-bit.config |    2 ++
>  arch/riscv/configs/64-bit.config |    2 ++
>  3 files changed, 14 insertions(+)
>
> --- linux-next-20210910.orig/arch/riscv/Makefile
> +++ linux-next-20210910/arch/riscv/Makefile
> @@ -141,3 +141,13 @@ install zinstall:
>
>  archclean:
>  	$(Q)$(MAKE) $(clean)=$(boot)
> +
> +PHONY += rv32_randconfig
> +rv32_randconfig:
> +	$(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/32-bit.config \
> +		-f $(srctree)/Makefile randconfig
> +
> +PHONY += rv64_randconfig
> +rv64_randconfig:
> +	$(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/64-bit.config \
> +		-f $(srctree)/Makefile randconfig
> --- /dev/null
> +++ linux-next-20210910/arch/riscv/configs/32-bit.config
> @@ -0,0 +1,2 @@
> +CONFIG_ARCH_RV32I=y
> +CONFIG_32BIT=y
> --- /dev/null
> +++ linux-next-20210910/arch/riscv/configs/64-bit.config
> @@ -0,0 +1,2 @@
> +CONFIG_ARCH_RV64I=y
> +CONFIG_64BIT=y

Thanks, this is on for-next.

WARNING: multiple messages have this Message-ID (diff)
From: Palmer Dabbelt <palmer@dabbelt.com>
To: rdunlap@infradead.org
Cc: linux-kernel@vger.kernel.org, rdunlap@infradead.org,
	mpe@ellerman.id.au, Paul Walmsley <paul.walmsley@sifive.com>,
	aou@eecs.berkeley.edu, linux-riscv@lists.infradead.org
Subject: Re: [PATCH v2] riscv: add rv32 and rv64 randconfig build targets
Date: Mon, 04 Oct 2021 17:57:38 -0700 (PDT)	[thread overview]
Message-ID: <mhng-88e4dc9f-726f-4229-942b-083c9bdb61f8@palmerdabbelt-glaptop> (raw)
In-Reply-To: <20210912034538.19404-1-rdunlap@infradead.org>

On Sat, 11 Sep 2021 20:45:38 PDT (-0700), rdunlap@infradead.org wrote:
> Add the ability to do randconfig build targets for both
> rv32 and rv64.
>
> Based on a similar patch by Michael Ellerman for PowerPC.
>
> Usage:
>   make ARCH=riscv rv32_randconfig
> or
>   make ARCH=riscv rv64_randconfig
>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Michael Ellerman <mpe@ellerman.id.au>
> Cc: Paul Walmsley <paul.walmsley@sifive.com>
> Cc: Palmer Dabbelt <palmer@dabbelt.com>
> Cc: Albert Ou <aou@eecs.berkeley.edu>
> Cc: linux-riscv@lists.infradead.org
> ---
> v2: add missing S-o-b
>
>  arch/riscv/Makefile              |   10 ++++++++++
>  arch/riscv/configs/32-bit.config |    2 ++
>  arch/riscv/configs/64-bit.config |    2 ++
>  3 files changed, 14 insertions(+)
>
> --- linux-next-20210910.orig/arch/riscv/Makefile
> +++ linux-next-20210910/arch/riscv/Makefile
> @@ -141,3 +141,13 @@ install zinstall:
>
>  archclean:
>  	$(Q)$(MAKE) $(clean)=$(boot)
> +
> +PHONY += rv32_randconfig
> +rv32_randconfig:
> +	$(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/32-bit.config \
> +		-f $(srctree)/Makefile randconfig
> +
> +PHONY += rv64_randconfig
> +rv64_randconfig:
> +	$(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/64-bit.config \
> +		-f $(srctree)/Makefile randconfig
> --- /dev/null
> +++ linux-next-20210910/arch/riscv/configs/32-bit.config
> @@ -0,0 +1,2 @@
> +CONFIG_ARCH_RV32I=y
> +CONFIG_32BIT=y
> --- /dev/null
> +++ linux-next-20210910/arch/riscv/configs/64-bit.config
> @@ -0,0 +1,2 @@
> +CONFIG_ARCH_RV64I=y
> +CONFIG_64BIT=y

Thanks, this is on for-next.

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

  reply	other threads:[~2021-10-05  0:57 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-12  3:45 [PATCH v2] riscv: add rv32 and rv64 randconfig build targets Randy Dunlap
2021-09-12  3:45 ` Randy Dunlap
2021-10-05  0:57 ` Palmer Dabbelt [this message]
2021-10-05  0:57   ` Palmer Dabbelt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=mhng-88e4dc9f-726f-4229-942b-083c9bdb61f8@palmerdabbelt-glaptop \
    --to=palmer@dabbelt.com \
    --cc=aou@eecs.berkeley.edu \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=mpe@ellerman.id.au \
    --cc=paul.walmsley@sifive.com \
    --cc=rdunlap@infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.