linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/7] Generic Command Line changes
@ 2021-03-09  0:02 Daniel Walker
  2021-03-24 14:45 ` Rob Herring
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Walker @ 2021-03-09  0:02 UTC (permalink / raw)
  To: Will Deacon, Christophe Leroy, Rob Herring, Daniel Gimpelevich,
	Andrew Morton, x86, linux-mips, linuxppc-dev, xe-linux-external,
	Benjamin Herrenschmidt, Paul Mackerras, H. Peter Anvin,
	linux-arm-kernel, linux-kernel, devicetree
  Cc: linux-efi

This fixed some problem identified in my last release. I made updates
based on comments from Christophe Leroy.

I added scripted updates to the defconfig file for mips and powerpc.
This is required in order to maintain the status quo for those platforms
which used the prior builtin command line system.

These were tested on all effected architectures.

Daniel Walker (7):
  CMDLINE: add generic builtin command line
  CMDLINE: drivers: of: ifdef out cmdline section
  powerpc: convert config files to generic cmdline
  CMDLINE: powerpc: convert to generic builtin command line
  mips: convert config files to generic cmdline
  CMDLINE: mips: convert to generic builtin command line
  CMDLINE: x86: convert to generic builtin command line

 arch/mips/Kconfig                             |  4 +-
 arch/mips/Kconfig.debug                       | 44 ---------
 arch/mips/configs/ar7_defconfig               |  9 +-
 arch/mips/configs/bcm47xx_defconfig           |  8 +-
 arch/mips/configs/bcm63xx_defconfig           | 15 ++--
 arch/mips/configs/bmips_be_defconfig          | 11 +--
 arch/mips/configs/bmips_stb_defconfig         | 11 +--
 arch/mips/configs/capcella_defconfig          | 11 +--
 arch/mips/configs/ci20_defconfig              | 10 +--
 arch/mips/configs/cu1000-neo_defconfig        | 10 +--
 arch/mips/configs/cu1830-neo_defconfig        | 10 +--
 arch/mips/configs/e55_defconfig               |  4 +-
 arch/mips/configs/generic_defconfig           |  6 +-
 arch/mips/configs/gpr_defconfig               | 18 +---
 arch/mips/configs/loongson3_defconfig         | 13 +--
 arch/mips/configs/mpc30x_defconfig            |  7 +-
 arch/mips/configs/tb0219_defconfig            |  7 +-
 arch/mips/configs/tb0226_defconfig            |  7 +-
 arch/mips/configs/tb0287_defconfig            |  7 +-
 arch/mips/configs/workpad_defconfig           | 11 +--
 arch/mips/kernel/setup.c                      | 36 +-------
 arch/powerpc/Kconfig                          | 37 +-------
 arch/powerpc/configs/44x/fsp2_defconfig       | 33 ++++---
 arch/powerpc/configs/44x/iss476-smp_defconfig | 25 +++---
 arch/powerpc/configs/44x/warp_defconfig       | 17 ++--
 arch/powerpc/configs/holly_defconfig          | 13 +--
 arch/powerpc/configs/mvme5100_defconfig       | 23 ++---
 arch/powerpc/configs/skiroot_defconfig        | 12 ++-
 arch/powerpc/configs/storcenter_defconfig     | 18 ++--
 arch/powerpc/kernel/prom.c                    |  1 +
 arch/powerpc/kernel/prom_init.c               | 35 +++++---
 arch/x86/Kconfig                              | 44 +--------
 arch/x86/kernel/setup.c                       | 18 +---
 drivers/firmware/efi/libstub/x86-stub.c       |  2 +-
 drivers/of/fdt.c                              | 12 +++
 include/linux/cmdline.h                       | 89 +++++++++++++++++++
 init/Kconfig                                  | 68 ++++++++++++++
 37 files changed, 321 insertions(+), 385 deletions(-)
 create mode 100644 include/linux/cmdline.h

-- 
2.25.1


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

* Re: [PATCH v2 0/7] Generic Command Line changes
  2021-03-09  0:02 [PATCH v2 0/7] Generic Command Line changes Daniel Walker
@ 2021-03-24 14:45 ` Rob Herring
  0 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2021-03-24 14:45 UTC (permalink / raw)
  To: Daniel Walker
  Cc: Will Deacon, Christophe Leroy, Daniel Gimpelevich, Andrew Morton,
	X86 ML, open list:MIPS, linuxppc-dev, xe-linux-external,
	Benjamin Herrenschmidt, Paul Mackerras, H. Peter Anvin,
	linux-arm-kernel, linux-kernel, devicetree, linux-efi

On Mon, Mar 8, 2021 at 5:02 PM Daniel Walker <danielwa@cisco.com> wrote:
>
> This fixed some problem identified in my last release. I made updates
> based on comments from Christophe Leroy.
>
> I added scripted updates to the defconfig file for mips and powerpc.
> This is required in order to maintain the status quo for those platforms
> which used the prior builtin command line system.
>
> These were tested on all effected architectures.
>
> Daniel Walker (7):
>   CMDLINE: add generic builtin command line
>   CMDLINE: drivers: of: ifdef out cmdline section
>   powerpc: convert config files to generic cmdline
>   CMDLINE: powerpc: convert to generic builtin command line
>   mips: convert config files to generic cmdline
>   CMDLINE: mips: convert to generic builtin command line
>   CMDLINE: x86: convert to generic builtin command line

Can you send out or provide a branch of the other converted arches you
have patches for? Given this got revived due to arm64 cmdline changes,
including arm64 patches at least would be beneficial as there are
folks motivated to review and test this on Arm.

Rob

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

* Re: [PATCH v2 0/7] Generic Command Line changes
  2021-03-08 23:53 Daniel Walker
