GNU Linux-libre upgraded to version 5.10.100 (for now)
[dragora.git] / recipes / kernel / buildtree-generic / recipe
blobfca39a0847b1d7032213b7b5fac4900a9eeca5f4
1 # Build recipe for kernel/generic (build tree).
3 # Copyright (c) 2017-2022 Matias Fonzo, <selk@dragora.org>.
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
9 #    http://www.apache.org/licenses/LICENSE-2.0
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.
17 # Exit immediately on any error
18 set -e
20 program=linux
21 version=5.10.100
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=kernel
27 pkgname=kernel-buildtree-generic
29 description="
30 The Linux kernel build tree.
32 This package includes the kernel sources from the build tree
33 \"as it is\" generated for the 'generic' kernel.
36 license="GPLv2 only"
38 build()
40     # Check if 'keep_srcdir' is not empty
41     # (theoretically exported from kernel/generic)
42     if test -n "$keep_srcdir"
43     then
44         cd "$srcdir"
46         # Set sane permissions
47         chmod -R u+w,go-w,a+rX-s .
49         # Move (build) kernel-tree into package
51         mkdir -p "${destdir}/usr/src/${srcdir}"
52         mv -f ./* "${destdir}/usr/src/${srcdir}"
54         # Unset 'keep_srcdir' for the next recipe(s)
55         unset -v keep_srcdir
56     fi