linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] powerpc/configs: Turn CONFIG_RELOCATABLE on by default
@ 2017-05-12  5:36 Balbir Singh
  2022-03-09  9:15 ` Christophe Leroy
  0 siblings, 1 reply; 2+ messages in thread
From: Balbir Singh @ 2017-05-12  5:36 UTC (permalink / raw)
  To: mpe; +Cc: linuxppc-dev, Balbir Singh

On powernv/pseries and ppc64 defconfigs

Most distros will want it on by default and I've missed
turning it on during developer testing. Having it on ensures
we are testing our patches with the config enabled.

Signed-off-by: Balbir Singh <bsingharora@gmail.com>
---
 arch/powerpc/configs/powernv_defconfig | 1 +
 arch/powerpc/configs/ppc64_defconfig   | 1 +
 arch/powerpc/configs/pseries_defconfig | 1 +
 3 files changed, 3 insertions(+)

diff --git a/arch/powerpc/configs/powernv_defconfig b/arch/powerpc/configs/powernv_defconfig
index 0695ce0..eca7189 100644
--- a/arch/powerpc/configs/powernv_defconfig
+++ b/arch/powerpc/configs/powernv_defconfig
@@ -52,6 +52,7 @@ CONFIG_PPC_TRANSACTIONAL_MEM=y
 CONFIG_HOTPLUG_CPU=y
 CONFIG_KEXEC=y
 CONFIG_KEXEC_FILE=y
+CONFIG_RELOCATABLE=y
 CONFIG_IRQ_ALL_CPUS=y
 CONFIG_NUMA=y
 CONFIG_MEMORY_HOTPLUG=y
diff --git a/arch/powerpc/configs/ppc64_defconfig b/arch/powerpc/configs/ppc64_defconfig
index 5175028..ba30841 100644
--- a/arch/powerpc/configs/ppc64_defconfig
+++ b/arch/powerpc/configs/ppc64_defconfig
@@ -49,6 +49,7 @@ CONFIG_BINFMT_MISC=m
 CONFIG_PPC_TRANSACTIONAL_MEM=y
 CONFIG_KEXEC=y
 CONFIG_KEXEC_FILE=y
+CONFIG_RELOCATABLE=y
 CONFIG_CRASH_DUMP=y
 CONFIG_IRQ_ALL_CPUS=y
 CONFIG_MEMORY_HOTREMOVE=y
diff --git a/arch/powerpc/configs/pseries_defconfig b/arch/powerpc/configs/pseries_defconfig
index 1a61aa2..54954b6 100644
--- a/arch/powerpc/configs/pseries_defconfig
+++ b/arch/powerpc/configs/pseries_defconfig
@@ -55,6 +55,7 @@ CONFIG_BINFMT_MISC=m
 CONFIG_PPC_TRANSACTIONAL_MEM=y
 CONFIG_KEXEC=y
 CONFIG_KEXEC_FILE=y
+CONFIG_RELOCATABLE=y
 CONFIG_IRQ_ALL_CPUS=y
 CONFIG_MEMORY_HOTPLUG=y
 CONFIG_MEMORY_HOTREMOVE=y
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] powerpc/configs: Turn CONFIG_RELOCATABLE on by default
  2017-05-12  5:36 [PATCH] powerpc/configs: Turn CONFIG_RELOCATABLE on by default Balbir Singh
@ 2022-03-09  9:15 ` Christophe Leroy
  0 siblings, 0 replies; 2+ messages in thread
From: Christophe Leroy @ 2022-03-09  9:15 UTC (permalink / raw)
  To: Balbir Singh, mpe; +Cc: linuxppc-dev



Le 12/05/2017 à 07:36, Balbir Singh a écrit :
> On powernv/pseries and ppc64 defconfigs
> 
> Most distros will want it on by default and I've missed
> turning it on during developer testing. Having it on ensures
> we are testing our patches with the config enabled.
> 
> Signed-off-by: Balbir Singh <bsingharora@gmail.com>

Today it is already on by default on pseries_defconfig and ppc64_defconfig.

Only powernv_defconfig would need it explicitely if this patch is still 
relevant.

> ---
>   arch/powerpc/configs/powernv_defconfig | 1 +
>   arch/powerpc/configs/ppc64_defconfig   | 1 +
>   arch/powerpc/configs/pseries_defconfig | 1 +
>   3 files changed, 3 insertions(+)
> 
> diff --git a/arch/powerpc/configs/powernv_defconfig b/arch/powerpc/configs/powernv_defconfig
> index 0695ce0..eca7189 100644
> --- a/arch/powerpc/configs/powernv_defconfig
> +++ b/arch/powerpc/configs/powernv_defconfig
> @@ -52,6 +52,7 @@ CONFIG_PPC_TRANSACTIONAL_MEM=y
>   CONFIG_HOTPLUG_CPU=y
>   CONFIG_KEXEC=y
>   CONFIG_KEXEC_FILE=y
> +CONFIG_RELOCATABLE=y
>   CONFIG_IRQ_ALL_CPUS=y
>   CONFIG_NUMA=y
>   CONFIG_MEMORY_HOTPLUG=y
> diff --git a/arch/powerpc/configs/ppc64_defconfig b/arch/powerpc/configs/ppc64_defconfig
> index 5175028..ba30841 100644
> --- a/arch/powerpc/configs/ppc64_defconfig
> +++ b/arch/powerpc/configs/ppc64_defconfig
> @@ -49,6 +49,7 @@ CONFIG_BINFMT_MISC=m
>   CONFIG_PPC_TRANSACTIONAL_MEM=y
>   CONFIG_KEXEC=y
>   CONFIG_KEXEC_FILE=y
> +CONFIG_RELOCATABLE=y
>   CONFIG_CRASH_DUMP=y
>   CONFIG_IRQ_ALL_CPUS=y
>   CONFIG_MEMORY_HOTREMOVE=y
> diff --git a/arch/powerpc/configs/pseries_defconfig b/arch/powerpc/configs/pseries_defconfig
> index 1a61aa2..54954b6 100644
> --- a/arch/powerpc/configs/pseries_defconfig
> +++ b/arch/powerpc/configs/pseries_defconfig
> @@ -55,6 +55,7 @@ CONFIG_BINFMT_MISC=m
>   CONFIG_PPC_TRANSACTIONAL_MEM=y
>   CONFIG_KEXEC=y
>   CONFIG_KEXEC_FILE=y
> +CONFIG_RELOCATABLE=y
>   CONFIG_IRQ_ALL_CPUS=y
>   CONFIG_MEMORY_HOTPLUG=y
>   CONFIG_MEMORY_HOTREMOVE=y

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-03-09  9:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-12  5:36 [PATCH] powerpc/configs: Turn CONFIG_RELOCATABLE on by default Balbir Singh
2022-03-09  9:15 ` Christophe Leroy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).