# U-Boot: BeagleBone and BeagleBone Black # Maintainer: André Silva # Contributor: Jookia <166291@gmail.com> # Contributor: Márcio Silva pkgbase=uboot4extlinux-am335x pkgname=('uboot4extlinux-am335x_bone') pkgver=2019.01 pkgrel=4 arch=('armv7h') url="http://git.denx.de/u-boot.git/" license=('GPL') makedepends=('bc' 'bison' 'dtc' 'flex' 'python' 'python2' 'swig') backup=(boot/extlinux/extlinux.conf) source=("ftp://ftp.denx.de/pub/u-boot/u-boot-${pkgver}.tar.bz2" 'extlinux.conf') sha256sums=('50bd7e5a466ab828914d080d5f6a432345b500e8fba1ad3b7b61e95e60d51c22' 'dcce8acd934eef35360c9e455197b1b46455a1a35c78bc94b9ed96234f2bb2b8') boards=('am335x_evm') prepare() { cd u-boot-${pkgver} echo 'CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x200' >> configs/am335x_evm_defconfig } build() { cd u-boot-${pkgver} unset CFLAGS CXXFLAGS LDFLAGS for i in ${boards[@]}; do mkdir -p ../bin_${i} make distclean make ${i}_defconfig echo 'CONFIG_IDENT_STRING=" Parabola GNU/Linux-libre"' >> .config make EXTRAVERSION=-${pkgrel} mv -f MLO u-boot.img ../bin_${i} done } package_uboot4extlinux-am335x_bone() { pkgdesc="U-Boot with Extlinux support for various BeagleBones" install=${pkgbase}.install provides=('uboot4extlinux-am335x') conflicts=('uboot-am335x_bone' 'uboot4grub-am335x_bone') install -d "${pkgdir}"/boot/extlinux install -d "${pkgdir}"/boot/u-boot/images/ install -Dm644 \ bin_am335x_evm/MLO \ bin_am335x_evm/u-boot.img \ "${pkgdir}"/boot/u-boot/images/ install -Dm644 extlinux.conf "${pkgdir}"/boot/extlinux }