Advertisement
Guest User

Untitled

a guest
Oct 31st, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. Tree:
  2.  
  3. meta-bebot/
  4. recipes-kernel/
  5. linux/
  6. linux_YOUR_ACTUAL_VERSION_NUMBER.bbappend
  7. files/
  8. defconfig
  9.  
  10. === The bbappend itself, on my system linux-imx_3.0.35.bbappend
  11. FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
  12.  
  13. PRINC := "${@int(PRINC) + 7}"
  14.  
  15. SRC_URI += "file://defconfig"
  16.  
  17. do_configure_append() {
  18. cp ${WORKDIR}/defconfig ${S}/.config
  19. }
  20.  
  21. === The defconfig file, in the files subdir
  22. CONFIG_ARM=y
  23. CONFIG_HAVE_PWM=y
  24. CONFIG_SYS_SUPPORTS_APM_EMULATION=y
  25. CONFIG_HAVE_SCHED_CLOCK=y
  26. CONFIG_GENERIC_GPIO=y
  27. # CONFIG_ARCH_USES_GETTIMEOFFSET is not set
  28. CONFIG_GENERIC_CLOCKEVENTS=y
  29. CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
  30. ...
  31. ### And so on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement