2009-12-07 20:25:36 +00:00
|
|
|
# Maintainer: Mike Staszel <mikestaszel@gmail.com>
|
2009-11-13 01:13:33 +00:00
|
|
|
|
2010-08-03 13:03:49 +00:00
|
|
|
# This PKGBUILD builds a kernel using cbxbiker's With-Linux configuration.
|
2010-07-06 12:27:46 +00:00
|
|
|
|
2009-11-13 01:13:33 +00:00
|
|
|
pkgname=kernel26-withlinux
|
2010-08-11 21:15:47 +00:00
|
|
|
pkgver=2.6.35.1
|
|
|
|
pkgrel=1
|
2010-08-03 13:03:49 +00:00
|
|
|
pkgdesc="The Linux Kernel and modules from WithLinux, natively compiled"
|
2009-11-13 01:13:33 +00:00
|
|
|
arch=('arm')
|
|
|
|
license=('GPL2')
|
2010-08-03 13:03:49 +00:00
|
|
|
url="http://www.kernel.org"
|
2009-11-13 01:13:33 +00:00
|
|
|
depends=('coreutils' 'module-init-tools')
|
2010-08-03 13:03:49 +00:00
|
|
|
makedepends=('uboot-mkimage')
|
2009-11-13 01:13:33 +00:00
|
|
|
conflicts=('kernel26')
|
|
|
|
provides=('kernel26')
|
2010-08-03 14:18:41 +00:00
|
|
|
install=kernel26-withlinux.install
|
2010-08-03 13:03:49 +00:00
|
|
|
source=(http://www.kernel.org/pub/linux/kernel/v2.6/linux-$pkgver.tar.bz2
|
|
|
|
http://sheeva.with-linux.com/sheeva/$pkgver/sheeva-$pkgver.config)
|
2010-08-11 21:15:47 +00:00
|
|
|
md5sums=('27b266dda534761fb027a6c47605b7e3'
|
|
|
|
'6c0d5121469057b99603b3ed6a0227ab')
|
2010-08-03 13:03:49 +00:00
|
|
|
LDFLAGS=""
|
2009-11-13 01:13:33 +00:00
|
|
|
|
|
|
|
build() {
|
2010-08-03 13:03:49 +00:00
|
|
|
cd $srcdir/
|
|
|
|
ln -s linux-$pkgver linux
|
|
|
|
cd linux/
|
|
|
|
|
|
|
|
# Prepare for make
|
|
|
|
mv $srcdir/sheeva-$pkgver.config .config
|
|
|
|
|
|
|
|
# Make!
|
2010-08-11 21:15:47 +00:00
|
|
|
make modules uImage || return 1
|
2010-08-03 13:03:49 +00:00
|
|
|
|
|
|
|
# Pack up the created uImage
|
|
|
|
mkdir -p $pkgdir/boot
|
|
|
|
cp $srcdir/linux/arch/arm/boot/uImage $pkgdir/boot/uImage
|
|
|
|
|
|
|
|
# Make and package kernel modules
|
|
|
|
mkdir -p $pkgdir/{lib/modules,boot}
|
|
|
|
make INSTALL_MOD_PATH=${pkgdir} modules_install || return 1
|
2009-11-13 01:13:33 +00:00
|
|
|
}
|