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