agherzan / meta-raspberrypi

Yocto/OE BSP layer for the Raspberry Pi boards
https://www.yoctoproject.org/
MIT License
520 stars 407 forks source link

packages are compiled and install but not avalaible in the image #1109

Open jahanzaib1234 opened 1 year ago

jahanzaib1234 commented 1 year ago

i install different packages like

IMAGE_INSTALL_append = " apt" IMAGE_INSTALL_append = " wireless-tools" IMAGE_INSTALL_append = " networkmanager"

During build system compile these packages and install but when i try these packages system show command not found.

is there any other way to add packages in image.

Note: python packages install successfully image just make issue with these packages. like: installed packages and working in image:

  IMAGE_INSTALL_append = " python3-google-cloud-core"
  IMAGE_INSTALL_append = " python3-google-crc32c"
  IMAGE_INSTALL_append = " python3-google-resumable-media"
  IMAGE_INSTALL_append = " python3-google-cloud-storage"
  IMAGE_INSTALL_append = " python3-httplib2"

  installed packages but not working in image:

  IMAGE_INSTALL_append = " apt"
  IMAGE_INSTALL_append = " wireless-tools"
  IMAGE_INSTALL_append = " networkmanager"