2019-04-06 01:52:32 +00:00
|
|
|
# U-Boot: ODROID-N2
|
|
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
|
|
|
|
# Note: must be built on x86 with an old cross toolchain
|
|
|
|
|
|
|
|
buildarch=8
|
|
|
|
noautobuild=1
|
|
|
|
|
|
|
|
pkgname=uboot-odroid-n2
|
|
|
|
pkgver=2015.01
|
2019-09-15 00:55:04 +00:00
|
|
|
pkgrel=9
|
2019-04-06 01:52:32 +00:00
|
|
|
pkgdesc="U-Boot for ODROID-N2"
|
|
|
|
arch=('aarch64')
|
|
|
|
url="https://github.com/hardkernel/u-boot"
|
|
|
|
license=('GPL')
|
|
|
|
install=$pkgname.install
|
|
|
|
depends=('uboot-tools')
|
|
|
|
makedepends=('git' 'bc')
|
|
|
|
backup=('boot/boot.ini')
|
2019-09-15 00:55:04 +00:00
|
|
|
_commit=a374ff35130f09ba99717c5da3bd46fc3137518f
|
2019-04-06 01:52:32 +00:00
|
|
|
source=("https://github.com/hardkernel/u-boot/archive/${_commit}.tar.gz"
|
|
|
|
'boot.ini'
|
|
|
|
'0001-sd_fusing-tweaks.patch'
|
|
|
|
'0002-arch-linux-arm-modifications.patch'
|
|
|
|
'91-uboot-uimg.hook')
|
2019-09-15 00:55:04 +00:00
|
|
|
md5sums=('fef976cda0da5eb94d926047c23f15cc'
|
|
|
|
'33de84d1cc619dba9b14d87b510684ff'
|
2019-04-06 01:52:32 +00:00
|
|
|
'cc18cda0bc75936e602341efd5a2fe93'
|
|
|
|
'4d14405ba98f09c002505cbe53e2f6cb'
|
|
|
|
'1931c8dfde7088530f173ca59fdb8989')
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd u-boot-${_commit}
|
|
|
|
|
|
|
|
git apply ../0001-sd_fusing-tweaks.patch
|
|
|
|
git apply ../0002-arch-linux-arm-modifications.patch
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd u-boot-${_commit}
|
|
|
|
|
|
|
|
unset CFLAGS CXXFLAGS CPPFLAGS LDFLAGS
|
|
|
|
|
|
|
|
make distclean mrproper
|
|
|
|
make odroidn2_config
|
|
|
|
make -j1 EXTRAVERSION=-${pkgrel}
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd u-boot-${_commit}/sd_fuse
|
|
|
|
|
|
|
|
mkdir -p "${pkgdir}"/boot
|
|
|
|
cp sd_fusing.sh u-boot.bin "${pkgdir}"/boot
|
|
|
|
cp "${srcdir}"/boot.ini "${pkgdir}"/boot
|
|
|
|
install -Dm644 "${srcdir}/91-uboot-uimg.hook" "${pkgdir}/usr/share/libalpm/hooks/91-uboot-uimg.hook"
|
|
|
|
}
|