wok diff linux/receipt @ rev 15670

Up linux (3.2.53)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Dec 18 08:40:48 2013 +0000 (2013-12-18)
parents 051931e905b0
children 8580e54b5284
line diff
     1.1 --- a/linux/receipt	Fri Dec 06 10:39:07 2013 +0000
     1.2 +++ b/linux/receipt	Wed Dec 18 08:40:48 2013 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="linux"
     1.7 -VERSION="3.2.40"
     1.8 +VERSION="3.2.53"
     1.9  KBASEVER="${VERSION:0:3}"
    1.10  CATEGORY="base-system"
    1.11  SHORT_DESC="The Linux kernel and modules."
    1.12 @@ -220,11 +220,11 @@
    1.13  	sed -i -e 's/^CONFIG_RTL8192/#&/' \
    1.14  	       -e 's/^CONFIG_R8187SE/#&/' \
    1.15  	       -e 's/^CONFIG_RT2870/#&/' .config
    1.16 -	yes '' | make oldconfig
    1.17 +	yes '' | make ARCH=i386 oldconfig
    1.18  	if [ -x /usr/bin/cook ]; then
    1.19 -		make -j 4 bzImage || exit 1
    1.20 +		make ARCH=i386 -j 4 bzImage || exit 1
    1.21  	elif [ -x /usr/bin/tazwok ]; then
    1.22 -		make -j 4 bzImage || { report close-bloc; return 1; }
    1.23 +		make ARCH=i386 -j 4 bzImage || { report close-bloc; return 1; }
    1.24  	fi
    1.25  	[ -d $DESTDIR ] || mkdir -p $DESTDIR
    1.26  	mv arch/x86/boot/bzImage $DESTDIR
    1.27 @@ -234,12 +234,12 @@
    1.28  
    1.29  	# Build bzImage with modules
    1.30  	cp -f $stuff/$PACKAGE-slitaz.config .config
    1.31 -	#make oldconfig
    1.32 +	#make ARCH=i386 oldconfig
    1.33  	ln .config $WOK/$PACKAGE/source/slitaz/config
    1.34 -	make -j 4 bzImage &&
    1.35 -	make -j 4 modules &&
    1.36 -	make INSTALL_MOD_PATH=$DESTDIR modules_install &&
    1.37 -	make INSTALL_HDR_PATH=$DESTDIR/usr headers_install &&
    1.38 +	make ARCH=i386 -j 4 bzImage &&
    1.39 +	make ARCH=i386 -j 4 modules &&
    1.40 +	make ARCH=i386 INSTALL_MOD_PATH=$DESTDIR modules_install &&
    1.41 +	make ARCH=i386 INSTALL_HDR_PATH=$DESTDIR/usr headers_install &&
    1.42  	if [ -x /usr/bin/cook ]; then
    1.43  		[ -s arch/x86/boot/bzImage ] || return 1
    1.44  	elif [ -x /usr/bin/tazwok ]; then