Rename kernel26 to kernel and don't install headers.

The /usr/src/linux-$version headers/Makefiles and whatever will
be installed now by the new "kernel-headers" pkg.

--HG--
extra : convert_revision : 2d60053d37e0dfc27d094145500b05cd4355c319
This commit is contained in:
Juan RP 2008-12-17 10:03:42 +01:00
parent edc40d770d
commit e63d48e37e
3 changed files with 11 additions and 38 deletions

View file

@ -1,5 +1,5 @@
# Template file for 'kernel26' # Template file for 'kernel'
pkgname=kernel26 pkgname=kernel
version=2.6.27.9 version=2.6.27.9
# Vanilla kernel + UnionFS + SquashFS patches. # Vanilla kernel + UnionFS + SquashFS patches.
patch_files=" patch_files="
@ -13,18 +13,18 @@ build_style=gnu_makefile
make_build_target="bzImage modules" make_build_target="bzImage modules"
make_install_target="modules_install make_install_target="modules_install
INSTALL_MOD_PATH=$XBPS_DESTDIR/$pkgname-$version" INSTALL_MOD_PATH=$XBPS_DESTDIR/$pkgname-$version"
short_desc="The Linux kernel (2.6 branch)" short_desc="The Linux kernel and associated stuff (2.6 branch)"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
checksum=fd710a841be6119cdd2c42f92ca405265fb156e279006bb89bb874e4198b3e5e checksum=fd710a841be6119cdd2c42f92ca405265fb156e279006bb89bb874e4198b3e5e
long_desc=" long_desc="
This package provides the linux kernel image and kernel modules This package provides the linux kernel image, kernel modules
from the 2.6 branch." and firmware files."
build_depends="perl-5.10.0 module-init-tools-3.5" build_depends="perl-5.10.0 module-init-tools-3.5"
pre_build() pre_build()
{ {
# If there's a file called kernel26-<arch>-dotconfig, use it to # If there's a file called kernel-<arch>-dotconfig, use it to
# configure the kernel; otherwise run the menuconfig target. # configure the kernel; otherwise run the menuconfig target.
local arch= local arch=
@ -34,10 +34,9 @@ pre_build()
arch=x86_64 arch=x86_64
fi fi
if [ -f $XBPS_TEMPLATESDIR/kernel26-$arch-dotconfig ]; then if [ -f $XBPS_TEMPLATESDIR/kernel-$arch-dotconfig ]; then
msg_normal "Detected a .config file for your arch, using it." msg_normal "Detected a .config file for your arch, using it."
cp -f $XBPS_TEMPLATESDIR/kernel26-$arch-dotconfig \ cp -f $XBPS_TEMPLATESDIR/kernel-$arch-dotconfig $wrksrc/.config
$wrksrc/.config
make oldconfig make oldconfig
else else
make menuconfig make menuconfig
@ -54,42 +53,16 @@ post_install()
m68k* mips mn10300 parisc powerpc ppc s390 sh* sparc* \ m68k* mips mn10300 parisc powerpc ppc s390 sh* sparc* \
um v850 xtensa" um v850 xtensa"
# #
# Install bzImage, vmlinux and copy necessary stuff to build packages # Install the kernel, modules and firmware files.
# that require this. This is based off of kernel26 pkgbuild from # This is based in the kernel26 pkgbuild from Arch Linux.
# Archlinux.
# #
install -d $destdir/lib $destdir/boot install -d $destdir/lib $destdir/boot
cd $wrksrc || exit 1 cd $wrksrc || exit 1
install -m 644 arch/x86/boot/bzImage $destdir/boot/vmlinuz-$version install -m 644 arch/x86/boot/bzImage $destdir/boot/vmlinuz-$version
install -m 644 System.map $destdir/boot/System.map-$version install -m 644 System.map $destdir/boot/System.map-$version
install -D -m 644 Makefile $destdir/usr/src/linux-$version/Makefile
install -D -m 644 kernel/Makefile \
$destdir/usr/src/linux-$version/kernel/Makefile
install -D -m 644 .config $destdir/usr/src/linux-$version/.config
for i in ${incdirs}; do
cp -a include/$i $destdir/usr/src/linux-$version/include
done
install -D -m 644 Module.symvers \ install -D -m 644 Module.symvers \
$destdir/usr/src/linux-$version/Module.symvers $destdir/usr/src/linux-$version/Module.symvers
cp -a scripts $destdir/usr/src/linux-$version install -D -m 644 arch/x86/kernel/asm-offsets.s \
mkdir -p $destdir/usr/src/linux-$version/arch/x86/kernel
if [ "$xbps_machine" != "x86_64" ]; then
install -D -m 644 arch/x86/Makefile_32.cpu \
$destdir/usr/src/linux-$version/arch/x86/Makefile_32.cpu
fi
cp arch/x86/kernel/asm-offsets.s \
$destdir/usr/src/linux-$version/arch/x86/kernel $destdir/usr/src/linux-$version/arch/x86/kernel
for i in $(find . -name "Kconfig*"); do
mkdir -p $destdir/usr/src/linux-$version/$(echo $i | sed 's|/Kconfig.*||')
cp $i $destdir/usr/src/linux-$version/$i
done
cd $destdir/usr/src/linux-$version/include && ln -s asm-x86 asm
cd $destdir/usr/src && ln -s linux-$version linux
for arch in ${_arch}; do
rm -rf $destdir/usr/src/linux-$version/arch/$arch
done
} }