Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3b28012 authored by Cole Faust's avatar Cole Faust Committed by Gerrit Code Review
Browse files

Merge "Print product vars in board config launcher"

parents 1469ff6e 3c1868bb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1711,7 +1711,7 @@ func BoardLauncher(mainModuleUri string, inputVariablesUri string) string {
	fmt.Fprintf(&buf, "load(%q, input_variables_init = \"init\")\n", inputVariablesUri)
	fmt.Fprintf(&buf, "globals, cfg, globals_base = %s(init, input_variables_init)\n", cfnBoardMain)
	fmt.Fprintf(&buf, "# TODO: Some product config variables need to be printed, but most are readonly so we can't just print cfg here.\n")
	fmt.Fprintf(&buf, "%s(globals, globals_base)\n", cfnPrintGlobals)
	fmt.Fprintf(&buf, "%s((globals, cfg, globals_base))\n", cfnPrintVars)
	return buf.String()
}