From 6c349e80124c227c6f19edbce69b3df9809779eb Mon Sep 17 00:00:00 2001 From: Jan Tluka Date: Fri, 2 Feb 2024 13:41:37 +0100 Subject: [PATCH] Recipes/ENRT/BaremetalEnrtRecipe.py: inherit UseVfsMixin Signed-off-by: Jan Tluka --- lnst/Recipes/ENRT/BaremetalEnrtRecipe.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lnst/Recipes/ENRT/BaremetalEnrtRecipe.py b/lnst/Recipes/ENRT/BaremetalEnrtRecipe.py index e1bc89804..764d9c0dd 100644 --- a/lnst/Recipes/ENRT/BaremetalEnrtRecipe.py +++ b/lnst/Recipes/ENRT/BaremetalEnrtRecipe.py @@ -1,4 +1,5 @@ from lnst.Recipes.ENRT.BaseEnrtRecipe import BaseEnrtRecipe +from lnst.Recipes.ENRT.UseVfsMixin import UseVfsMixin from lnst.Recipes.ENRT.PerfTestMixins import CommonPerfTestTweakMixin from lnst.Recipes.ENRT.ConfigMixins.DisableTurboboostMixin import ( DisableTurboboostMixin, @@ -55,6 +56,7 @@ def disable_turboboost_host_list(self): class BaremetalEnrtRecipe( + UseVfsMixin, BaremetalEnrtCommonMixins, BaremetalEnrtMeasurementGenerators, BaseEnrtRecipe,