wok view linux/receipt @ rev 7666

Moved Module.sysvers to Module.sysvers-modules. This is cause i think making linux-without-modules bzImage is was change that file. Removed /usr/src/linux in pre_remove function in linux-module-headers. Added /usr/src/linux soft link to post_install in linux-module-headers.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 12:59:54 2010 +0000 (2010-12-16)
parents ad0d39a286a5
children 26db9394c095
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 mv Module.symvers Module.symvers-modules
91 sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config
92 # We can't keep every driver in staging
93 sed -i -e 's/^CONFIG_RTL8192/#&/' \
94 -e 's/^CONFIG_R8187SE/#&/' \
95 -e 's/^CONFIG_RT2870/#&/' .config
96 yes '' | make oldconfig
97 make -j 4 bzImage && mv arch/x86/boot/bzImage $PWD/_pkg
98 }
100 # Rules to gen a SliTaz package suitable for Tazpkg.
101 genpkg_rules()
102 {
103 local path
104 cp -a $_pkg/boot $fs
105 # Compress all modules.
106 #./stuff/gztazmod.sh $_pkg/lib/modules/$VERSION-slitaz
107 path=$fs/lib/modules/$VERSION-slitaz/kernel
108 mkdir -p $path
109 cp -a $_pkg/lib/modules/$VERSION-slitaz/mo* \
110 $fs/lib/modules/$VERSION-slitaz
111 # Get the base modules
112 export src
113 export _pkg
114 $src/slitaz/list_modules.sh \
115 $(cat stuff/modules-$VERSION.list) > $src/modules.list
116 while read module; do
117 dir=$(dirname $module)
118 [ -d $path/$dir ] || mkdir -p $path/$dir
119 cp -a $_pkg/lib/modules/$VERSION-slitaz/kernel/$module $path/$dir
120 done < $src/modules.list
121 # Remove unresolved links
122 rm -f $fs/lib/modules/$VERSION-slitaz/build
123 rm -f $fs/lib/modules/$VERSION-slitaz/source
124 # Cook all packages with a kernel module
125 for i in $(cd $WOK; grep -l 'tazwok cook linux$' */receipt)
126 do
127 echo tazwok cook ${i%/receipt}
128 done
129 # Check and echo any module in kernel .config that's not added to
130 # one of linux-* pkgs
131 ./stuff/check_modules.sh
132 }
134 # Pre and post install commands for Tazpkg.
135 post_install()
136 {
137 echo "Processing post-install commands..."
138 chroot "$1/" depmod -a $VERSION-slitaz
139 # GRUB stuff.
140 if [ -f "$1/boot/grub/menu.lst" ]; then
141 root_dev=`cat $1/boot/grub/menu.lst | grep root= | sed 's/.*root=\([^ ]*\).*/\1/' | head -n 1`
142 grub_dev=`cat $1/boot/grub/menu.lst | grep "root (" | head -n 1`
143 # Add new kernel entry in case of upgrade for installed system.
144 if ! grep -q $PACKAGE-$VERSION-slitaz $1/boot/grub/menu.lst; then
145 cat >> $1/boot/grub/menu.lst << EOT
147 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
148 $grub_dev
149 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
150 EOT
151 fi
152 # Display information message.
153 cat <<EOT
154 ----
155 GRUB is installed, these tree lines must be in your /boot/grub/menu.lst:
157 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
158 $grub_dev
159 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
160 ----
161 EOT
162 fi
163 }
165 clean_wok()
166 {
167 #rm -rf aufs2
168 rm stuff/aufs2-base*
169 rm stuff/aufs2-standalone*
170 rm stuff/aufs2-kbuild*
171 rm -rf stuff/tmp
172 }