wok annotate linux/receipt @ rev 1442

linux lzma hardinfo etherboot mISDN busybox: apply path once
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 02 16:39:02 2008 +0000 (2008-10-02)
parents d442045183a5
children 0f29c565427b
rev   line source
pankso@3 1 # SliTaz package receipt.
pankso@3 2
pankso@3 3 PACKAGE="linux"
pascal@886 4 VERSION="2.6.25.5"
pankso@3 5 CATEGORY="base-system"
pankso@3 6 SHORT_DESC="The Linux kernel and modules."
pankso@1154 7 BUILD_DEPENDS="slitaz-toolchain perl"
pankso@289 8 MAINTAINER="pascal.bellard@slitaz.org"
pankso@3 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@3 10 WEB_SITE="http://www.kernel.org/"
pankso@3 11 WGET_URL="http://www.eu.kernel.org/pub/linux/kernel/v2.6/$TARBALL"
pankso@3 12
pankso@3 13 # Rules to configure and make the package.
pankso@3 14 compile_rules()
pankso@3 15 {
erjo@253 16 cd $src
pascal@1093 17 mkdir slitaz
pascal@1093 18 echo "$WGET_URL" > slitaz/url
pascal@1093 19 cp ../stuff/gztazmod.sh ../stuff/list_modules.sh slitaz
pascal@886 20 # lzma and misc patches from pascal
pascal@521 21 while read patch_file; do
pascal@1442 22 if [ -f done.$patch_file ]; then
pascal@1442 23 echo "Skipping $patch_file"
pascal@1442 24 continue
pascal@1442 25 fi
pascal@521 26 echo "Apply $patch_file"
pascal@881 27 patch -p1 < ../stuff/$patch_file || return 1
pascal@1093 28 echo "$patch_file" >> slitaz/patches
pascal@1093 29 cp ../stuff/$patch_file slitaz/$patch_file
pascal@1442 30 touch done.$patch_file
pascal@521 31 done <<EOT
pascal@521 32 $PACKAGE-lzma-$VERSION.u
pascal@886 33 $PACKAGE-utf8-$VERSION.u
pascal@886 34 $PACKAGE-diff-$VERSION.u
pascal@905 35 $PACKAGE-rootdev.u
pascal@521 36 EOT
erjo@253 37 make mrproper
erjo@253 38 cp ../stuff/$PACKAGE-$VERSION-slitaz.config .config
erjo@253 39 make oldconfig
pascal@1093 40 ln .config slitaz/config
erjo@253 41 make bzImage
erjo@253 42 make modules
erjo@253 43 make INSTALL_MOD_PATH=$PWD/_pkg modules_install
pascal@886 44 make INSTALL_HDR_PATH=$PWD/_pkg/usr headers_install
erjo@253 45 }
erjo@253 46
pankso@3 47 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@3 48 genpkg_rules()
pankso@3 49 {
pascal@521 50 local path
pankso@3 51 mkdir $fs/boot
pascal@214 52 cp -a $src/arch/x86/boot/bzImage $fs/boot/vmlinuz-$VERSION-slitaz
pankso@3 53 # Compress all modules.
pankso@3 54 # Package module-init-tools is compiled with zlib support.
pankso@3 55 #
pascal@521 56 ./stuff/gztazmod.sh $_pkg/lib/modules/$VERSION-slitaz
pascal@521 57 path=$fs/lib/modules/$VERSION-slitaz/kernel
pascal@521 58 mkdir -p $path
pascal@521 59 cp -a $_pkg/lib/modules/$VERSION-slitaz/mo* $fs/lib/modules/$VERSION-slitaz
pascal@886 60 cp ./stuff/list_modules.sh $src
pascal@886 61 export src
pascal@886 62 export _pkg
pascal@886 63 $src/list_modules.sh $(cat stuff/modules-$VERSION.list) > $src/modules.list
pascal@521 64 while read module; do
pascal@521 65 dir=$(dirname $module)
pankso@535 66 [ -d $path/$dir ] || mkdir -p $path/$dir
pankso@535 67 cp -a $_pkg/lib/modules/$VERSION-slitaz/kernel/$module $path/$dir
pascal@886 68 done < $src/modules.list
pascal@397 69 # Remove unresolved links
pascal@397 70 rm -f $fs/lib/modules/$VERSION-slitaz/build
pascal@397 71 rm -f $fs/lib/modules/$VERSION-slitaz/source
pascal@886 72 # Package all linux pkgs
pascal@886 73 for i in $(cd $WOK; ls -d linux-*)
pankso@871 74 do
pascal@886 75 tazwok genpkg $i
pascal@886 76 done
pascal@886 77 # Cook all packages with a kernel module
pascal@886 78 for i in $(cd $WOK; grep -l 'tazwok cook linux$' */receipt)
pascal@886 79 do
pascal@886 80 echo tazwok cook ${i%/receipt}
pankso@871 81 done
pankso@3 82 }
pankso@3 83
pankso@3 84 # Pre and post install commands for Tazpkg.
pankso@3 85 # GRUB stuf.
pankso@3 86 post_install()
pankso@3 87 {
pascal@521 88 echo "Processing post-install commands..."
pascal@886 89 depmod -a -b "$1/" $VERSION-slitaz
pankso@1154 90 if [ -f "$1/boot/grub/menu.lst" ]; then
pankso@1154 91 root_dev=`cat $1/boot/grub/menu.lst | grep root= | sed 's/.*root=\([^ ]*\).*/\1/'`
pankso@1154 92 grub_dev=`cat $1/boot/grub/menu.lst | grep "root ("`
pankso@1154 93 # Add new kernel entry in case of upgrade for installed system.
pankso@1154 94 cat >> $1/boot/grub/menu.lst << EOT
pankso@1154 95
pankso@1154 96 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
pankso@1154 97 $grub_dev
pankso@1154 98 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
pankso@1154 99 EOT
pankso@1154 100 # Display information message.
pankso@1154 101 cat <<EOT
pascal@886 102 ----
pankso@1154 103 GRUB is installed, these tree lines has been added to the menu.lst:
pascal@886 104
pankso@3 105 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
pankso@1154 106 $grub_dev
pankso@1154 107 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
pascal@886 108 ----
pascal@886 109 EOT
pankso@1154 110 fi
pankso@3 111 }