wok annotate linux/receipt @ rev 13281
busybox/static: add losetup, free
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Aug 24 09:05:32 2012 +0200 (2012-08-24) |
parents | 4c9801543b7c |
children | 2771a5b12f2f |
rev | line source |
---|---|
pankso@3 | 1 # SliTaz package receipt. |
pankso@3 | 2 |
pankso@3 | 3 PACKAGE="linux" |
pankso@12812 | 4 VERSION="3.2.14" |
pankso@12812 | 5 KBASEVER="${VERSION:0:3}" |
pankso@3 | 6 CATEGORY="base-system" |
pankso@3 | 7 SHORT_DESC="The Linux kernel and modules." |
pankso@3864 | 8 MAINTAINER="devel@slitaz.org" |
pankso@12812 | 9 TARBALL="$PACKAGE-$KBASEVER.tar.xz" |
pankso@3 | 10 WEB_SITE="http://www.kernel.org/" |
pankso@12285 | 11 WGET_URL="http://www.kernel.org/pub/linux/kernel/v3.0/$TARBALL" |
pankso@12803 | 12 HOST_ARCH="i486 arm x86_64" |
pankso@12803 | 13 |
pankso@12812 | 14 DEPENDS="kmod" |
pankso@12812 | 15 BUILD_DEPENDS="slitaz-toolchain perl git xz lzma patch uclibc-cross-compiler-x86_64" |
pankso@12824 | 16 |
pankso@12824 | 17 # Use version patch so we dont dl full kernel source on each minor update |
pankso@12824 | 18 [ "$KBASEVER" != "$VERSION" ] && \ |
pankso@12824 | 19 PATCH="http://www.kernel.org/pub/linux/kernel/v3.0/patch-$VERSION.xz" |
pankso@12812 | 20 |
pankso@12803 | 21 # Aufs enable chroot |
pascal@12625 | 22 AUFS_NOT_SUPPORTED="uclibc-cross-compiler-x86_64 is not compatible with aufs 8(" |
pankso@3 | 23 |
pankso@12824 | 24 # This will save/restore modules.dep but we want to regenerate it on |
pankso@12824 | 25 # install or upgrade. |
pankso@12803 | 26 #CONFIG_FILES="/lib/modules/$KBASEVER-slitaz/modules.dep" |
pankso@12803 | 27 |
pankso@12824 | 28 # Handle multiarch compilation. Less bdeps when cross-compiling for ARM |
pankso@12803 | 29 case "$ARCH" in |
pankso@12824 | 30 arm) BUILD_DEPENDS="xz" TARBALL="$PACKAGE-$VERSION.tar.bz2" ;; |
pankso@12824 | 31 x86_64) BUILD_DEPENDS="xz" ;; |
pankso@12824 | 32 esac |
pankso@12824 | 33 |
pankso@12824 | 34 # TODO: slitaz.conf provide SLITAZ_ARCH and must be handled by tazpkg/spk |
pankso@12824 | 35 [ -f "$root/etc/slitaz/slitaz.conf" ] && . $root/etc/slitaz/slitaz.conf |
pankso@12824 | 36 |
pankso@12824 | 37 # Handle multiarch installation. ARM use Busybox modutils, so avoid any |
pankso@12824 | 38 # deps on kmod |
pankso@12824 | 39 case "$SLITAZ_ARCH" in |
pankso@12824 | 40 arm) DEPENDS="" ;; |
pankso@12803 | 41 esac |
pankso@9731 | 42 |
pankso@3 | 43 # Rules to configure and make the package. |
pankso@3 | 44 compile_rules() |
pankso@3 | 45 { |
pankso@9731 | 46 cd $src |
pankso@12803 | 47 |
pankso@12803 | 48 case "$ARCH" in |
pankso@12803 | 49 arm) |
pankso@12803 | 50 echo "Compiling: ARM Kernel" |
pankso@12812 | 51 if [ ! -f $SRC/$(basename $PATCH) ]; then |
pankso@12812 | 52 wget $PATCH -O $SRC/$(basename $PATCH) |
pankso@12812 | 53 fi |
pankso@12824 | 54 make mrproper |
pankso@12824 | 55 # Buggy: we got kernel panic about module not tinted 3.2.14 |
pankso@12824 | 56 #echo "Applying patch: $(basename $PATCH)" |
pankso@12824 | 57 #xzcat $SRC/$(basename $PATCH) | patch -Np1 >/dev/null |
pankso@12824 | 58 patch -Np1 < $stuff/$ARCH/linux-arm.patch || exit 1 |
pankso@12824 | 59 cp -f $stuff/$ARCH/linux-arm.config .config |
pankso@12803 | 60 make ARCH=$ARCH CROSS_COMPILE=${HOST_SYSTEM}- bzImage && |
pankso@12803 | 61 make ARCH=$ARCH CROSS_COMPILE=${HOST_SYSTEM}- modules && |
pankso@12803 | 62 make ARCH=$ARCH CROSS_COMPILE=${HOST_SYSTEM}- \ |
pankso@12803 | 63 INSTALL_MOD_PATH=$DESTDIR modules_install && |
pankso@12803 | 64 mkdir -p $DESTDIR/boot && |
pankso@12824 | 65 cp -a arch/arm/boot/zImage \ |
pankso@12803 | 66 $DESTDIR/boot/linux-$VERSION-slitaz-$ARCH |
pankso@12803 | 67 return 0 ;; |
pankso@12803 | 68 x86_64) |
pankso@12803 | 69 echo "TODO: Maybe use default ? But cross compile in x86_64 chroot" |
pankso@12803 | 70 echo "so we can remove the 64 build by uclibc-cross-compiler-x86_64" |
pankso@12803 | 71 return 0 ;; |
pankso@12803 | 72 esac |
pankso@12803 | 73 |
gokhlayeh@11395 | 74 [ ! -x /usr/bin/cook ] && report open-bloc |
pankso@9731 | 75 |
pankso@9731 | 76 # Check for Aufs and cook it if unbuilt. |
pankso@9731 | 77 echo "Checking for Aufs packages..." |
pankso@12285 | 78 _AUFSVER=`grep ^VERSION= $WOK/aufs/receipt | cut -d "=" -f2 | sed -e 's/"//g'` |
pankso@12285 | 79 if [ -x /usr/bin/cook ]; then |
gokhlayeh@11395 | 80 # Give info an redirect to /dev/null since aufs got it own log. |
gokhlayeh@11395 | 81 AUFSDIR=$WOK/aufs/source/aufs-${_AUFSVER} |
pankso@12285 | 82 [ -d "$AUFSDIR" ] && rm -rf $AUFSDIR |
pankso@12285 | 83 #echo "Cook: aufs $_AUFSVER" |
pankso@12288 | 84 cook aufs --getsrc |
pankso@12288 | 85 mkdir -p $WOK/aufs/source/ |
pankso@12289 | 86 tar xjf $SRC/aufs-${_AUFSVER}.tar.bz2 -C $WOK/aufs/source/ |
pankso@12285 | 87 elif [ -x /usr/bin/tazwok ]; then |
pankso@12285 | 88 # we just need aufs source. Also cooking now is a bad idea since it |
pankso@12285 | 89 # needs linux-module-headers. The one your cooking not the one from the web. |
gokhlayeh@11395 | 90 AUFSDIR=$WOK/aufs/aufs-${_AUFSVER} |
gokhlayeh@11395 | 91 [ -d "$AUFSDIR" ] && rm -rf $AUFSDIR |
gokhlayeh@11395 | 92 tazwok get-src aufs --target=$AUFSDIR || { report close-bloc; return 1; } |
pankso@9731 | 93 fi |
pankso@12285 | 94 echo "cook:linux" > $command |
pankso@12285 | 95 |
pankso@9731 | 96 echo "Copying Aufs files and patches..." |
slaxemulator@7297 | 97 cp -a $AUFSDIR/Documentation $AUFSDIR/fs $AUFSDIR/include $src |
pankso@12285 | 98 cp -a $AUFSDIR/aufs3-*.patch $stuff |
pankso@12285 | 99 |
pankso@4251 | 100 # SliTaz db |
pankso@12285 | 101 [ -d $WOK/$PACKAGE/source/slitaz ] && rm -rf $WOK/$PACKAGE/source/slitaz 2> /dev/null |
pankso@12285 | 102 mkdir -p $WOK/$PACKAGE/source/slitaz |
pankso@12290 | 103 echo "$WGET_URL" > $WOK/$PACKAGE/source/slitaz/url |
pankso@12285 | 104 cp $stuff/gztazmod.sh $stuff/list_modules.sh $WOK/$PACKAGE/source/slitaz |
pankso@12285 | 105 cp $stuff/bootloader.sh $WOK/$PACKAGE/source/slitaz |
pankso@12803 | 106 |
pankso@5640 | 107 # Apply patches |
pankso@9731 | 108 echo "Applying patches..." |
pascal@521 | 109 while read patch_file; do |
pankso@12285 | 110 echo "$patch_file" >> $WOK/$PACKAGE/source/slitaz/patches |
pankso@12285 | 111 cp $stuff/$patch_file $WOK/$PACKAGE/source/slitaz |
pascal@1442 | 112 if [ -f done.$patch_file ]; then |
pascal@1442 | 113 echo "Skipping $patch_file" |
pascal@1442 | 114 continue |
pascal@1442 | 115 fi |
pascal@521 | 116 echo "Apply $patch_file" |
pankso@12285 | 117 if [ -x /usr/bin/cook ]; then |
pankso@12285 | 118 patch -p1 < $WOK/$PACKAGE/source/slitaz/$patch_file || return 1 |
pankso@12285 | 119 elif [ -x /usr/bin/tazwok ]; then |
pankso@12285 | 120 patch -p1 < $WOK/$PACKAGE/source/slitaz/$patch_file || { report close-bloc; return 1; } |
pankso@12285 | 121 fi |
pascal@1442 | 122 touch done.$patch_file |
pascal@521 | 123 done <<EOT |
pankso@12285 | 124 $PACKAGE-diff.u |
pankso@12285 | 125 $PACKAGE-header.u |
pankso@12285 | 126 $PACKAGE-freeinitrd.u |
pankso@12285 | 127 aufs3-base.patch |
pankso@12285 | 128 aufs3-standalone.patch |
pankso@12285 | 129 aufs3-loopback.patch |
pankso@12285 | 130 aufs3-proc_map.patch |
pankso@12285 | 131 channel-negative-one-maxim.patch |
pankso@12285 | 132 mac80211.compat08082009.wl_frag+ack_v1.patch |
pascal@521 | 133 EOT |
pankso@9731 | 134 |
pankso@12285 | 135 if [ "$KBASEVER" != "$VERSION" ]; then |
pankso@12285 | 136 if [ -f $SOURCES_REPOSITORY/$(basename $PATCH) ]; then |
pankso@12285 | 137 xzcat $SOURCES_REPOSITORY/$(basename $PATCH) | patch -Np1 |
pankso@12285 | 138 touch done.patch-$VERSION |
pankso@12285 | 139 else |
pankso@12285 | 140 wget $PATCH -O $SRC/$(basename $PATCH) |
pankso@12285 | 141 xzcat $SRC/$(basename $PATCH) | patch -Np1 |
pankso@12285 | 142 touch done.patch-$VERSION |
pankso@12285 | 143 fi |
pankso@12285 | 144 fi |
pankso@12285 | 145 |
pankso@12285 | 146 sed -i 's|SUBLEVEL =.*|SUBLEVEL =|g' Makefile |
pankso@12285 | 147 |
gokhlayeh@11395 | 148 [ ! -x /usr/bin/cook ] && report step "Make kernel proper and then build lguest" |
pankso@12294 | 149 [ -x /usr/bin/cook ] && echo "Make kernel proper and then build lguest" |
pankso@3864 | 150 make mrproper |
pankso@12285 | 151 cd Documentation/virtual/lguest |
pankso@12285 | 152 if [ -x /usr/bin/cook ]; then |
pankso@12285 | 153 make lguest || return 1 |
pankso@12285 | 154 elif [ -x /usr/bin/tazwok ]; then |
pankso@12285 | 155 make lguest || { report close-bloc; return 1; } |
pankso@12285 | 156 fi |
slaxemulator@8681 | 157 cd $src |
pankso@12803 | 158 |
pascal@12570 | 159 case "$opt" in |
pascal@12570 | 160 *--no64*);; |
pascal@12570 | 161 *) |
pankso@12294 | 162 # |
pankso@12294 | 163 # Arch x86_64 |
pankso@12294 | 164 # |
pankso@12294 | 165 [ ! -x /usr/bin/cook ] && report step "Make bzImage64 without modules first" |
pankso@12294 | 166 [ -x /usr/bin/cook ] && echo "Building x86_64 Kernel" |
pankso@12803 | 167 |
pankso@12285 | 168 # Build bzImage64 without modules first |
pascal@12293 | 169 cp -f $stuff/$PACKAGE-slitaz.config64 .config |
pankso@12285 | 170 sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config |
pankso@12803 | 171 |
pankso@12803 | 172 # We can't keep every driver in staging |
pankso@12285 | 173 sed -i -e 's/^CONFIG_RTL8192/#&/' \ |
pankso@12285 | 174 -e 's/^CONFIG_R8187SE/#&/' \ |
pankso@12285 | 175 -e 's/^CONFIG_RT2870/#&/' .config |
pankso@12285 | 176 yes '' | make ARCH=x86_64 oldconfig |
pankso@12285 | 177 if [ -x /usr/bin/cook ]; then |
pankso@12285 | 178 make -j 4 ARCH=x86_64 CROSS_COMPILE=uclibc-x86_64- bzImage || exit 1 |
pankso@12285 | 179 elif [ -x /usr/bin/tazwok ]; then |
pankso@12285 | 180 make -j 4 ARCH=x86_64 CROSS_COMPILE=uclibc-x86_64- bzImage || { report close-bloc; return 1; } |
pankso@12285 | 181 fi |
pankso@12285 | 182 [ -d $PWD/_pkg ] || mkdir -p $DESTDIR/linux64 |
pankso@12285 | 183 mv arch/x86/boot/bzImage $DESTDIR/linux64 |
pankso@12285 | 184 mv System.map System.map-without-modules64 |
pankso@12285 | 185 |
pankso@12285 | 186 [ ! -x /usr/bin/cook ] && report step "Now build bzImage64 with modules" |
pankso@12803 | 187 |
pankso@12285 | 188 # Build bzImage64 with modules |
pascal@12293 | 189 cp -f $stuff/$PACKAGE-slitaz.config64 .config |
pankso@12285 | 190 #make ARCH=x86_64 oldconfig |
pankso@12285 | 191 ln .config $WOK/$PACKAGE/slitaz/config64 |
pankso@12285 | 192 make -j 4 ARCH=x86_64 CROSS_COMPILE=uclibc-x86_64- bzImage && |
pankso@12285 | 193 make -j 4 ARCH=x86_64 CROSS_COMPILE=uclibc-x86_64- modules && |
pankso@12285 | 194 make ARCH=x86_64 INSTALL_MOD_PATH=$DESTDIR/linux64 modules_install && |
pankso@12285 | 195 make ARCH=x86_64 INSTALL_HDR_PATH=$DESTDIR/linux64/usr headers_install && |
pankso@12285 | 196 if [ -x /usr/bin/cook ]; then |
pankso@12285 | 197 [ -s arch/x86/boot/bzImage ] || return 1 |
pankso@12285 | 198 elif [ -x /usr/bin/tazwok ]; then |
pankso@12285 | 199 [ -s arch/x86/boot/bzImage ] || { report close-bloc; return 1; } |
pankso@12285 | 200 fi |
pankso@12285 | 201 mkdir -p $DESTDIR/linux64/boot 2> /dev/null |
pankso@12285 | 202 mv arch/x86/boot/bzImage $DESTDIR/linux64/boot/vmlinuz-$VERSION-slitaz |
pankso@12285 | 203 ln System.map System.map-modules64 |
pankso@12285 | 204 ln Module.symvers Module.symvers-modules64 |
pascal@12570 | 205 esac |
pankso@12803 | 206 |
pankso@12294 | 207 # |
pankso@12294 | 208 # Standard kernel |
pankso@12294 | 209 # |
pankso@12294 | 210 [ ! -x /usr/bin/cook ] && report step "Make bzImage without modules first" |
pankso@12294 | 211 [ -x /usr/bin/cook ] && echo "Building standard kernel..." |
pankso@12803 | 212 |
pankso@12294 | 213 # Build bzImage without modules first |
pankso@12294 | 214 cp -f $stuff/$PACKAGE-slitaz.config .config |
pankso@12294 | 215 sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config |
pankso@12803 | 216 |
pankso@12803 | 217 # We can't keep every driver in staging |
pankso@12294 | 218 sed -i -e 's/^CONFIG_RTL8192/#&/' \ |
pankso@12294 | 219 -e 's/^CONFIG_R8187SE/#&/' \ |
pankso@12294 | 220 -e 's/^CONFIG_RT2870/#&/' .config |
pankso@12294 | 221 yes '' | make oldconfig |
pankso@12294 | 222 if [ -x /usr/bin/cook ]; then |
pankso@12294 | 223 make -j 4 bzImage || exit 1 |
pankso@12294 | 224 elif [ -x /usr/bin/tazwok ]; then |
pankso@12294 | 225 make -j 4 bzImage || { report close-bloc; return 1; } |
pankso@12294 | 226 fi |
pankso@12294 | 227 [ -d $DESTDIR ] || mkdir -p $DESTDIR |
pankso@12294 | 228 mv arch/x86/boot/bzImage $DESTDIR |
pankso@12294 | 229 mv System.map System.map-without-modules |
pankso@12294 | 230 |
pankso@12294 | 231 [ ! -x /usr/bin/cook ] && report step "Now build bzImage with modules" |
pankso@12803 | 232 |
pankso@12294 | 233 # Build bzImage with modules |
pankso@12294 | 234 cp -f $stuff/$PACKAGE-slitaz.config .config |
pankso@12294 | 235 #make oldconfig |
pankso@12294 | 236 ln .config $WOK/$PACKAGE/source/slitaz/config |
pankso@12294 | 237 make -j 4 bzImage && |
pankso@12294 | 238 make -j 4 modules && |
pankso@12294 | 239 make INSTALL_MOD_PATH=$DESTDIR modules_install && |
pankso@12294 | 240 make INSTALL_HDR_PATH=$DESTDIR/usr headers_install && |
pankso@12294 | 241 if [ -x /usr/bin/cook ]; then |
pankso@12294 | 242 [ -s arch/x86/boot/bzImage ] || return 1 |
pankso@12294 | 243 elif [ -x /usr/bin/tazwok ]; then |
pankso@12294 | 244 [ -s arch/x86/boot/bzImage ] || { report close-bloc; return 1; } |
pankso@12294 | 245 fi |
pankso@12294 | 246 mkdir -p $DESTDIR/boot 2> /dev/null |
pankso@12294 | 247 mv arch/x86/boot/bzImage $DESTDIR/boot/vmlinuz-$VERSION-slitaz |
pankso@12803 | 248 |
gokhlayeh@11395 | 249 [ ! -x /usr/bin/cook ] && report step "Compressing all modules" |
pankso@12803 | 250 |
slaxemulator@6719 | 251 # Compress all modules. |
pankso@12285 | 252 $stuff/gztazmod.sh $DESTDIR/lib/modules/$KBASEVER-slitaz |
pankso@12285 | 253 $stuff/gztazmod.sh $DESTDIR/linux64/lib/modules/$KBASEVER-slitaz |
pascal@7667 | 254 ln System.map System.map-modules |
pascal@7667 | 255 ln Module.symvers Module.symvers-modules |
pankso@12803 | 256 |
gokhlayeh@11395 | 257 if [ ! -x /usr/bin/cook ]; then |
gokhlayeh@11395 | 258 report close-bloc |
gokhlayeh@11395 | 259 fi |
pankso@3864 | 260 } |
erjo@253 | 261 |
pankso@3 | 262 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@3 | 263 genpkg_rules() |
pankso@3 | 264 { |
pankso@12803 | 265 case "$ARCH" in |
pankso@12803 | 266 arm) |
pankso@12803 | 267 echo "Packing: ARM Kernel" |
pankso@12803 | 268 cp -a $install/* $fs |
pankso@12803 | 269 rm -f $fs/lib/modules/*/build $fs/lib/modules/*/source |
pankso@12803 | 270 return 0 ;; |
pankso@12803 | 271 x86_64) |
pankso@12803 | 272 echo "TODO: use default or custom x86_64 packing" |
pankso@12803 | 273 return 0 ;; |
pankso@12803 | 274 esac |
pankso@12803 | 275 |
pascal@12300 | 276 export PACKAGE VERSION |
pascal@521 | 277 local path |
pascal@7656 | 278 cp -a $_pkg/boot $fs |
pankso@3 | 279 # Compress all modules. |
pascal@12558 | 280 $stuff/gztazmod.sh $_pkg/lib/modules/$KBASEVER-slitaz |
pankso@12285 | 281 path=$fs/lib/modules/$KBASEVER-slitaz/kernel |
pascal@521 | 282 mkdir -p $path |
pankso@12285 | 283 cp -a $_pkg/lib/modules/$KBASEVER-slitaz/mo* \ |
pankso@12285 | 284 $fs/lib/modules/$KBASEVER-slitaz |
pankso@5640 | 285 # Get the base modules |
pascal@886 | 286 export src |
pascal@886 | 287 export _pkg |
pankso@12285 | 288 mkdir -p $WOK/$PACKAGE/source/tmp |
slaxemulator@9701 | 289 $stuff/list_modules.sh \ |
pankso@12285 | 290 $(cat $stuff/modules.list) > $WOK/$PACKAGE/source/tmp/modules.list |
pankso@3864 | 291 while read module; do |
pascal@521 | 292 dir=$(dirname $module) |
pankso@535 | 293 [ -d $path/$dir ] || mkdir -p $path/$dir |
pankso@12285 | 294 cp -a $_pkg/lib/modules/$KBASEVER-slitaz/kernel/$module $path/$dir |
pankso@12285 | 295 done < $WOK/$PACKAGE/source/tmp/modules.list |
pascal@397 | 296 # Remove unresolved links |
pankso@12285 | 297 rm -f $fs/lib/modules/$KBASEVER-slitaz/build |
pankso@12285 | 298 rm -f $fs/lib/modules/$KBASEVER-slitaz/source |
pankso@12285 | 299 # Cook all packages with a kernel module |
pankso@12285 | 300 for i in $(cd $WOK; grep -l 'tazwok cook linux$' */receipt) |
pankso@12285 | 301 do |
pankso@12285 | 302 echo tazwok cook ${i%/receipt} |
pankso@12285 | 303 done |
pankso@12285 | 304 # Fixed modules.dep to use right path |
pankso@12285 | 305 # saves 100kb of space too |
pankso@12285 | 306 sed -i "s|$_pkg||g" $fs/lib/modules/$KBASEVER-slitaz/modules.dep |
pankso@12285 | 307 sed -i "s|99.98.$KBASEVER-slitaz|$KBASEVER-slitaz|g" $fs/lib/modules/$KBASEVER-slitaz/modules.dep |
pankso@12803 | 308 # Check and echo any module in kernel .config that's not added to |
pankso@5640 | 309 # one of linux-* pkgs |
pankso@12803 | 310 $stuff/check_modules.sh |
pankso@3 | 311 } |
pankso@3 | 312 |
pankso@3 | 313 # Pre and post install commands for Tazpkg. |
pankso@3 | 314 post_install() |
pankso@3 | 315 { |
pascal@521 | 316 echo "Processing post-install commands..." |
pankso@12803 | 317 case "$ARCH" in |
pankso@12803 | 318 arm) |
pankso@12803 | 319 echo "Kernel : /boot/linux-$VERSION-slitaz-$ARCH" |
pankso@12803 | 320 echo "Modules: /lib/modules/$VERSION-slitaz" |
pankso@12803 | 321 return 0 ;; |
pankso@12803 | 322 esac |
pankso@12285 | 323 chroot "$1/" depmod -a $KBASEVER-slitaz |
pankso@5640 | 324 # GRUB stuff. |
pankso@1154 | 325 if [ -f "$1/boot/grub/menu.lst" ]; then |
pankso@4056 | 326 root_dev=`cat $1/boot/grub/menu.lst | grep root= | sed 's/.*root=\([^ ]*\).*/\1/' | head -n 1` |
pankso@4056 | 327 grub_dev=`cat $1/boot/grub/menu.lst | grep "root (" | head -n 1` |
pankso@3864 | 328 # Add new kernel entry in case of upgrade for installed system. |
pankso@12291 | 329 if ! grep -q vmlinuz-$VERSION-slitaz $1/boot/grub/menu.lst; then |
pankso@4056 | 330 cat >> $1/boot/grub/menu.lst << EOT |
pankso@4056 | 331 |
pankso@4056 | 332 title SliTaz GNU/Linux (Kernel $VERSION-slitaz) |
pankso@4056 | 333 $grub_dev |
pankso@4056 | 334 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev |
pankso@4056 | 335 EOT |
pankso@4056 | 336 fi |
pankso@4056 | 337 # Display information message. |
pankso@4056 | 338 cat <<EOT |
pankso@4056 | 339 ---- |
pankso@4056 | 340 GRUB is installed, these tree lines must be in your /boot/grub/menu.lst: |
pankso@1154 | 341 |
pankso@1154 | 342 title SliTaz GNU/Linux (Kernel $VERSION-slitaz) |
pankso@1154 | 343 $grub_dev |
pankso@4056 | 344 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev |
pascal@886 | 345 ---- |
pascal@886 | 346 EOT |
pankso@1154 | 347 fi |
pankso@3 | 348 } |