wok view linux/receipt @ rev 4507

Add lguest
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 23 13:32:28 2009 +0100 (2009-11-23)
parents aa65a927a2f3
children 0c0c693fe4c6
line source
1 # SliTaz package receipt.
3 PACKAGE="linux"
4 VERSION="2.6.30.6"
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 {
18 # Aufs2 from git repository
19 if [ ! -d aufs2 ]; then
20 git clone http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-standalone.git aufs2
21 cd aufs2 && git checkout origin/aufs2-30
22 cp -a Documentation fs include $src
23 cp -a *.patch ../stuff
24 [ -L /usr/bin/patch ] && tazpkg get-install patch --forced
25 fi
26 cd $src
27 # SliTaz db
28 rm -rf slitaz 2> /dev/null
29 mkdir slitaz
30 echo "$WGET_URL" > slitaz/url
31 cp ../stuff/gztazmod.sh ../stuff/list_modules.sh slitaz
32 cp ../stuff/bootloader.sh slitaz
33 # Misc patches from pascal
34 while read patch_file; do
35 echo "$patch_file" >> slitaz/patches
36 #cp ../stuff/$patch_file slitaz/$patch_file
37 cp ../stuff/$patch_file slitaz
38 if [ -f done.$patch_file ]; then
39 echo "Skipping $patch_file"
40 continue
41 fi
42 echo "Apply $patch_file"
43 patch -p1 < slitaz/$patch_file || exit 1
44 touch done.$patch_file
45 done <<EOT
46 $PACKAGE-utf8-$VERSION.u
47 $PACKAGE-diff-$VERSION.u
48 $PACKAGE-freeinitrd-$VERSION.u
49 $PACKAGE-unlzma-$VERSION.u
50 aufs2-base.patch
51 aufs2-kbuild.patch
52 aufs2-standalone.patch
53 $PACKAGE-header-$VERSION.u
54 EOT
55 make mrproper
56 cd Documentation/lguest
57 make lguest || return 1
58 cd ../..
59 cp ../stuff/$PACKAGE-$VERSION-slitaz.config .config
60 make oldconfig
61 ln .config slitaz/config
62 make bzImage &&
63 make modules &&
64 make INSTALL_MOD_PATH=$PWD/_pkg modules_install &&
65 make INSTALL_HDR_PATH=$PWD/_pkg/usr headers_install &&
66 [ -s arch/x86/boot/bzImage ]
67 }
69 # Rules to gen a SliTaz package suitable for Tazpkg.
70 genpkg_rules()
71 {
72 local path
73 mkdir $fs/boot
74 cp -a $src/arch/x86/boot/bzImage $fs/boot/vmlinuz-$VERSION-slitaz
75 # Compress all modules.
76 # Package module-init-tools is compiled with zlib support.
77 #
78 ./stuff/gztazmod.sh $_pkg/lib/modules/$VERSION-slitaz
79 path=$fs/lib/modules/$VERSION-slitaz/kernel
80 mkdir -p $path
81 cp -a $_pkg/lib/modules/$VERSION-slitaz/mo* $fs/lib/modules/$VERSION-slitaz
82 export src
83 export _pkg
84 $src/slitaz/list_modules.sh \
85 $(cat stuff/modules-$VERSION.list) > $src/modules.list
86 while read module; do
87 dir=$(dirname $module)
88 [ -d $path/$dir ] || mkdir -p $path/$dir
89 cp -a $_pkg/lib/modules/$VERSION-slitaz/kernel/$module $path/$dir
90 done < $src/modules.list
91 # Remove unresolved links
92 rm -f $fs/lib/modules/$VERSION-slitaz/build
93 rm -f $fs/lib/modules/$VERSION-slitaz/source
94 # Package all linux pkgs
95 for i in $(cd $WOK; ls -d linux-*)
96 do
97 tazwok genpkg $i
98 done
99 # Cook all packages with a kernel module
100 for i in $(cd $WOK; grep -l 'tazwok cook linux$' */receipt)
101 do
102 echo tazwok cook ${i%/receipt}
103 done
104 # check and echo any module in kernel .config that's not added to one of linux-* pkgs
105 ./stuff/check_modules.sh
106 }
108 # Pre and post install commands for Tazpkg.
109 # GRUB stuf.
110 post_install()
111 {
112 echo "Processing post-install commands..."
113 chroot "$1/" depmod -a $VERSION-slitaz
114 if [ -f "$1/boot/grub/menu.lst" ]; then
115 root_dev=`cat $1/boot/grub/menu.lst | grep root= | sed 's/.*root=\([^ ]*\).*/\1/' | head -n 1`
116 grub_dev=`cat $1/boot/grub/menu.lst | grep "root (" | head -n 1`
117 # Add new kernel entry in case of upgrade for installed system.
118 if ! grep -q $PACKAGE-$VERSION-slitaz $1/boot/grub/menu.lst; then
119 cat >> $1/boot/grub/menu.lst << EOT
121 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
122 $grub_dev
123 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
124 EOT
125 fi
126 # Display information message.
127 cat <<EOT
128 ----
129 GRUB is installed, these tree lines must be in your /boot/grub/menu.lst:
131 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
132 $grub_dev
133 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
134 ----
135 EOT
136 fi
137 }
139 clean_wok()
140 {
141 rm -rf aufs2
142 }