mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
28 lines
853 B
Bash
28 lines
853 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() {
|
|
cd ${srcdir}/
|
|
mkdir -p ${pkgdir}/boot
|
|
install -D -m644 sheeva-2.6.31.5-uImage ${pkgdir}/boot/uImage
|
|
cp -R lib ${pkgdir}/lib
|
|
}
|