fix(boot): rename extraSutrcturedConfig to structuredExtraConfig

The former was removed
This commit is contained in:
Antoine Viallon 2026-01-20 23:11:08 +01:00
parent 07ed5e3269
commit d545c6f4f3
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -25,13 +25,14 @@ let
enableRTGroupSched = { enableRTGroupSched = {
name = "enable-rt-group-sched"; name = "enable-rt-group-sched";
patch = null; patch = null;
extraConfigStructuredConfig = with lib.kernel; { structuredExtraConfig = with lib.kernel; {
RT_GROUP_SCHED = yes; RT_GROUP_SCHED = yes;
}; };
}; };
enableEnergyModel = { enableEnergyModel = {
name = "enable-energy-model"; name = "enable-energy-model";
patch = null; extraStructuredConfig = with lib.kernel; { patch = null;
structuredExtraConfig = with lib.kernel; {
ENERGY_MODEL = yes; ENERGY_MODEL = yes;
}; };
}; };