Advertisement
Guest User

Untitled

a guest
Sep 15th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. require recipes-fsl/images/fsl-image-qt5.bb
  2.  
  3. #Changed from += to _append according 5.2.1 of dev manual
  4. #_append
  5.  
  6. IMAGE_INSTALL = " \
  7. v4l-utils \
  8. rpm \
  9. strace \
  10. libusb1 \
  11. jansson \
  12. curl \
  13. screen \
  14. pstree \
  15. util-linux \
  16. tzcode \
  17. tzdata \
  18. tzdata-asia \
  19. tzdata-africa \
  20. tzdata-arctic \
  21. tzdata-europe \
  22. tzdata-pacific \
  23. tzdata-americas \
  24. tzdata-atlantic \
  25. tzdata-australia \
  26. tzdata-antarctica \
  27. connman \
  28. libconnman-qt5 \
  29. sqlite3 \
  30. u-boot-fw-utils \
  31. jq \
  32. qtquickcontrols \
  33. qtquickcontrols2 \
  34. u-boot-fw-utils \
  35. openssh-sftp-server \
  36. swupdate \
  37. user-image-files \
  38. kernel-image \
  39. openssh-sftp-server \
  40. "
  41.  
  42. IMAGE_INSTALL_remove = " \
  43. bluez \
  44. bluez5 \
  45. "
  46.  
  47. #According 5.2.2. of dev manual this is a correct way as well and it is a good practice
  48. IMAGE_FEATURES_append = "package-management"
  49.  
  50. inherit populate_sdk_qt5
  51.  
  52. IMAGE_ROOTFS_SIZE = "2000000"
  53.  
  54. IMAGE_FSTYPES = "ext4"
  55.  
  56. DISTRO_FEATURES_append = " systemd"
  57. DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit"
  58. VIRTUAL-RUNTIME_init_manager = "systemd"
  59. VIRTUAL-RUNTIME_initscripts = ""
  60. IMX_DEFAULT_DISTRO_FEATURES_append = " systemd"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement