d72923dcd5
- main: postmarketos-mkinitfs: Add /run Create the /run directory in the initramfs so that cryptsetup doesn't crash on not being able to create /run/cryptsetup for lockfiles - device: pine-dontbeevil: Remove workaround for touchscreen - main: linux-postmarketos-allwinner: Implemented supplies for touchscreen This uses a slightly newer commit from the kernel repo that implements requesting a regulator in the touchscreen driver - device: pine-dontbeevil: Remove ethernet from initramfs This actually makes debugging more complicated since networkmanager wont touch the ethernet adapter afterwards and the initramfs can be debugged over uart - temp/u-boot: sync APKBUILD with upstream and update to 2019.04 - main: linux-postmarketos-allwinner: Use 20190521 git version
129 lines
3.9 KiB
Text
129 lines
3.9 KiB
Text
# Contributor: He Yangxuan <yangxuan8282@gmail.com>
|
|
# Contributor:
|
|
# Contributor: Timo Teras <timo.teras@iki.fi>
|
|
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
pkgname=u-boot
|
|
pkgver=2019.04
|
|
pkgrel=0
|
|
_atfversion="2.1"
|
|
pkgdesc="u-boot bootloader common files"
|
|
url="http://www.denx.de/wiki/U-Boot/"
|
|
arch="armhf armv7 aarch64"
|
|
license="GPL-2.0-or-later OFL-1.1 BSD-2-Clause BSD-3-Clause eCos-2.0 IBM-pibs
|
|
ISC LGPL-2.0-only LGPL-2.1-only X11"
|
|
makedepends="$depends_dev bc dtc python2-dev swig bison flex"
|
|
source="http://ftp.denx.de/pub/u-boot/u-boot-${pkgver//_/-}.tar.bz2
|
|
arm-trusted-firmware-${_atfversion}.tar.gz::https://github.com/ARM-software/arm-trusted-firmware/archive/v${_atfversion}.tar.gz
|
|
README.txt
|
|
update-u-boot
|
|
"
|
|
builddir="$srcdir"/u-boot-${pkgver//_/-}
|
|
atfbuilddir="$srcdir"/arm-trusted-firmware-${_atfversion}
|
|
options="!tracedeps"
|
|
|
|
case "$CARCH" in
|
|
arm*) board_configs="
|
|
beagleboard:am335x_boneblack_vboot
|
|
cubieboard:Cubieboard,Cubieboard2
|
|
cuboxi:mx6cuboxi
|
|
raspberrypi:rpi_0_w,rpi,rpi_2,rpi_3_32b
|
|
wandboard:wandboard
|
|
qemu:qemu_arm
|
|
";;
|
|
aarch64) board_configs="
|
|
thunderx:thunderx_88xx
|
|
raspberrypi:rpi_3
|
|
odroid:odroid-c2
|
|
libretech:libretech-cc
|
|
qemu:qemu_arm64
|
|
pine64:pine64-lts
|
|
";;
|
|
esac
|
|
|
|
_allboards=""
|
|
for board_config in $board_configs; do
|
|
_allboards="$_allboards $pkgname-${board_config%%:*}"
|
|
done
|
|
subpackages="$pkgname-all:_all $_allboards"
|
|
|
|
build() {
|
|
if [ "$CARCH" = "aarch64" ]; then
|
|
msg "Building ARM trusted firmware for allwinner"
|
|
cd "$atfbuilddir"
|
|
LDFLAGS="" make PLAT=sun50i_a64 DEBUG=1 bl31
|
|
export BL31="$atfbuilddir"/build/sun50i_a64/debug/bl31.bin
|
|
# Sanity check $BL31
|
|
if [ ! -f "$BL31" ]; then
|
|
echo 'The $BL31 variable is invalid. Please adjust.'
|
|
return 1
|
|
fi
|
|
fi
|
|
|
|
cd "$builddir"
|
|
touch include/config.h
|
|
LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > include/timestamp_autogenerated.h
|
|
LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> include/timestamp_autogenerated.h
|
|
|
|
local board_config board
|
|
for board_config in $board_configs; do
|
|
local configs="${board_config#*:}"
|
|
for board in ${configs//,/ }; do
|
|
msg "Building u-boot for $board"
|
|
export BUILD_DIR="$builddir"/build/$board
|
|
mkdir -p "$BUILD_DIR"
|
|
make O="$BUILD_DIR" ${board}_config || return 1
|
|
make O="$BUILD_DIR" all || return 1
|
|
done
|
|
done
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"/build
|
|
mkdir -p "$pkgdir"/usr/share/$pkgname "$pkgdir"/usr/sbin
|
|
install "$srcdir"/README.txt "$pkgdir"/usr/share/$pkgname/README.txt || return 1
|
|
install "$srcdir"/update-u-boot "$pkgdir"/usr/sbin || return 1
|
|
}
|
|
|
|
_all() {
|
|
pkgdesc="u-boot for all boards (meta package)"
|
|
depends="$_allboards"
|
|
|
|
mkdir -p "$subpkgdir"/
|
|
}
|
|
|
|
_split_boards() {
|
|
cd "$builddir"/build
|
|
pkgdesc="u-boot for $1"
|
|
depends="u-boot"
|
|
shift
|
|
local board
|
|
for board; do
|
|
msg "Including board $board"
|
|
mkdir -p "$subpkgdir"/usr/share/$pkgname/$board
|
|
export BUILD_DIR="$builddir"/build/$board
|
|
local ok=no
|
|
for image in u-boot-sunxi-with-spl.bin -- MLO SPL u-boot.img -- u-boot.bin; do
|
|
if [ "$image" = "--" ]; then
|
|
[ "$ok" = yes ] && break
|
|
continue
|
|
fi
|
|
if [ -e "$BUILD_DIR"/$image ]; then
|
|
cp "$BUILD_DIR"/$image "$subpkgdir"/usr/share/$pkgname/$board \
|
|
|| return 1
|
|
ok=yes
|
|
fi
|
|
done
|
|
[ "$ok" = yes ] || return 1
|
|
done
|
|
}
|
|
|
|
for board_config in $board_configs; do
|
|
_board="${board_config%%:*}"
|
|
_configs="${board_config#*:}"
|
|
eval "${_board}() { _split_boards $_board ${_configs//,/ }; }"
|
|
done
|
|
|
|
sha512sums="357fe94b5b043885472ea1b7dcbbac601d0c1f7c64f71026b9e1279b53160847c6478d6ec98a2f678e562db21e39037d6e6fbc1e6b19beaac02ca14e93c5de0e u-boot-2019.04.tar.bz2
|
|
9b557ce5f7dc272a0cc0b955ef77fe8f00c8ed01261a2cad29bb2efba3f278e81f1061c809096c97589c7075e5d39be1abd22c8c6a9cf8aaff157f640d36d22c arm-trusted-firmware-2.1.tar.gz
|
|
f8c9bb6e84d6f0620c976ac7ad5dd7ec7ff9dfdd4b1d03d2bf6653e7beccf80bdf2debfc92fb1f696dba92fb40287d3c45897e0078951451d0835cb61a5f16d1 README.txt
|
|
f3bb656bbd13caf10a8ea619bc08b439e7dc27526c9cbdfa0374f4f8e277632ff4df06b34d441d6723a93d4a54aa03465d4270c44219d6a150d416b9c56edbbe update-u-boot"
|