On Friday, May 24, 2024 at 2:08:44 PM UTC+5:30 Anton Mikanovich wrote: 24/05/2024 09:52, srinuvasan.a via isar-users wrote: > From: Srinuvasan A > > It is long True by default, but people keep adding new cases of this > redundancy, hence fix this one. > > Signed-off-by: Srinuvasan A > --- > meta/recipes-kernel/linux/linux-custom.inc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/recipes-kernel/linux/linux-custom.inc b/meta/recipes-kernel/linux/linux-custom.inc > index 0d222332..433ed057 100644 > --- a/meta/recipes-kernel/linux/linux-custom.inc > +++ b/meta/recipes-kernel/linux/linux-custom.inc > @@ -97,7 +97,7 @@ KERNEL_NAME_PROVIDED ?= "${@ d.getVar('BPN').partition('linux-')[2]}" > > # Determine cross-profile override > python() { > - if d.getVar("DISTRO_ARCH") != d.getVar("HOST_ARCH") and d.getVar("ISAR_CROSS_COMPILE", True) == "1" and "class-native" not in d.getVar("OVERRIDES", True).split(":"): > + if d.getVar("DISTRO_ARCH") != d.getVar("HOST_ARCH") and d.getVar("ISAR_CROSS_COMPILE") == "1" and "class-native" not in d.getVar("OVERRIDES").split(":"): > d.appendVar("OVERRIDES", ":cross-profile") > } > Hello Srinuvasan, This was already fixed in next by: 7505bd07 ("linux-custom: use to_boolean when checking ISAR_CROSS_COMPILE") Hi Anton, Yes, accidently created patch on master instead of next, sorry for the inconvenience, but still it's partially fixed in next, i will send v1 of this patch again. Thanks, Srinu