Skip to content

Commit

Permalink
raw_configure: fix order of argument passing
Browse files Browse the repository at this point in the history
The order of arguments passed seem to be wrong. Fix it.

Signed-off-by: Kornilios Kourtis <[email protected]>
  • Loading branch information
kkourt committed Mar 26, 2024
1 parent 828cd92 commit dd0cfa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kernels/dir.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func (kd *KernelsDir) ConfigureKernel(ctx context.Context, log *logrus.Logger, k

func (kd *KernelsDir) RawConfigure(ctx context.Context, log *logrus.Logger, kernDir, kernName string, targetArch string) error {
kc := kd.KernelConfig(kernName)
return kd.rawConfigureKernel(ctx, log, kc, targetArch, kernDir)
return kd.rawConfigureKernel(ctx, log, kc, kernDir, targetArch)
}

func kConfigValidate(opts []ConfigOption) error {
Expand Down

0 comments on commit dd0cfa1

Please sign in to comment.