mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
28 lines
818 B
Bash
28 lines
818 B
Bash
|
# Maintainer: Dominik Schemmel <dominik.schemmel@googlemail.com>
|
||
|
# Package built natively on sheevaplug
|
||
|
# based on the kernel on http://sheeva.with-linux.com/sheeva/
|
||
|
|
||
|
pkgname=kernel26-withlinux
|
||
|
pkgver=2.6.31.6
|
||
|
pkgrel=1
|
||
|
pkgdesc="The Linux Kernel and modules"
|
||
|
arch=('arm')
|
||
|
license=('GPL2')
|
||
|
url="http://sheeva.with-linux.com/sheeva/"
|
||
|
depends=('coreutils' 'module-init-tools')
|
||
|
makedepends=()
|
||
|
conflicts=('kernel26')
|
||
|
provides=('kernel26')
|
||
|
install=kernel26-withlinux.install
|
||
|
source=(http://sheeva.with-linux.com/sheeva/$pkgver/sheeva-$pkgver-uImage
|
||
|
http://sheeva.with-linux.com/sheeva/$pkgver/sheeva-$pkgver-Modules.tar.gz)
|
||
|
|
||
|
md5sums=('296e8dd4a28110928b9df3df4032e110'
|
||
|
'926bff46d24e2f303e4ee92234e394d8')
|
||
|
|
||
|
build() {
|
||
|
mkdir $pkgdir/boot
|
||
|
cp $srcdir/sheeva-$pkgver-uImage $pkgdir/boot/
|
||
|
# cp -R $srcdir/ $pkgdir/
|
||
|
}
|