[Skiboot] [PATCH] mambo: Allow setting the Linux command line from the environment

Michael Ellerman mpe at ellerman.id.au
Wed Apr 5 12:00:19 AEST 2017


For automated testing it's helpful to be able to set the Linux command
line via an environment variable.

Signed-off-by: Michael Ellerman <mpe at ellerman.id.au>
---
 external/mambo/skiboot.tcl | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/external/mambo/skiboot.tcl b/external/mambo/skiboot.tcl
index 35a8e37b0dd6..cffac3283abe 100644
--- a/external/mambo/skiboot.tcl
+++ b/external/mambo/skiboot.tcl
@@ -31,6 +31,8 @@ if { ![info exists env(SKIBOOT_ZIMAGE)] } {
 }
 mconfig payload PAYLOAD $env(SKIBOOT_ZIMAGE)
 
+mconfig linux_cmdline LINUX_CMDLINE ""
+
 # Paylod: Memory location for a Linux style ramdisk/initrd
 mconfig payload_addr PAYLOAD_ADDR 0x20000000;
 
@@ -311,7 +313,9 @@ if { [info exists env(SKIBOOT_ENABLE_MAMBO_STB)] } {
 
 # Kernel command line args, appended to any from the device tree
 # e.g.: of::set_bootargs "xmon"
-of::set_bootargs ""
+#
+# Can be set from the environment by setting LINUX_CMDLINE.
+of::set_bootargs $mconf(linux_cmdline)
 
 # Load images
 
-- 
2.7.4



More information about the Skiboot mailing list