Skip to content

Commit

Permalink
Fix SAS block string must not contain quotes...
Browse files Browse the repository at this point in the history
  • Loading branch information
jhindersson committed Nov 9, 2023
1 parent 65a90e1 commit cef3b03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/pbainit/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func main() {
// corrupted filsystems if they are mounted and altered during boot
// Right now 0064, 00c9 and 00c4 is LSI cards with lspci -nn
log.Printf("Work-around: Swift node, do not mount data disks when searching for kernel!")
Execute("/bbin/boot", "-block='0x1000:0x0064,0x1000:0x00c9,0x1000:0x00c4'")
Execute("/bbin/boot", "-block=0x1000:0x0064,0x1000:0x00c9,0x1000:0x00c4")
} else {
Execute("/bbin/boot")
}
Expand Down

0 comments on commit cef3b03

Please sign in to comment.