Advertisement
Guest User

Untitled

a guest
Jan 10th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. # VENDOR'S LAYER
  2. meta-compulab/
  3. ├── conf
  4. │   ├── layer.conf
  5. │   └── machine
  6. │   ├── cl-som-imx6ul.conf
  7. │   ├── cl-som-imx7.conf
  8. │   └── cm-fx6-evk.conf
  9. ├── README.adoc
  10. ├── recipes-bsp
  11. │   ├── alsa-state
  12. │   │   ├── alsa-state
  13. │   │   └── alsa-state.bbappend
  14. │   └── u-boot
  15. │   ├── u-boot-compulab-2015.10
  16. │   ├── u-boot-compulab_2015.10.bb
  17. │   ├── u-boot-compulab-2016.09
  18. │   ├── u-boot-compulab_2016.09.bb
  19. │   ├── u-boot-compulab_cl-som-imx7.inc
  20. │   ├── u-boot-fw-utils
  21. │   ├── u-boot-fw-utils_%.bbappend
  22. │   ├── u-boot-script-compulab
  23. │   └── u-boot-script-compulab.bb
  24. ├── recipes-kernel
  25. │   └── linux
  26. │   ├── linux-compulab-4.1.15
  27. │   ├── linux-compulab_4.1.15.bb
  28. │   ├── linux-compulab_cl-som-imx6ul.inc
  29. │   ├── linux-compulab_cl-som-imx7.inc
  30. │   └── linux-compulab_cm-fx6-evk.inc
  31. └── recipes-sato
  32. └── images
  33. └── compulab-eval-image.bb
  34.  
  35.  
  36.  
  37. # MY EXTENDED LAYER
  38. meta-cm-fx6-custom/
  39. ├── conf
  40. │   ├── layer.conf
  41. │   └── machine
  42. │   └── cm-fx6-custom.conf
  43. ├── recipes-bsp
  44. │   └── u-boot
  45. │   ├── u-boot-script-compulab
  46. │   └── u-boot-script-compulab.bbappend
  47. ├── recipes-core
  48. │   ├── base-files
  49. │   │   ├── base-files
  50. │   │   └── base-files_%.bbappend
  51. │   ├── packagegroups
  52. │   │   └── packagegroup-cm-fx6.bb
  53. │   └── systemd
  54. │   ├── files
  55. │   └── systemd_%.bbappend
  56. ├── recipes-kernel
  57. │   └── linux
  58. │   ├── linux-compulab
  59. │   └── linux-compulab_4.1.15.bbappend
  60.  
  61.  
  62. # linux-compulab_4.1.15.bbappend
  63. FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
  64.  
  65. SRC_URI += "file://defconfig"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement