recipe 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Build recipe for kernel/generic (build tree).
  2. #
  3. # Copyright (c) 2017-2022 Matias Fonzo, <selk@dragora.org>.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. # Exit immediately on any error
  17. set -e
  18. program=linux
  19. version=5.16.18
  20. release=1
  21. # Define a category for the output of the package name
  22. pkgcategory=kernel
  23. pkgname=kernel-buildtree-generic
  24. description="
  25. The Linux kernel build tree.
  26. This package includes the kernel sources from the build tree
  27. \"as it is\" generated for the 'generic' kernel.
  28. "
  29. license="GPLv2 only"
  30. build()
  31. {
  32. if test "$kernel_generic_has_been_built" != kernel_generic_has_been_built
  33. then
  34. warn 'The recipe "kernel/generic" has not been processed, this recipe will not be built.'
  35. exit 4;
  36. fi
  37. cd "$srcdir"
  38. # Set sane permissions
  39. chmod -R u+w,go-w,a+rX-s .
  40. # Move (build) kernel-tree into package
  41. mkdir -p "${destdir}/usr/src/${srcdir}"
  42. mv -f ./* "${destdir}/usr/src/${srcdir}"
  43. # Unset 'keep_srcdir' and 'kernel_generic_has_been_built'
  44. # (both exported from "kernel/generic")
  45. unset -v keep_srcdir kernel_generic_has_been_built
  46. }