Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. - install -d "$DESTDIR$PREFIX/src/linux"
  2. - |
  3. (
  4. printf 'Makefile\0'
  5. printf 'Module.symvers\0'
  6. find arch/arm -maxdepth 1 -name 'Makefile*' -print0
  7. find arch/arm \( -name 'module.lds' -o -name 'Kbuild.platforms' -o -name 'Platform' \) -print0
  8. find arch/arm \( -type d -a \( -name include -o -name scripts \) \) -o \
  9. \! -type d -a \( -path '*include/*' -o -path '*scripts/*' \) -print0
  10. find include -name 'asm*' -prune -o -print0
  11. find include/asm-generic -print0
  12. find include/uapi -print0
  13. find scripts -print0
  14. ) | cpio -0pumd "$DESTDIR$PREFIX/src/linux"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement