Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jpdavis-prof committed Oct 11, 2024
1 parent 9b04bc2 commit 8ec357e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pkg/cli/handoff/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,18 @@ func getKernelCommandlineArgs(
) {
// We don't need to specific the kernel pram because BSS will *always* add it.
cmdlineParts[i] = ""
} else if strings.HasPrefix(
part,
"ifname=hsn",
) {
// Do not assign hsn* interface names.
cmdlineParts[i] = ""
} else if strings.HasPrefix(
part,
"ip=hsn",
) {
// Do not set parameters for hsn* interfaces.
cmdlineParts[i] = ""
}
}

Expand Down

0 comments on commit 8ec357e

Please sign in to comment.