Skip to content

Commit b07c59c

Browse files
committed
test
1 parent 3ad4886 commit b07c59c

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

pixiecore/booters.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ func (g *grpcbooter) BootSpec(m Machine) (*Spec, error) {
115115
if g.config.Debug {
116116
cmdline = append(cmdline, "DEBUG=1")
117117
}
118+
cmdline = append(cmdline, "console=ttyS0,115200n8")
118119

119120
r = rawSpec{
120121
Kernel: resp.GetKernel(),

pixiecore/http.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ func ipxeScript(mach Machine, spec *Spec, serverHost string) ([]byte, error) {
222222
if err != nil {
223223
return nil, fmt.Errorf("expanding cmdline %q: %w", spec.Cmdline, err)
224224
}
225-
b.WriteString("console=ttyS0,115200n8 ")
225+
// b.WriteString("console=ttyS0,115200n8 ")
226226
b.WriteString(cmdline)
227227
b.WriteByte('\n')
228228

0 commit comments

Comments
 (0)