mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
New uboot mkimage
This commit is contained in:
parent
d7d8b1d18f
commit
948c8afc21
2 changed files with 11 additions and 9 deletions
|
@ -21,7 +21,8 @@ md5sums=('296e8dd4a28110928b9df3df4032e110'
|
|||
'926bff46d24e2f303e4ee92234e394d8')
|
||||
|
||||
build() {
|
||||
mkdir $pkgdir/boot
|
||||
cp $srcdir/sheeva-$pkgver-uImage $pkgdir/boot/
|
||||
# cp -R $srcdir/ $pkgdir/
|
||||
cd ${srcdir}/
|
||||
mkdir -p ${pkgdir}/boot
|
||||
install -D -m644 sheeva-2.6.31.5-uImage ${pkgdir}/boot/uImage
|
||||
cp -R lib ${pkgdir}/lib
|
||||
}
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
# Maintainer: Dominik Schemmel <dominik.schemmel@googlemail.com>
|
||||
|
||||
pkgname=uboot-mkimage
|
||||
pkgver=0.4
|
||||
pkgrel=2
|
||||
pkgver=2009.08
|
||||
pkgrel=1
|
||||
pkgdesc="mkimage binary for making uboot kernel images"
|
||||
arch=('arm')
|
||||
license=('GPL' 'LGPL')
|
||||
source=(http://ftp.de.debian.org/debian/pool/main/u/uboot-mkimage/uboot-mkimage_0.4.tar.gz)
|
||||
source=(ftp://ftp.denx.de/pub/u-boot/u-boot-latest.tar.bz2)
|
||||
md5sums=('6ff36897a50c7fcd26bc088dc52841c8')
|
||||
build() {
|
||||
cd $srcdir/uboot-mkimage
|
||||
make
|
||||
install -Dm755 mkimage $pkgdir/usr/bin/mkimage
|
||||
cd $srcdir/u-boot-2009.08
|
||||
touch include/config.{h,mk}
|
||||
make tools
|
||||
install -Dm755 tools/mkimage $pkgdir/usr/bin/
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue