wok-stable annotate linux-libre/receipt @ rev 9257

Add: linux-libre 2.6.37-libre (part 1)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Mar 15 03:23:44 2011 +0100 (2011-03-15)
parents
children 67cd1106a33b
rev   line source
gokhlayeh@9257 1 # SliTaz package receipt.
gokhlayeh@9257 2
gokhlayeh@9257 3 PACKAGE="linux-libre"
gokhlayeh@9257 4 VERSION="2.6.37-libre"
gokhlayeh@9257 5 CATEGORY="base-system"
gokhlayeh@9257 6 SHORT_DESC="The Linux Libre kernel and modules."
gokhlayeh@9257 7 DEPENDS="depmod"
gokhlayeh@9257 8 BUILD_DEPENDS="slitaz-toolchain perl git lzma patch"
gokhlayeh@9257 9 MAINTAINER="gokhlayeh@slitaz.org"
gokhlayeh@9257 10 PROVIDE="linux"
gokhlayeh@9257 11 TARBALL="linux-$VERSION.tar.bz2"
gokhlayeh@9257 12 WEB_SITE="http://www.fsfla.org/svnwiki/selibre/linux-libre/"
gokhlayeh@9257 13 WGET_URL="http://www.fsfla.org/svnwiki/selibre/linux-libre/download/releases/$VERSION/$TARBALL"
gokhlayeh@9257 14 CONFIG_FILES="/lib/modules/$VERSION-slitaz/modules.dep"
gokhlayeh@9257 15
gokhlayeh@9257 16 # Rules to configure and make the package.
gokhlayeh@9257 17 compile_rules()
gokhlayeh@9257 18 {
gokhlayeh@9257 19
gokhlayeh@9257 20 # this is code to help update the kernel version faster
gokhlayeh@9257 21 #for i in $(grep -l 'WANTED="linux"' $WOK/*/receipt)
gokhlayeh@9257 22 #do
gokhlayeh@9257 23 # sed -i 's|VERSION="OLDVERSION"|VERSION="NEWVERSION"|g' $i
gokhlayeh@9257 24 #done
gokhlayeh@9257 25 report open-bloc
gokhlayeh@9257 26
gokhlayeh@9257 27 _AUFSVER=`grep ^VERSION= $WOK/aufs/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
gokhlayeh@9257 28 AUFSDIR=$WOK/$PACKAGE/aufs-${_AUFSVER}
gokhlayeh@9257 29 tazwok get-src aufs --target=$AUFSDIR || { report close-bloc; return 1; }
gokhlayeh@9257 30 cp -a $AUFSDIR/Documentation $AUFSDIR/fs $AUFSDIR/include $src
gokhlayeh@9257 31 cp -a $AUFSDIR/*.patch $WOK/$PACKAGE/stuff
gokhlayeh@9257 32 cd $src
gokhlayeh@9257 33 # SliTaz db
gokhlayeh@9257 34 [ -d $WOK/$PACKAGE/slitaz ] && rm -rf $WOK/$PACKAGE/slitaz 2> /dev/null
gokhlayeh@9257 35 mkdir $WOK/$PACKAGE/slitaz
gokhlayeh@9257 36 echo "$WGET_URL" > slitaz/url
gokhlayeh@9257 37 cp $stuff/gztazmod.sh $stuff/list_modules.sh $WOK/$PACKAGE/slitaz
gokhlayeh@9257 38 cp $stuff/bootloader.sh $WOK/$PACKAGE/slitaz
gokhlayeh@9257 39 # Apply patches
gokhlayeh@9257 40 report step "Applying patches"
gokhlayeh@9257 41 while read patch_file; do
gokhlayeh@9257 42 echo "$patch_file" >> $WOK/$PACKAGE/slitaz/patches
gokhlayeh@9257 43 cp $stuff/$patch_file $WOK/$PACKAGE/slitaz
gokhlayeh@9257 44 if [ -f done.$patch_file ]; then
gokhlayeh@9257 45 echo "Skipping $patch_file"
gokhlayeh@9257 46 continue
gokhlayeh@9257 47 fi
gokhlayeh@9257 48 echo "Apply $patch_file"
gokhlayeh@9257 49 patch -p1 < $WOK/$PACKAGE/slitaz/$patch_file || { report close-bloc; return 1; }
gokhlayeh@9257 50 touch done.$patch_file
gokhlayeh@9257 51 done <<EOT
gokhlayeh@9257 52 $PACKAGE-diff-$VERSION.u
gokhlayeh@9257 53 $PACKAGE-unlzma-$VERSION.u
gokhlayeh@9257 54 $PACKAGE-header-$VERSION.u
gokhlayeh@9257 55 $PACKAGE-freeinitrd-$VERSION.u
gokhlayeh@9257 56 aufs2-base.patch
gokhlayeh@9257 57 aufs2-standalone.patch
gokhlayeh@9257 58 001-squashfs-decompressors-add-xz-decompressor-module.patch
gokhlayeh@9257 59 002-squashfs-decompressors-add-boot-time-xz-support.patch
gokhlayeh@9257 60 003-squashfs-x86-support-xz-compressed-kernel.patch
gokhlayeh@9257 61 004-squashfs-add-xz-compression-support.patch
gokhlayeh@9257 62 005-squashfs-add-xz-compression-configuration-option.patch
gokhlayeh@9257 63 EOT
gokhlayeh@9257 64 report step "Make kernel proper and then build lguest"
gokhlayeh@9257 65 make mrproper
gokhlayeh@9257 66 cd Documentation/lguest
gokhlayeh@9257 67 make lguest || { report close-bloc; return 1; }
gokhlayeh@9257 68 cd $src
gokhlayeh@9257 69
gokhlayeh@9257 70 report step "Make bzImage without modules first"
gokhlayeh@9257 71 # Build bzImage without modules first
gokhlayeh@9257 72 cp -f $stuff/$PACKAGE-$VERSION-slitaz.config .config
gokhlayeh@9257 73 sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config
gokhlayeh@9257 74 # We can't keep every driver in staging
gokhlayeh@9257 75 sed -i -e 's/^CONFIG_RTL8192/#&/' \
gokhlayeh@9257 76 -e 's/^CONFIG_R8187SE/#&/' \
gokhlayeh@9257 77 -e 's/^CONFIG_RT2870/#&/' .config
gokhlayeh@9257 78 yes '' | make oldconfig
gokhlayeh@9257 79 make -j 4 bzImage || { report close-bloc; return 1; }
gokhlayeh@9257 80 [ -d $PWD/_pkg ] || mkdir -p $PWD/_pkg
gokhlayeh@9257 81 mv arch/x86/boot/bzImage $PWD/_pkg
gokhlayeh@9257 82 mv System.map System.map-without-modules
gokhlayeh@9257 83
gokhlayeh@9257 84 report step "Now build bzImage with modules"
gokhlayeh@9257 85 # Build bzImage with modules
gokhlayeh@9257 86 cp -f $stuff/$PACKAGE-$VERSION-slitaz.config .config
gokhlayeh@9257 87 make oldconfig
gokhlayeh@9257 88 ln .config $WOK/$PACKAGE/slitaz/config
gokhlayeh@9257 89 make -j 4 bzImage &&
gokhlayeh@9257 90 make -j 4 modules &&
gokhlayeh@9257 91 make INSTALL_MOD_PATH=$PWD/_pkg modules_install &&
gokhlayeh@9257 92 make INSTALL_HDR_PATH=$PWD/_pkg/usr headers_install &&
gokhlayeh@9257 93 [ -s arch/x86/boot/bzImage ] || { report close-bloc; return 1; }
gokhlayeh@9257 94 mkdir -p $PWD/_pkg/boot 2> /dev/null
gokhlayeh@9257 95 mv arch/x86/boot/bzImage $PWD/_pkg/boot/vmlinuz-$VERSION-slitaz
gokhlayeh@9257 96 # Compress all modules.
gokhlayeh@9257 97 report step "Compressing all modules"
gokhlayeh@9257 98 $stuff/gztazmod.sh $PWD/_pkg/lib/modules/$VERSION-slitaz
gokhlayeh@9257 99 ln System.map System.map-modules
gokhlayeh@9257 100 ln Module.symvers Module.symvers-modules
gokhlayeh@9257 101 report close-bloc
gokhlayeh@9257 102 }
gokhlayeh@9257 103
gokhlayeh@9257 104 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@9257 105 genpkg_rules()
gokhlayeh@9257 106 {
gokhlayeh@9257 107 local path
gokhlayeh@9257 108 cp -a $_pkg/boot $fs
gokhlayeh@9257 109 # Compress all modules.
gokhlayeh@9257 110 #./stuff/gztazmod.sh $_pkg/lib/modules/$VERSION-slitaz
gokhlayeh@9257 111 path=$fs/lib/modules/$VERSION-slitaz/kernel
gokhlayeh@9257 112 mkdir -p $path
gokhlayeh@9257 113 cp -a $_pkg/lib/modules/$VERSION-slitaz/mo* \
gokhlayeh@9257 114 $fs/lib/modules/$VERSION-slitaz
gokhlayeh@9257 115 # Get the base modules
gokhlayeh@9257 116 export src
gokhlayeh@9257 117 export _pkg
gokhlayeh@9257 118 mkdir $WOK/$PACKAGE/tmp
gokhlayeh@9257 119 $WOK/$PACKAGE/stuff/list_modules.sh \
gokhlayeh@9257 120 $(cat stuff/modules-$VERSION.list) > $WOK/$PACKAGE/tmp/modules.list
gokhlayeh@9257 121 while read module; do
gokhlayeh@9257 122 dir=$(dirname $module)
gokhlayeh@9257 123 [ -d $path/$dir ] || mkdir -p $path/$dir
gokhlayeh@9257 124 cp -a $_pkg/lib/modules/$VERSION-slitaz/kernel/$module $path/$dir
gokhlayeh@9257 125 done < $WOK/$PACKAGE/tmp/modules.list
gokhlayeh@9257 126 # Remove unresolved links
gokhlayeh@9257 127 rm -f $fs/lib/modules/$VERSION-slitaz/build
gokhlayeh@9257 128 rm -f $fs/lib/modules/$VERSION-slitaz/source
gokhlayeh@9257 129 # Cook all packages with a kernel module
gokhlayeh@9257 130 for i in $(cd $WOK; grep -l 'tazwok cook linux$' */receipt)
gokhlayeh@9257 131 do
gokhlayeh@9257 132 echo tazwok cook ${i%/receipt}
gokhlayeh@9257 133 done
gokhlayeh@9257 134 # Check and echo any module in kernel .config that's not added to
gokhlayeh@9257 135 # one of linux-* pkgs
gokhlayeh@9257 136 ./stuff/check_modules.sh
gokhlayeh@9257 137 }
gokhlayeh@9257 138
gokhlayeh@9257 139 # Pre and post install commands for Tazpkg.
gokhlayeh@9257 140 post_install()
gokhlayeh@9257 141 {
gokhlayeh@9257 142 echo "Processing post-install commands..."
gokhlayeh@9257 143 chroot "$1/" depmod -a $VERSION-slitaz
gokhlayeh@9257 144 # GRUB stuff.
gokhlayeh@9257 145 if [ -f "$1/boot/grub/menu.lst" ]; then
gokhlayeh@9257 146 root_dev=`cat $1/boot/grub/menu.lst | grep root= | sed 's/.*root=\([^ ]*\).*/\1/' | head -n 1`
gokhlayeh@9257 147 grub_dev=`cat $1/boot/grub/menu.lst | grep "root (" | head -n 1`
gokhlayeh@9257 148 # Add new kernel entry in case of upgrade for installed system.
gokhlayeh@9257 149 if ! grep -q $PACKAGE-$VERSION-slitaz $1/boot/grub/menu.lst; then
gokhlayeh@9257 150 cat >> $1/boot/grub/menu.lst << EOT
gokhlayeh@9257 151
gokhlayeh@9257 152 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
gokhlayeh@9257 153 $grub_dev
gokhlayeh@9257 154 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
gokhlayeh@9257 155 EOT
gokhlayeh@9257 156 fi
gokhlayeh@9257 157 # Display information message.
gokhlayeh@9257 158 cat <<EOT
gokhlayeh@9257 159 ----
gokhlayeh@9257 160 GRUB is installed, these tree lines must be in your /boot/grub/menu.lst:
gokhlayeh@9257 161
gokhlayeh@9257 162 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
gokhlayeh@9257 163 $grub_dev
gokhlayeh@9257 164 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
gokhlayeh@9257 165 ----
gokhlayeh@9257 166 EOT
gokhlayeh@9257 167 fi
gokhlayeh@9257 168 }