Guest User

Untitled

a guest
Nov 10th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. 1 # This file was derived from the 'Hello World!' example recipe in the
  2. 2 # Yocto Project Development Manual.
  3. 3
  4. 4 DESCRIPTION = "This is custom yocto image"
  5. 5 LICENSE = "MIT"
  6. 6 SECTION = "images"
  7. 7
  8. 8 # Core files for basic console boot
  9. 9 IMAGE_INSTALL = "packagegroup-core-boot"
  10. 10
  11. 11 # Add desired packages
  12. 12 IMAGE_INSTALL += "psplash dropbear hello"
  13. 13
  14. 14 inherit core-image
  15. 15
  16. 16 IMAGE_ROOTFS_SIZE ?= "8192"
Add Comment
Please, Sign In to add comment