Skip to content

Commit

Permalink
fix: use the correct console on Banana Pi M64
Browse files Browse the repository at this point in the history
This updates the `console` arg for the `bananapi_m64` board to the correct value.

Signed-off-by: Andrew Rynhard <andrew@rynhard.io>
  • Loading branch information
andrewrynhard authored and talos-bot committed Dec 21, 2020
1 parent e791e7d commit 941556c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (b *BananaPiM64) Install(disk string) (err error) {
// KernelArgs implements the runtime.Board.
func (b *BananaPiM64) KernelArgs() procfs.Parameters {
return []*procfs.Parameter{
procfs.NewParameter("console").Append("tty0").Append("ttyS2,115200n8"),
procfs.NewParameter("console").Append("tty0").Append("ttyS0,115200"),
}
}

Expand Down

0 comments on commit 941556c

Please sign in to comment.