wok-current view linux/receipt @ rev 4504

linux: add floppy boot support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 22 12:46:40 2009 +0100 (2009-11-22)
parents 271e813eaddc
children d3d7a8442ba4
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 cp ../stuff/$PACKAGE-$VERSION-slitaz.config .config
57 make oldconfig
58 ln .config slitaz/config
59 make bzImage &&
60 make modules &&
61 make INSTALL_MOD_PATH=$PWD/_pkg modules_install &&
62 make INSTALL_HDR_PATH=$PWD/_pkg/usr headers_install &&
63 [ -s arch/x86/boot/bzImage ]
64 }
66 # Rules to gen a SliTaz package suitable for Tazpkg.
67 genpkg_rules()
68 {
69 local path
70 mkdir $fs/boot
71 cp -a $src/arch/x86/boot/bzImage $fs/boot/vmlinuz-$VERSION-slitaz
72 # Compress all modules.
73 # Package module-init-tools is compiled with zlib support.
74 #
75 ./stuff/gztazmod.sh $_pkg/lib/modules/$VERSION-slitaz
76 path=$fs/lib/modules/$VERSION-slitaz/kernel
77 mkdir -p $path
78 cp -a $_pkg/lib/modules/$VERSION-slitaz/mo* $fs/lib/modules/$VERSION-slitaz
79 export src
80 export _pkg
81 $src/slitaz/list_modules.sh \
82 $(cat stuff/modules-$VERSION.list) > $src/modules.list
83 while read module; do
84 dir=$(dirname $module)
85 [ -d $path/$dir ] || mkdir -p $path/$dir
86 cp -a $_pkg/lib/modules/$VERSION-slitaz/kernel/$module $path/$dir
87 done < $src/modules.list
88 # Remove unresolved links
89 rm -f $fs/lib/modules/$VERSION-slitaz/build
90 rm -f $fs/lib/modules/$VERSION-slitaz/source
91 # Package all linux pkgs
92 for i in $(cd $WOK; ls -d linux-*)
93 do
94 tazwok genpkg $i
95 done
96 # Cook all packages with a kernel module
97 for i in $(cd $WOK; grep -l 'tazwok cook linux$' */receipt)
98 do
99 echo tazwok cook ${i%/receipt}
100 done
101 # check and echo any module in kernel .config that's not added to one of linux-* pkgs
102 ./stuff/check_modules.sh
103 }
105 # Pre and post install commands for Tazpkg.
106 # GRUB stuf.
107 post_install()
108 {
109 echo "Processing post-install commands..."
110 chroot "$1/" depmod -a $VERSION-slitaz
111 if [ -f "$1/boot/grub/menu.lst" ]; then
112 root_dev=`cat $1/boot/grub/menu.lst | grep root= | sed 's/.*root=\([^ ]*\).*/\1/' | head -n 1`
113 grub_dev=`cat $1/boot/grub/menu.lst | grep "root (" | head -n 1`
114 # Add new kernel entry in case of upgrade for installed system.
115 if ! grep -q $PACKAGE-$VERSION-slitaz $1/boot/grub/menu.lst; then
116 cat >> $1/boot/grub/menu.lst << EOT
118 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
119 $grub_dev
120 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
121 EOT
122 fi
123 # Display information message.
124 cat <<EOT
125 ----
126 GRUB is installed, these tree lines must be in your /boot/grub/menu.lst:
128 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
129 $grub_dev
130 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
131 ----
132 EOT
133 fi
134 }
136 clean_wok()
137 {
138 rm -rf aufs2
139 }