distro/fedora/iotInstaller: drop unused package set

The IoT installer does not use the iotCommit package set. Drop it.
This commit is contained in:
Tom Gundersen 2022-06-27 18:28:39 +01:00
parent d329af12a1
commit d8f540c5cf
15 changed files with 14 additions and 55471 deletions

View file

@ -192,6 +192,16 @@ func kernelCount(imgType distro.ImageType) int {
}
}
for _, iset := range sets["installer"] {
for _, pkg := range iset.Include {
for _, kernel := range knownKernels {
if kernel == pkg {
n++
}
}
}
}
return n
}

View file

@ -128,12 +128,8 @@ var (
mimeType: "application/x-iso9660-image",
packageSets: map[string]packageSetFunc{
buildPkgsKey: iotInstallerBuildPackageSet,
osPkgsKey: iotCommitPackageSet,
installerPkgsKey: iotInstallerPackageSet,
},
packageSetChains: map[string][]string{
osPkgsKey: {osPkgsKey, blueprintPkgsKey},
},
defaultImageConfig: &distro.ImageConfig{
Locale: "en_US.UTF-8",
EnabledServices: iotServices,