1
0

feat: pass kernel mask to get container volumes

This commit is contained in:
2023-05-15 09:43:48 +00:00
parent a05b579086
commit 52c452debe
2 changed files with 3 additions and 3 deletions

View File

@ -334,7 +334,7 @@ func installKernel(sk config.KernelMask, pkgname string, force, headers bool) (e
if sk.DistroType == config.Debian {
// Debian has different kernels (package version) by the
// same name (ABI), so we need to separate /boot
c.Volumes = debian.ContainerVolumes(sk.DockerName(), pkgname)
c.Volumes = debian.ContainerVolumes(sk, pkgname)
searchdir = config.Dir("volumes", sk.DockerName())
}