diff options
Diffstat (limited to 'base/kernel-35/Pkgfile')
-rw-r--r-- | base/kernel-35/Pkgfile | 75 |
1 files changed, 39 insertions, 36 deletions
diff --git a/base/kernel-35/Pkgfile b/base/kernel-35/Pkgfile index efd2c0f2a..edc7c5de7 100644 --- a/base/kernel-35/Pkgfile +++ b/base/kernel-35/Pkgfile @@ -4,65 +4,68 @@ # Packager: thierryn1 at hispeed dot ch name=kernel-35 -version=2.6.35.8 +version=2.6.35.10 _BaseVersion=2.6.35 -release=2 +release=1 PKGMK_NO_STRIP="yes" -SCRIPT_VERSION="attapu.1" -_extra=31102010 -_tools=31102010 +PKGMK_IGNORE_FOOTPRINT="yes" +SCRIPT_VERSION="pakxe" +_extra=03012011 +_tools=03012011 source=(http://www.kernel.org/pub/linux/kernel/v2.6/linux-${_BaseVersion}.tar.bz2 config_64 config\ - http://www.kernel.org/pub/linux/kernel/v2.6/patch-$version.bz2\ + http://www.kernel.org/pub/linux/kernel/v2.6/longterm/v${_BaseVersion=2.6.35}/patch-$version.bz2\ http://nutyx.meticul.eu/install-${SCRIPT_VERSION}.ash\ - http://nutyx.meticul.eu/files/nutyx-initrd-extra-${_extra}.tar.bz2\ - http://nutyx.meticul.eu/files/installtools-${_tools}.tar.gz) + http://nutyx.meticul.eu/files/nutyx-initrd-`uname -m`-${_extra}.tar.bz2\ + http://nutyx.meticul.eu/files/installtools-${_tools}.tar.bz2) build(){ +unset MAKEFLAGS for i in setup-install setup-mirroir do sed -i "s|#INSTALL#|install-$SCRIPT_VERSION.ash|" \ - nutyx-initrd-2009/rootfs/install/$i || exit 1 + nutyx-initrd-2011/rootfs/install/$i || exit 1 done for i in main.txt functions setup-grub setup-grub do - sed -i "s|#VERSION#|MINI $SCRIPT_VERSION|g" \ - nutyx-initrd-2009/rootfs/install/$i + sed -i "s|#VERSION#|MINI $SCRIPT_VERSION|g" \ + nutyx-initrd-2011/rootfs/install/$i done -bzip2 -d patch-$version.bz2 cd linux-${_BaseVersion} make mrproper case `uname -m` in - x86_64) - mv $SRC/config_64 ./.config;; - i?86) - mv $SRC/config ./.config;; + x86_64) + mv $SRC/config_64 ./.config;; + i?86) + mv $SRC/config ./.config;; esac -patch -Np1 -i ../patch-$version +bzip2 -d -c ../patch-$version.bz2 | patch -Np1 sed -i "s/EXTRAVERSION = .*/EXTRAVERSION =/" Makefile +make menuconfig +cp .config /tmp/ make make INSTALL_MOD_PATH=$PKG modules_install mkdir -p $PKG/boot case `uname -m` in - x86_64) - cp System.map \ - $PKG/boot/System_64.map-$version - cp .config \ - $PKG/boot/config_64-$version - cp arch/x86_64/boot/bzImage \ - $PKG/boot/kernel_64-$version - ln -sf kernel_64-$version \ - $PKG/boot/kernel_64 ;; + x86_64) + cp System.map \ + $PKG/boot/System_64.map-$version + cp .config \ + $PKG/boot/config_64-$version + cp arch/x86_64/boot/bzImage \ + $PKG/boot/kernel_64-$version + ln -sf kernel_64-$version \ + $PKG/boot/kernel_64 ;; - i?86) - cp System.map \ - $PKG/boot/System.map-$version - cp .config \ - $PKG/boot/config-$version - cp arch/i386/boot/bzImage \ - $PKG/boot/kernel-$version - ln -sf kernel-$version \ - $PKG/boot/kernel;; + i?86) + cp System.map \ + $PKG/boot/System.map-$version + cp .config \ + $PKG/boot/config-$version + cp arch/i386/boot/bzImage \ + $PKG/boot/kernel-$version + ln -sf kernel-$version \ + $PKG/boot/kernel;; esac cd $PKG/lib/modules/${_BaseVersion}-NuTyX/ rm {build,source} @@ -85,5 +88,5 @@ mkdir -p $PKG/root/bin install -m755 $SRC/install-${SCRIPT_VERSION}.ash \ $PKG/root/bin/install-${SCRIPT_VERSION}.ash cd $SRC -bsdtar -c "-J" -f $PKG/boot/nutyx-initrd.tar.xz nutyx-initrd-2009 +bsdtar -c "-J" -f $PKG/boot/nutyx-initrd.tar.xz nutyx-initrd-2011 } |