Magellan Linux

Annotation of /branches/magellan-next/core/kernel-magellan/kernel-magellan-3.1.8-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9828 - (hide annotations) (download)
Thu Jan 12 11:16:16 2012 UTC (12 years, 4 months ago) by niro
File size: 2756 byte(s)
auto added: ver bump to 3.1.8-r1
1 niro 9828 # $Id$
2    
3     # standard magellan kernel:
4     # using linux-3.1.8
5     # using aufs3-3.1_20111114 (http://aufs.sourceforge.net/)
6     # dropped fbcondecor patches in favor of plymouth
7     # dropped unionfs in favor of aufs
8     # enabled staging usbip drivers
9     # enabled staging nouveau driver
10     # enabled staging ms hyper-v drivers
11     # enabeld staging vmware drm driver
12     # do not set UEVENT_HELPER to "/sbin/hotplug" anymore but to "" as descripted in udev-176 README
13     # really enabled aufs
14    
15     # what type are we building (sources, image or headers) ?
16     KERNEL_TYPE="image"
17     COMPRESS_MODULES="gzip"
18    
19     BRANCH="magellan"
20    
21     PNAME="kernel-${BRANCH}"
22    
23     # 2.6.x.x subver style
24     PSUBVER=""
25    
26     PVER="3.1.8${PSUBVER}"
27     PBUILD="r1"
28    
29     # set the right tarball version
30     TARBALLPVER="${PVER%.*}"
31    
32     DEPEND=">= sys-apps/module-init-tools-3.12
33     >= sys-fs/udev-175
34     >= virtual/initramfs-tools
35     >= virtual/initscripts"
36    
37     PROVIDE="virtual/kernel
38     virtual/alsa-drivers"
39    
40     # include global kernel functions
41     sminclude kernel mtools
42    
43     # --- extra drivers included in this kernel: ---
44     # we do not bundle ati-drivers and nvidia-glx drivers anymore
45     # use our new module builders!
46     # --- eot extra drivers ---
47    
48     SRC_URI=(
49     http://www.kernel.org/pub/linux/kernel/v$(echo ${PVER} | cut -d. -f1).x/${SRCFILE}
50     mirror://kernel-${BRANCH}/${SRCFILE}
51     mirror://kernel-${BRANCH}/config-${PVER}-${BRANCH}-${PBUILD}-i686
52     mirror://kernel-${BRANCH}/config-${PVER}-${BRANCH}-${PBUILD}-x86_64
53     mirror://kernel-${BRANCH}/patches-${PVER%.*}/0100-3.1.1-all-fixes.patch
54     mirror://kernel-${BRANCH}/patches-${PVER%.*}/0101-3.1.2-all-fixes.patch
55     mirror://kernel-${BRANCH}/patches-${PVER%.*}/0102-3.1.3-all-fixes.patch
56     mirror://kernel-${BRANCH}/patches-${PVER%.*}/0103-3.1.4-all-fixes.patch
57     mirror://kernel-${BRANCH}/patches-${PVER%.*}/0104-3.1.5-all-fixes.patch
58     mirror://kernel-${BRANCH}/patches-${PVER%.*}/0105-3.1.6-all-fixes.patch
59     mirror://kernel-${BRANCH}/patches-${PVER%.*}/0106-3.1.7-all-fixes.patch
60     mirror://kernel-${BRANCH}/patches-${PVER%.*}/0107-3.1.8-all-fixes.patch
61     mirror://kernel-${BRANCH}/patches-${PVER%.*}/0150-3.1_20111114-aufs3.patch
62     )
63    
64     UP2DATE="updatecmd http://www.kernel.org/ | grep -A3 -i 'latest stable' | sed -n 's/.*\([0-9].[0-9].[0-9].*\).*/\1/;$ p'"
65    
66     src_prepare()
67     {
68     kernel_src_prepare || die
69    
70     # 001-100 - ck patches
71     # 100-150 - official updates
72     mpatch 0100-3.1.1-all-fixes.patch || die
73     mpatch 0101-3.1.2-all-fixes.patch || die
74     mpatch 0102-3.1.3-all-fixes.patch || die
75     mpatch 0103-3.1.4-all-fixes.patch || die
76     mpatch 0104-3.1.5-all-fixes.patch || die
77     mpatch 0105-3.1.6-all-fixes.patch || die
78     mpatch 0106-3.1.7-all-fixes.patch || die
79     mpatch 0107-3.1.8-all-fixes.patch || die
80     # 150-300 - magellan patches, driver updates etc
81     mpatch 0150-3.1_20111114-aufs3.patch || die
82     # 300-400 - compilations fixes and other
83     }