Advertisement
RobertBerger

core-image-miniml-qt5

Sep 25th, 2020
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. # Copyright (C) 2020 Robert Berger <robert.berger@ReliableEmbeddedSystems.com>
  2. # Released under the MIT license (see COPYING.MIT for the terms)
  3.  
  4. require recipes-core/images/common-img.inc
  5. require recipes-core/images/core-image-minimal.bb
  6.  
  7. # qt support in SDK
  8. inherit populate_sdk_qt5
  9.  
  10. IMAGE_INSTALL += "\
  11. dropbear \
  12. bash \
  13. udev-extraconf \
  14. "
  15.  
  16. # udev-extraconf for automount
  17.  
  18. IMAGE_INSTALL += "\
  19. packagegroup-tools-cmdline \
  20. packagegroup-tools-top \
  21. "
  22.  
  23. #packagegroup-tools-io
  24. #packagegroup-tools-rt
  25.  
  26.  
  27. # let's include qtbase by default
  28. IMAGE_INSTALL += "\
  29. qtbase \
  30. "
  31.  
  32. # global - in local.conf
  33. #DISTRO_FEATURES_remove = "wayland"
  34. #DISTRO_FEATURES_remove = "vulkan"
  35.  
  36. # this is a pure qt5 embedded demo image without X
  37. CONFLICT_DISTRO_FEATURES = "x11 wayland"
  38.  
  39. # enable stuff from MACHINE/DISTRO_FEATURES
  40. # I added this in local.conf, since it's small
  41. CORE_IMAGE_EXTRA_INSTALL += "packagegroup-base-extended"
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement