New uboot mkimage

This commit is contained in:
Mike 2009-11-12 19:19:01 -06:00
parent d7d8b1d18f
commit 948c8afc21
2 changed files with 11 additions and 9 deletions

View file

@ -21,7 +21,8 @@ md5sums=('296e8dd4a28110928b9df3df4032e110'
'926bff46d24e2f303e4ee92234e394d8') '926bff46d24e2f303e4ee92234e394d8')
build() { build() {
mkdir $pkgdir/boot cd ${srcdir}/
cp $srcdir/sheeva-$pkgver-uImage $pkgdir/boot/ mkdir -p ${pkgdir}/boot
# cp -R $srcdir/ $pkgdir/ install -D -m644 sheeva-2.6.31.5-uImage ${pkgdir}/boot/uImage
cp -R lib ${pkgdir}/lib
} }

View file

@ -1,15 +1,16 @@
# Maintainer: Dominik Schemmel <dominik.schemmel@googlemail.com> # Maintainer: Dominik Schemmel <dominik.schemmel@googlemail.com>
pkgname=uboot-mkimage pkgname=uboot-mkimage
pkgver=0.4 pkgver=2009.08
pkgrel=2 pkgrel=1
pkgdesc="mkimage binary for making uboot kernel images" pkgdesc="mkimage binary for making uboot kernel images"
arch=('arm') arch=('arm')
license=('GPL' 'LGPL') 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') md5sums=('6ff36897a50c7fcd26bc088dc52841c8')
build() { build() {
cd $srcdir/uboot-mkimage cd $srcdir/u-boot-2009.08
make touch include/config.{h,mk}
install -Dm755 mkimage $pkgdir/usr/bin/mkimage make tools
install -Dm755 tools/mkimage $pkgdir/usr/bin/
} }