Advertisement
Guest User

Untitled

a guest
Mar 7th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. Original :
  2. IMAGE_FEATURES += " \
  3. debug-tweaks \
  4. tools-profile \
  5. splash \
  6. nfs-server \
  7. tools-debug \
  8. ssh-server-dropbear \
  9. tools-testapps \
  10. hwcodecs \
  11. ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', \
  12. bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11-base x11-sato', \
  13. '', d), d)} \
  14. "
  15.  
  16. CORE_IMAGE_EXTRA_INSTALL += " \
  17. packagegroup-core-full-cmdline \
  18. packagegroup-tools-bluetooth \
  19. packagegroup-fsl-tools-audio \
  20. packagegroup-fsl-tools-gpu \
  21. packagegroup-fsl-tools-gpu-external \
  22. packagegroup-fsl-tools-testapps \
  23. packagegroup-fsl-tools-benchmark \
  24. packagegroup-fsl-gstreamer1.0 \
  25. packagegroup-fsl-gstreamer1.0-full \
  26. ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'weston-init', '', d)} \
  27. ${@bb.utils.contains('DISTRO_FEATURES', 'x11 wayland', 'weston-xwayland xterm', '', d)} \
  28. "
  29.  
  30.  
  31. Mine:
  32. IMAGE_FEATURES += " \
  33. ssh-server-dropbear \
  34. hwcodecs \
  35. ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', \
  36. bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11-base ', \
  37. '', d), d)} \
  38. "
  39.  
  40. CORE_IMAGE_EXTRA_INSTALL += " \
  41. packagegroup-fsl-tools-audio \
  42. packagegroup-fsl-tools-gpu \
  43. packagegroup-fsl-gstreamer1.0 \
  44. packagegroup-fsl-gstreamer1.0-full \
  45. ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'weston-init', '', d)} \
  46. ${@bb.utils.contains('DISTRO_FEATURES', 'x11 wayland', 'weston-xwayland xterm', '', d)} \
  47. "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement