Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. DESCRIPTION = "U-boot boot script"
  2. LICENSE = "CLOSED"
  3.  
  4. DEPENDS = "u-boot-mkimage-native"
  5.  
  6. SRC_URI += "file://boot.cmd"
  7.  
  8. S = "${WORKDIR}"
  9.  
  10. do_compile() {
  11. mkimage -A arm -T script -C none -n "Boot script" -d "${WORKDIR}/boot.cmd" boot.scr
  12. }
  13.  
  14. do_install() {
  15. install -d ${D}boot/
  16. install -m 0644 boot.scr ${D}boot/
  17. }
  18.  
  19. FILES_${PN} += "/boot"
  20. FILES_${PN} += "/boot/boot.scr"
  21.  
  22. Command '... locale-base-en-gb' returned 1:
  23. Added oe-repo repo from /home/user/var-fsl-yocto/build_xwayland/tmp/work/imx8mm_var_dart-poky-linux/fsl-image-gui/1.0-r0/oe-rootfs-repo
  24. Last metadata expiration check: 0:00:02 ago on Mon 22 Apr 2019 10:55:32 PM UTC.
  25. No match for argument: my-bootscript
  26. Error: Unable to find a match
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement