wok view linux/receipt @ rev 7656

linux: fix linux WITH modules...
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Dec 15 23:52:20 2010 +0100 (2010-12-15)
parents 440ca7d32058
children 645cf2faf482
line source
1 # SliTaz package receipt.
3 PACKAGE="linux"
4 VERSION="2.6.36"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel and modules."
7 DEPENDS="depmod"
8 BUILD_DEPENDS="slitaz-toolchain perl git"
9 MAINTAINER="devel@slitaz.org"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.kernel.org/"
12 WGET_URL="http://www.eu.kernel.org/pub/linux/kernel/v${VERSION:0:3}/$TARBALL"
13 CONFIG_FILES="/lib/modules/$VERSION-slitaz/modules.dep"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
19 # this is code to help update the kernel version faster
20 #for i in $(grep -l 'WANTED="linux"' $WOK/*/receipt)
21 #do
22 # sed -i 's|VERSION="OLDVERSION"|VERSION="NEWVERSION"|g' $i
23 #done
24 local _AUFSVER=`grep ^VERSION= $WOK/aufs/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
25 local AUFSDIR="aufs-${_AUFSVER}"
26 TARBALL=$SOURCES_REPOSITORY/$AUFSDIR.tar.gz
27 if [ -f $TARBALL ]; then
28 tar xzf $TARBALL
29 cd $AUFSDIR && git checkout origin/aufs2.1-36
30 cd $WOK/$PACKAGE
31 else
32 # Aufs2 from git repository
33 git clone http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-standalone.git $AUFSDIR
34 tar czf $TARBALL $AUFSDIR
35 cd $AUFSDIR && git checkout origin/aufs2.1-36
36 cd $WOK/$PACKAGE
37 fi
38 cp -a $AUFSDIR/Documentation $AUFSDIR/fs $AUFSDIR/include $src
39 cp -a $AUFSDIR/*.patch $WOK/$PACKAGE/stuff
40 # We need the real GNU patch
41 [ -L /usr/bin/patch ] && tazpkg get-install patch --forced
42 cd $src
43 # SliTaz db
44 [ -d slitaz ] && rm -rf slitaz 2> /dev/null
45 mkdir slitaz
46 echo "$WGET_URL" > slitaz/url
47 cp ../stuff/gztazmod.sh ../stuff/list_modules.sh slitaz
48 cp ../stuff/bootloader.sh slitaz
49 # Apply patches
50 while read patch_file; do
51 echo "$patch_file" >> slitaz/patches
52 cp ../stuff/$patch_file slitaz
53 if [ -f done.$patch_file ]; then
54 echo "Skipping $patch_file"
55 continue
56 fi
57 echo "Apply $patch_file"
58 patch -p1 < slitaz/$patch_file || exit 1
59 touch done.$patch_file
60 done <<EOT
61 $PACKAGE-diff-$VERSION.u
62 $PACKAGE-unlzma-$VERSION.u
63 $PACKAGE-header-$VERSION.u
64 $PACKAGE-freeinitrd-$VERSION.u
65 aufs2-base.patch
66 aufs2-standalone.patch
67 001-squashfs-decompressors-add-xz-decompressor-module.patch
68 002-squashfs-decompressors-add-boot-time-xz-support.patch
69 003-squashfs-x86-support-xz-compressed-kernel.patch
70 004-squashfs-add-xz-compression-support.patch
71 005-squashfs-add-xz-compression-configuration-option.patch
72 EOT
73 make mrproper
74 cd Documentation/lguest
75 make lguest || return 1
76 cd ../..
77 cp ../stuff/$PACKAGE-$VERSION-slitaz.config .config
78 make oldconfig
79 ln .config slitaz/config
80 make -j 4 bzImage &&
81 make -j 4 modules &&
82 make INSTALL_MOD_PATH=$PWD/_pkg modules_install &&
83 make INSTALL_HDR_PATH=$PWD/_pkg/usr headers_install &&
84 [ -s arch/x86/boot/bzImage ] || return 1
85 mkdir -p $PWD/_pkg/boot 2> /dev/null
86 mv arch/x86/boot/bzImage $PWD/_pkg/boot/vmlinuz-$VERSION-slitaz
87 # Compress all modules.
88 $WOK/$PACKAGE/stuff/gztazmod.sh $PWD/_pkg/lib/modules/$VERSION-slitaz
89 mv System.map System.map-modules
90 sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config
91 # We can't keep every driver in staging
92 sed -i -e 's/^CONFIG_RTL8192/#&/' \
93 -e 's/^CONFIG_R8187SE/#&/' \
94 -e 's/^CONFIG_RT2870/#&/' .config
95 yes '' | make oldconfig
96 make -j 4 bzImage && mv arch/x86/boot/bzImage $PWD/_pkg
97 }
99 # Rules to gen a SliTaz package suitable for Tazpkg.
100 genpkg_rules()
101 {
102 local path
103 cp -a $_pkg/boot $fs
104 # Compress all modules.
105 #./stuff/gztazmod.sh $_pkg/lib/modules/$VERSION-slitaz
106 path=$fs/lib/modules/$VERSION-slitaz/kernel
107 mkdir -p $path
108 cp -a $_pkg/lib/modules/$VERSION-slitaz/mo* \
109 $fs/lib/modules/$VERSION-slitaz
110 # Get the base modules
111 export src
112 export _pkg
113 $src/slitaz/list_modules.sh \
114 $(cat stuff/modules-$VERSION.list) > $src/modules.list
115 while read module; do
116 dir=$(dirname $module)
117 [ -d $path/$dir ] || mkdir -p $path/$dir
118 cp -a $_pkg/lib/modules/$VERSION-slitaz/kernel/$module $path/$dir
119 done < $src/modules.list
120 # Remove unresolved links
121 rm -f $fs/lib/modules/$VERSION-slitaz/build
122 rm -f $fs/lib/modules/$VERSION-slitaz/source
123 # Cook all packages with a kernel module
124 for i in $(cd $WOK; grep -l 'tazwok cook linux$' */receipt)
125 do
126 echo tazwok cook ${i%/receipt}
127 done
128 # Check and echo any module in kernel .config that's not added to
129 # one of linux-* pkgs
130 ./stuff/check_modules.sh
131 }
133 # Pre and post install commands for Tazpkg.
134 post_install()
135 {
136 echo "Processing post-install commands..."
137 chroot "$1/" depmod -a $VERSION-slitaz
138 # GRUB stuff.
139 if [ -f "$1/boot/grub/menu.lst" ]; then
140 root_dev=`cat $1/boot/grub/menu.lst | grep root= | sed 's/.*root=\([^ ]*\).*/\1/' | head -n 1`
141 grub_dev=`cat $1/boot/grub/menu.lst | grep "root (" | head -n 1`
142 # Add new kernel entry in case of upgrade for installed system.
143 if ! grep -q $PACKAGE-$VERSION-slitaz $1/boot/grub/menu.lst; then
144 cat >> $1/boot/grub/menu.lst << EOT
146 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
147 $grub_dev
148 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
149 EOT
150 fi
151 # Display information message.
152 cat <<EOT
153 ----
154 GRUB is installed, these tree lines must be in your /boot/grub/menu.lst:
156 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
157 $grub_dev
158 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
159 ----
160 EOT
161 fi
162 }
164 clean_wok()
165 {
166 #rm -rf aufs2
167 rm stuff/aufs2-base*
168 rm stuff/aufs2-standalone*
169 rm stuff/aufs2-kbuild*
170 rm -rf stuff/tmp
171 }