# HG changeset patch # User Christopher Rogers # Date 1292519766 0 # Node ID a03e47756b33771807bb1d506669892d9aecbf4f # Parent ed560df8d2fc7c070d57e5c3448bc5b2802cf22b Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think. diff -r ed560df8d2fc -r a03e47756b33 linux/receipt --- a/linux/receipt Thu Dec 16 16:22:02 2010 +0000 +++ b/linux/receipt Thu Dec 16 17:16:06 2010 +0000 @@ -76,7 +76,7 @@ cd ../.. # Build bzImage without modules first - cp ../stuff/$PACKAGE-$VERSION-slitaz.config .config + cp -f ../stuff/$PACKAGE-$VERSION-slitaz.config .config sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config # We can't keep every driver in staging sed -i -e 's/^CONFIG_RTL8192/#&/' \ @@ -84,11 +84,12 @@ -e 's/^CONFIG_RT2870/#&/' .config yes '' | make oldconfig make -j 4 bzImage || return 1 + [-d $PWD/_pkg ] || mkdir -p $PWD/_pkg mv arch/x86/boot/bzImage $PWD/_pkg mv System.map System.map-without-modules # Build bzImage with modules - cp ../stuff/$PACKAGE-$VERSION-slitaz.config .config + cp -f ../stuff/$PACKAGE-$VERSION-slitaz.config .config make oldconfig ln .config slitaz/config make -j 4 bzImage &&