Magellan Linux

Contents of /trunk/core/kernel-magellan/kernel-magellan-3.2.6-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11071 - (show annotations) (download)
Thu Feb 16 12:33:52 2012 UTC (12 years, 7 months ago) by niro
File size: 2515 byte(s)
auto added: ver bump to 3.2.6-r1
1 # $Id$
2
3 # standard magellan kernel:
4 # using linux-3.2.6
5 # using aufs3-3.2_20120109 (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.2.6${PSUBVER}"
27 PBUILD="r1"
28
29 # set the right tarball version
30 TARBALLPVER="${PVER%.*}"
31
32 DEPEND=">= virtual/module-tools
33 >= sys-fs/udev-180
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.2.1-all-fixes.patch
54 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0101-3.2.2-all-fixes.patch
55 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0102-3.2.3-all-fixes.patch
56 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0103-3.2.4-all-fixes.patch
57 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0104-3.2.5-all-fixes.patch
58 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0105-3.2.6-all-fixes.patch
59 mirror://kernel-${BRANCH}/patches-${PVER%.*}/0150-3.2_20120109-aufs3.patch
60 )
61
62 UP2DATE="updatecmd http://www.kernel.org/ | grep -A3 -i 'latest stable' | sed -n 's/.*\([0-9].[0-9].[0-9].*\).*/\1/;$ p'"
63
64 src_prepare()
65 {
66 kernel_src_prepare || die
67
68 # 001-100 - ck patches
69 # 100-150 - official updates
70 mpatch 0100-3.2.1-all-fixes.patch || die
71 mpatch 0101-3.2.2-all-fixes.patch || die
72 mpatch 0102-3.2.3-all-fixes.patch || die
73 mpatch 0103-3.2.4-all-fixes.patch || die
74 mpatch 0104-3.2.5-all-fixes.patch || die
75 mpatch 0105-3.2.6-all-fixes.patch || die
76 # 150-300 - magellan patches, driver updates etc
77 mpatch 0150-3.2_20120109-aufs3.patch || die
78 # 300-400 - compilations fixes and other
79 }