@ 2021-03-09  1:17 ` Randy Dunlap
  0 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2021-03-09  1:17 UTC (permalink / raw)
  To: Daniel Walker, Will Deacon, Christophe Leroy, Rob Herring,
	Daniel Gimpelevich, Andrew Morton, x86, linux-mips, linuxppc-dev,
	Benjamin Herrenschmidt, Paul Mackerras, H. Peter Anvin,
	linux-arm-kernel, linux-kernel, devicetree
  Cc: linux-efi

On 3/8/21 3:53 PM, Daniel Walker wrote:
> This fixed some problem identified in my last release. I made updates
> based on comments from Christophe Leroy.
> 
> I added scripted updates to the defconfig file for mips and powerpc.
> This is required in order to maintain the status quo for those platforms
> which used the prior builtin command line system.
> 
> These were tested on all effected architectures.
> 
> Daniel Walker (7):
>   CMDLINE: add generic builtin command line
>   CMDLINE: drivers: of: ifdef out cmdline section
>   powerpc: convert config files to generic cmdline
>   CMDLINE: powerpc: convert to generic builtin command line
>   mips: convert config files to generic cmdline
>   CMDLINE: mips: convert to generic builtin command line
>   CMDLINE: x86: convert to generic builtin command line
> 


Hi Daniel,

These patches (1 - 7) should be sent as a Reply-to patch #0.

In .gitconfig, could you use
	thread = true

or use --thread on the command line?

HTH.
thanks.
-- 
~Randy


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

* [PATCH v2 0/7] Generic Command Line changes
@ 2021-03-08 23:53 Daniel Walker
  2021-03-09  1:17 ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Walker @ 2021-03-08 23:53 UTC (permalink / raw)
  To: Will Deacon, Christophe Leroy, Rob Herring, Daniel Gimpelevich,
	Andrew Morton, x86, linux-mips, linuxppc-dev,
	Benjamin Herrenschmidt, Paul Mackerras, H. Peter Anvin,
	linux-arm-kernel, linux-kernel, devicetree
  Cc: linux-efi

This fixed some problem identified in my last release. I made updates
based on comments from Christophe Leroy.

I added scripted updates to the defconfig file for mips and powerpc.
This is required in order to maintain the status quo for those platforms
which used the prior builtin command line system.

These were tested on all effected architectures.

Daniel Walker (7):
  CMDLINE: add generic builtin command line
  CMDLINE: drivers: of: ifdef out cmdline section
  powerpc: convert config files to generic cmdline
  CMDLINE: powerpc: convert to generic builtin command line
  mips: convert config files to generic cmdline
  CMDLINE: mips: convert to generic builtin command line
  CMDLINE: x86: convert to generic builtin command line

 arch/mips/Kconfig                             |  4 +-
 arch/mips/Kconfig.debug                       | 44 ---------
 arch/mips/configs/ar7_defconfig               |  9 +-
 arch/mips/configs/bcm47xx_defconfig           |  8 +-
 arch/mips/configs/bcm63xx_defconfig           | 15 ++--
 arch/mips/configs/bmips_be_defconfig          | 11 +--
 arch/mips/configs/bmips_stb_defconfig         | 11 +--
 arch/mips/configs/capcella_defconfig          | 11 +--
 arch/mips/configs/ci20_defconfig              | 10 +--
 arch/mips/configs/cu1000-neo_defconfig        | 10 +--
 arch/mips/configs/cu1830-neo_defconfig        | 10 +--
 arch/mips/configs/e55_defconfig               |  4 +-
 arch/mips/configs/generic_defconfig           |  6 +-
 arch/mips/configs/gpr_defconfig               | 18 +---
 arch/mips/configs/loongson3_defconfig         | 13 +--
 arch/mips/configs/mpc30x_defconfig            |  7 +-
 arch/mips/configs/tb0219_defconfig            |  7 +-
 arch/mips/configs/tb0226_defconfig            |  7 +-
 arch/mips/configs/tb0287_defconfig            |  7 +-
 arch/mips/configs/workpad_defconfig           | 11 +--
 arch/mips/kernel/setup.c                      | 36 +-------
 arch/powerpc/Kconfig                          | 37 +-------
 arch/powerpc/configs/44x/fsp2_defconfig       | 33 ++++---
 arch/powerpc/configs/44x/iss476-smp_defconfig | 25 +++---
 arch/powerpc/configs/44x/warp_defconfig       | 17 ++--
 arch/powerpc/configs/holly_defconfig          | 13 +--
 arch/powerpc/configs/mvme5100_defconfig       | 23 ++---
 arch/powerpc/configs/skiroot_defconfig        | 12 ++-
 arch/powerpc/configs/storcenter_defconfig     | 18 ++--
 arch/powerpc/kernel/prom.c                    |  1 +
 arch/powerpc/kernel/prom_init.c               | 35 +++++---
 arch/x86/Kconfig                              | 44 +--------
 arch/x86/kernel/setup.c                       | 18 +---
 drivers/firmware/efi/libstub/x86-stub.c       |  2 +-
 drivers/of/fdt.c                              | 12 +++
 include/linux/cmdline.h                       | 89 +++++++++++++++++++
 init/Kconfig                                  | 68 ++++++++++++++
 37 files changed, 321 insertions(+), 385 deletions(-)
 create mode 100644 include/linux/cmdline.h

-- 
2.25.1


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

end of thread, other threads:[~2021-03-24 14:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-09  0:02 [PATCH v2 0/7] Generic Command Line changes Daniel Walker
2021-03-24 14:45 ` Rob Herring
  -- strict thread matches above, loose matches on Subject: below --
2021-03-08 23:53 Daniel Walker
2021-03-09  1:17 ` Randy Dunlap

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).