Skip to content

Commit

Permalink
Switch to using 'boot' instead of 'localboot'
Browse files Browse the repository at this point in the history
Untested
  • Loading branch information
Christian Svensson authored Jun 3, 2021
1 parent 009485f commit c3d284f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/pbainit/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,14 @@ func main() {
abort := make(chan bool)
go func() {
fmt.Println("")
log.Printf("Starting localboot in 5 seconds, press Enter to start shell instead")
log.Printf("Starting 'boot' in 5 seconds, press Enter to start shell instead")
select {
case <-abort:
return
case <-time.After(5 * time.Second):
// pass
}
Execute("/bbin/localboot", "-grub")
Execute("/bbin/boot")
}()

reader.ReadString('\n')
Expand Down

0 comments on commit c3d284f

Please sign in to comment.