I am trying to install "extra-cmake-modules" package into the sdk.
First, I added this into "local.conf":
IMAGE_INSTALL += "extra-cmake-module
and the "populate_sdk" will build the sdk, but it went into target part of the sdk. If I try to use a cmake module, it says that it can't find it. Of course, since it went into the target part of the sdk.
Then I used this:
TOOLCHAIN_HOST_TASK += "extra-cmake-modules"
and the "populate_sdk" fails with the error:
Sstate summary: Wanted 2 Local 0 Mirrors 0 Missed 2 Current 3329 (0% match, 99% complete)################################################################################################################ | ETA: 0:00:00
Initialising tasks: 100% |###################################################################################################################################################################################################| Time: 0:00:04
NOTE: Executing Tasks
ERROR: imx-image-multimedia-1.0-r0 do_populate_sdk: Unable to install packages. Command '/home/dejovivl/external_disk/imx95_image/vhip_way_image/poky/build/tmp/work/ifm_imx95_19x19_verdin-poky-linux/imx-image-multimedia/1.0/recipe-sysro
ot-native/usr/bin/apt-get install --allow-downgrades --allow-remove-essential --allow-change-held-packages --allow-unauthenticated --no-remove extra-cmake-modules' returned 100:
Reading package lists...
Building dependency tree...
Reading state information...
E: Unable to locate package extra-cmake-modules
ERROR: Logfile of failure stored in: /home/dejovivl/external_disk/imx95_image/vhip_way_image/poky/build/tmp/work/ifm_imx95_19x19_verdin-poky-linux/imx-image-multimedia/1.0/temp/log.do_populate_sdk.342802
ERROR: Task (/home/dejovivl/imx95-image/meta-imx/meta-imx-sdk/recipes-fsl/images/imx-image-multimedia.bb:do_populate_sdk) failed with exit code '1'
NOTE: Tasks Summary: Attempted 7593 tasks of which 7592 didn't need to be rerun and 1 failed.
That means you got a bug in this bb file. So, what do I need to do to install this package into the host part of the sdk?