Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 24676 - (show annotations) (download)
Mon Mar 2 10:00:37 2015 UTC (9 years, 2 months ago) by niro
File size: 1529 byte(s)
-marked disabled
1 # $Id$
2
3 PNAME="linux-libc-headers"
4 PVER="3.18.7"
5 PBUILD="r1"
6
7 STATE="disabled"
8
9 # when upgrading linux headers, glibc must be rebuilded
10 # on system bootstrap you should rebuild the whole toolchain
11 # linux-libc-headers -> binutils -> gcc-full -> libc -> binutils -> gcc-full -> libc
12 #
13 # or one-way solution (not always safe, use this only for interim gcc releases)
14 # linux-libc-headers -> libc -> binutils -> gcc-full -> binutils -> libc
15 #
16 # each new gcc release needs a rebuild of libtool
17
18 # no need to waste time here
19 msetfeature "!strip"
20
21 KERNEL_TYPE="headers"
22 BRANCH="magellan"
23 TARBALLPVER="${PVER%.*}"
24 sminclude kernel
25
26 SRC_URI+=(
27 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0100-3.18.1-all-fixes.patch
28 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0101-3.18.2-all-fixes.patch
29 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0102-3.18.3-all-fixes.patch
30 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0103-3.18.4-all-fixes.patch
31 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0104-3.18.5-all-fixes.patch
32 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0105-3.18.6-all-fixes.patch
33 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0106-3.18.7-all-fixes.patch
34 )
35
36 kernel_apply_patches()
37 {
38 cd ${SRCDIR}
39
40 # 100-150 - official updates
41 mpatch 0100-3.18.1-all-fixes.patch || die
42 mpatch 0101-3.18.2-all-fixes.patch || die
43 mpatch 0102-3.18.3-all-fixes.patch || die
44 mpatch 0103-3.18.4-all-fixes.patch || die
45 mpatch 0104-3.18.5-all-fixes.patch || die
46 mpatch 0105-3.18.6-all-fixes.patch || die
47 mpatch 0106-3.18.7-all-fixes.patch || die
48 }