Skip to content

Commit

Permalink
Keep changes local to Dockerfile to enable upstream builds while main…
Browse files Browse the repository at this point in the history
…taining downstream - move rpms from vendor to their own rpms directory - add symlinks to match code references - This reverts commit 17f2019f8bf1cee40888c6b589c58d7f8035c7f6.
  • Loading branch information
nishant-parekh authored and josephdrichard committed Jun 14, 2024
1 parent 1b0ae7b commit a4eb5cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/daemon/daemon/gpsd.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func (g *GPSD) CmdInit() {
if g.name == "" {
g.name = GPSD_PROCESSNAME
}
g.cmdLine = fmt.Sprintf("/usr/sbin/%s -p -n -S 2947 -G -N %s", g.Name(), g.SerialPort())
g.cmdLine = fmt.Sprintf("/usr/local/sbin/%s -p -n -S 2947 -G -N %s", g.Name(), g.SerialPort())
}

// CmdRun ... run GPSD
Expand Down
2 changes: 1 addition & 1 deletion pkg/daemon/daemon/gpspipe.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func (gp *gpspipe) CmdInit() {
if gp.name == "" {
gp.name = GPSPIPE_PROCESSNAME
}
gp.cmdLine = fmt.Sprintf("/usr/bin/gpspipe -v -d -r -l -o %s", gp.SerialPort())
gp.cmdLine = fmt.Sprintf("/usr/local/bin/gpspipe -v -d -r -l -o %s", gp.SerialPort())
}

// CmdRun ... run gpspipe
Expand Down

0 comments on commit a4eb5cd

Please sign in to comment.