mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
a1a1d6f3c6
Add bootargs, see: https://archlinuxarm.org/forum/viewtopic.php?f=65&t=16986
52 lines
1.2 KiB
Bash
52 lines
1.2 KiB
Bash
# U-Boot: ODROID-C2
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# Note: must be built on x86 with an old cross toolchain
|
|
|
|
buildarch=8
|
|
noautobuild=1
|
|
|
|
pkgname=uboot-odroid-c2
|
|
pkgver=2015.01
|
|
pkgrel=18
|
|
pkgdesc="U-Boot for ODROID-C2"
|
|
arch=('aarch64')
|
|
url="https://github.com/hardkernel/u-boot"
|
|
license=('GPL')
|
|
install=$pkgname.install
|
|
makedepends=('git' 'bc')
|
|
backup=('boot/boot.ini')
|
|
_commit=205c7b3259559283161703a1a200b787c2c445a5
|
|
source=("https://github.com/hardkernel/u-boot/archive/${_commit}.tar.gz"
|
|
'boot.ini'
|
|
'0001-sd_fusing-tweaks.patch'
|
|
'0002-arch-linux-arm-modifications.patch')
|
|
md5sums=('11a49bb7e9825b05fb555ba6f2aca736'
|
|
'1fb3985d644304daaf125860f5e8f76a'
|
|
'316b458415515edfc18abd54a52d43d4'
|
|
'de51b9b3345954238c455214c5947ea3')
|
|
|
|
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
|
|
make odroidc2_config
|
|
make -j1 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
|
|
}
|