mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
49 lines
1.2 KiB
Bash
49 lines
1.2 KiB
Bash
# U-Boot: ODROID-C1
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
buildarch=4
|
|
|
|
pkgname=uboot-odroid-c1
|
|
pkgver=2011.03
|
|
pkgrel=13
|
|
pkgdesc="U-Boot for ODROID-C1"
|
|
arch=('armv7h')
|
|
url="https://github.com/hardkernel/u-boot"
|
|
license=('GPL')
|
|
install=$pkgname.install
|
|
makedepends=('git' 'bc')
|
|
backup=('boot/boot.ini')
|
|
_commit=c878e20536aa4924aca6b29e641cf5b9864a9f38
|
|
source=("https://github.com/hardkernel/u-boot/archive/${_commit}.tar.gz"
|
|
'boot.ini'
|
|
'0001-remove-cross-compiling.patch'
|
|
'0002-sd_fusing-tweaks.patch')
|
|
md5sums=('1e90cad486793d08f57502d311d0f9a6'
|
|
'40091a757b21e80cbc7b87157cd5597b'
|
|
'fb9e00cfdc765b60c61b42060bde6fc2'
|
|
'beeec86a4903a3ce6d1e7956ad9250c4')
|
|
|
|
prepare() {
|
|
cd u-boot-${_commit}
|
|
|
|
git apply ../0001-remove-cross-compiling.patch
|
|
git apply ../0002-sd_fusing-tweaks.patch
|
|
}
|
|
|
|
build() {
|
|
cd u-boot-${_commit}
|
|
|
|
unset CFLAGS CXXFLAGS CPPFLAGS LDFLAGS
|
|
|
|
make distclean
|
|
make odroidc_config
|
|
make EXTRAVERSION=-${pkgrel}
|
|
}
|
|
|
|
package() {
|
|
cd u-boot-${_commit}/sd_fuse
|
|
|
|
mkdir -p "${pkgdir}"/boot
|
|
cp bl1.bin.hardkernel sd_fusing.sh u-boot.bin "${pkgdir}"/boot
|
|
cp "${srcdir}"/boot.ini "${pkgdir}"/boot
|
|
}
|