Magellan Linux

Contents of /trunk/core/linux-libc-headers/linux-libc-headers-4.13.5-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 29695 - (show annotations) (download)
Mon Oct 9 09:03:57 2017 UTC (6 years, 6 months ago) by niro
File size: 1391 byte(s)
auto added: ver bump to 4.13.5-r1
1 # $Id$
2
3 PNAME="linux-libc-headers"
4 PVER="4.13.5"
5 PBUILD="r1"
6
7 # when upgrading linux headers, glibc must be rebuilded
8 # on system bootstrap you should rebuild the whole toolchain
9 # linux-libc-headers -> binutils -> gcc-full -> libc -> binutils -> gcc-full -> libc
10 #
11 # or one-way solution (not always safe, use this only for interim gcc releases)
12 # linux-libc-headers -> libc -> binutils -> gcc-full -> binutils -> libc
13 #
14 # each new gcc release needs a rebuild of libtool
15
16 # no need to waste time here
17 msetfeature "!strip"
18
19 KERNEL_TYPE="headers"
20 BRANCH="magellan"
21 TARBALLPVER="${PVER%.*}"
22 sminclude kernel
23
24 SRC_URI+=(
25 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0100-4.13.1-all-fixes.patch
26 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0101-4.13.2-all-fixes.patch
27 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0102-4.13.3-all-fixes.patch
28 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0103-4.13.4-all-fixes.patch
29 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0104-4.13.5-all-fixes.patch
30 )
31
32 kernel_apply_patches()
33 {
34 cd ${SRCDIR}
35
36 # 100-150 - official updates
37 mpatch 0100-4.13.1-all-fixes.patch || die
38 mpatch 0101-4.13.2-all-fixes.patch || die
39 mpatch 0102-4.13.3-all-fixes.patch || die
40 mpatch 0103-4.13.4-all-fixes.patch || die
41 mpatch 0104-4.13.5-all-fixes.patch || die
42 }
43
44 src_install()
45 {
46 kernel_src_install
47
48 # use always drm headers from libdrm
49 mdelete -r /usr/include/drm || die
50 }