wok annotate linux/receipt @ rev 289

UP: linux-header (go for 2.6.24.2 thanks and well done Pascal)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Feb 29 17:03:03 2008 +0100 (2008-02-29)
parents 9a39cdc4c1ef
children cd72bbc8d9c4
rev   line source
pankso@3 1 # SliTaz package receipt.
pankso@3 2
pankso@3 3 PACKAGE="linux"
pascal@214 4 VERSION="2.6.24.2"
pankso@3 5 CATEGORY="base-system"
pankso@3 6 SHORT_DESC="The Linux kernel and modules."
pankso@289 7 MAINTAINER="pascal.bellard@slitaz.org"
pankso@3 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@3 9 WEB_SITE="http://www.kernel.org/"
pankso@3 10 WGET_URL="http://www.eu.kernel.org/pub/linux/kernel/v2.6/$TARBALL"
pankso@3 11
pankso@3 12 # Rules to configure and make the package.
pankso@3 13 compile_rules()
pankso@3 14 {
erjo@253 15 cd $src
erjo@253 16 # lzma and boot patch from pascal
erjo@253 17 patch -p1 < ../stuff/boot-kernel.u
erjo@253 18 patch -p1 < ../stuff/$PACKAGE-lzma-$VERSION.u
erjo@253 19 patch -p1 < ../stuff/decompress_unlzma.u
erjo@253 20 make mrproper
erjo@253 21 cp ../stuff/$PACKAGE-$VERSION-slitaz.config .config
erjo@253 22 patch -p1 < ../stuff/config-acpi-$VERSION.u
pascal@280 23 patch -p1 < ../stuff/linux-utf8-$VERSION.u
erjo@253 24 make oldconfig
erjo@253 25 make bzImage
erjo@253 26 make modules
erjo@253 27 make INSTALL_MOD_PATH=$PWD/_pkg modules_install
erjo@253 28 }
erjo@253 29
pankso@3 30
pankso@3 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@3 32 genpkg_rules()
pankso@3 33 {
pankso@3 34 mkdir $fs/boot
pascal@214 35 cp -a $src/arch/x86/boot/bzImage $fs/boot/vmlinuz-$VERSION-slitaz
pankso@3 36 cp -a $_pkg/* $fs
pankso@3 37 # Compress all modules.
pankso@3 38 # Package module-init-tools is compiled with zlib support.
pankso@3 39 #
pankso@3 40 ./stuff/gztazmod.sh $fs/lib/modules/$VERSION-slitaz
pankso@3 41 }
pankso@3 42
pankso@3 43 # Pre and post install commands for Tazpkg.
pankso@3 44 # GRUB stuf.
pankso@3 45 post_install()
pankso@3 46 {
pankso@3 47 echo "Processing post-install commands..."
pankso@3 48 echo "----"
pankso@3 49 echo "If you have GRUB installed, you can add tree lines to boot SliTaz."
pankso@3 50 echo "Example /boot/grub/menu.lst"
pankso@3 51 echo -e "
pankso@3 52 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
pankso@3 53 root(hd0,0)
pankso@3 54 kernel /boot/vmlinuz-$VERSION-slitaz root=/dev/hda1 vga=771\n"
pankso@3 55 echo "----"
pankso@3 56 }