Advertisement
Guest User

Untitled

a guest
Aug 31st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. SUMMARY = "An image which add the support of using deb package management"
  2.  
  3. inherit core-image
  4. include recipes­core/images/core­-image-­minimal.bb
  5.  
  6. IMAGE_FEATURES += "package-management"
  7. IMAGE_INSTALL_append = "gnupg coreutils keyfile"
  8.  
  9. IMAGE_LINGUA = " "
  10.  
  11. LICENSE = "MIT"
  12.  
  13. IMAGE_ROOTFS_SIZE ?= "16192"
  14.  
  15. ROOTFS_POSTPROCESS_COMMAND += "addkeyfile;"
  16.  
  17. addkeyfile(){
  18. apt-key add ${D}/deb_key/keyFile
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement