Advertisement
Guest User

Untitled

a guest
Aug 30th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. inherit kernel
  2. require recipes-kernel/linux/linux-yocto.inc
  3.  
  4. SRC_URI = "https://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.38.8.tar.xz"
  5. SRC_URI += "file://defconfig"
  6.  
  7. SRC_URI[md5sum] = "a63222398ee4051fde722ba711d3233b"
  8. SRC_URI[sha256sum] = "c300486b30d28ae34c587a4f1aa8e98916a0616dad91a394b0e1352a9c7a8256"
  9.  
  10. S="${WORKDIR}/linux-2.6.38.8"
  11.  
  12. LINUX_VERSION = "2.6.38.8"
  13. LINUX_VERSION_EXTENSION = ""
  14.  
  15. SRCREV="${AUTOREV}"
  16.  
  17. PR = "r0"
  18. PV = "${LINUX_VERSION}${LINUX_VERSION_EXTENSION}"
  19.  
  20. COMPATIBLE_MACHINE_icp-arm = "icp-arm"
  21.  
  22. do_configure_prepend(){
  23. cp -vf ${B}/config_mini6410_a70 ${B}/.config
  24. }
  25.  
  26. # Override COMPATIBLE_MACHINE to include your machine in a bbappend
  27. # file. Leaving it empty here ensures an early explicit build failure.
  28. COMPATIBLE_MACHINE = "(qemux86|qemuarm)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement