aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/instance
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/instance')
-rw-r--r--pkg/instance/instance.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/instance/instance.go b/pkg/instance/instance.go
index e4415a86e..e1e222a3f 100644
--- a/pkg/instance/instance.go
+++ b/pkg/instance/instance.go
@@ -42,6 +42,7 @@ type env struct {
}
type BuildKernelConfig struct {
+ MakeBin string
CompilerBin string
LinkerBin string
CcacheBin string
@@ -147,6 +148,7 @@ func (env *env) BuildKernel(buildCfg *BuildKernelConfig) (
VMType: env.cfg.Type,
KernelDir: env.cfg.KernelSrc,
OutputDir: imageDir,
+ Make: buildCfg.MakeBin,
Compiler: buildCfg.CompilerBin,
Linker: buildCfg.LinkerBin,
Ccache: buildCfg.CcacheBin,