From 9d4c82c2a406043f444a4be5b9adb08e58218a04 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Fonzo?= Date: Thu, 22 Nov 2018 20:16:05 -0300 Subject: [PATCH] delete filtered (backup) file --- recipes/kernel/buildtree-generic/recipe~ | 60 -------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 recipes/kernel/buildtree-generic/recipe~ diff --git a/recipes/kernel/buildtree-generic/recipe~ b/recipes/kernel/buildtree-generic/recipe~ deleted file mode 100644 index 19e0d4dd..00000000 --- a/recipes/kernel/buildtree-generic/recipe~ +++ /dev/null @@ -1,60 +0,0 @@ -# Build recipe for kernel/generic (build tree). -# -# Copyright (c) 2017-2018 Matias Fonzo, . -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -program=linux -version=4.14.56 -release=1 - -# Set 'outdir' for a nice and well-organized output directory -outdir="${outdir}/${arch}/kernel" - -pkgname=kernel-buildtree-generic - -description=" -The Linux kernel build tree. - -This package includes the kernel sources from the -build tree generated for the 'generic' kernel. - -Note: - This package does not provide the Documentation -directory of the Linux kernel due to its huge size. -*Check the original sources* -" - -license="GPLv2 only" - -build() -{ - set -ex - - cd "$srcdir" - - # Set sane permissions - chmod -R u+w,go-w,a+rX-s . - - # Copy (build) kernel-tree into the package - - mkdir -p "${destdir}/usr/src/${srcdir}" - cp -Rp ./* "${destdir}/usr/src/${srcdir}/" - - # Too much in terms of size for the kernel documentation - rm -rf "${destdir}/usr/src/${srcdir}/Documentation" - - # Unset 'keep_srcdir' for the next recipes - unset keep_srcdir -} - -- 2.11.4.GIT