137 lines
3.5 KiB
Bash
137 lines
3.5 KiB
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
PKGREL="4"
|
|
FIRMWAREVERSION="2.6"
|
|
COMMMIT="d637294e264adfeb29f390dfc393106fd4d41b17"
|
|
MY_P="u-boot-${COMMMIT}"
|
|
DESCRIPTION="Das U-boot and utilities for working with Das U-Boot for the PinePhone Pro"
|
|
HOMEPAGE="https://www.denx.de/wiki/U-Boot/WebHome"
|
|
SRC_URI="
|
|
https://source.denx.de/u-boot/u-boot/-/archive/${COMMMIT}/u-boot-${COMMMIT}.tar.gz -> u-boot-${PV}.tar.gz
|
|
https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot/trusted-firmware-a-${FIRMWAREVERSION}.tar.gz
|
|
"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~arm64"
|
|
IUSE="envtools"
|
|
|
|
|
|
RDEPEND="dev-libs/openssl:="
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
sys-apps/dtc
|
|
sys-devel/bison
|
|
sys-devel/flex
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
sed -i 's:\bpkg-config\b:${PKG_CONFIG}:g' \
|
|
scripts/kconfig/{g,m,n,q}conf-cfg.sh \
|
|
scripts/kconfig/Makefile \
|
|
tools/Makefile || die
|
|
|
|
#Apply PinePhone Pro patches
|
|
eapply "${FILESDIR}/0001-rockchip-Add-initial-support-for-the-PinePhone-Pro.patch"
|
|
eapply "${FILESDIR}/0002-Correct-boot-order-to-be-USB-SD-eMMC.patch"
|
|
eapply "${FILESDIR}/0003-Configure-USB-power-settings-for-PinePhone-Pro.patch"
|
|
}
|
|
|
|
|
|
src_configure() {
|
|
tc-export AR BUILD_CC CC PKG_CONFIG
|
|
}
|
|
|
|
src_compile() {
|
|
cd ${WORKDIR}/trusted-firmware-a-${FIRMWAREVERSION}
|
|
unset CFLAGS CXXFLAGS CPPFLAGS LDFLAGS
|
|
make PLAT=rk3399
|
|
cp build/rk3399/release/bl31/bl31.elf ${S}
|
|
|
|
cd ${S}
|
|
|
|
# Unset a few KBUILD variables. Bug #540476
|
|
unset KBUILD_OUTPUT KBUILD_SRC
|
|
|
|
local myemakeargs=(
|
|
AR="${AR}"
|
|
CC="${CC}"
|
|
HOSTCC="${BUILD_CC}"
|
|
HOSTCFLAGS="${CFLAGS} ${CPPFLAGS}"' $(HOSTCPPFLAGS)'
|
|
HOSTLDFLAGS="${LDFLAGS}"
|
|
)
|
|
|
|
emake "${myemakeargs[@]}" pinephone-pro-rk3399_defconfig
|
|
|
|
echo 'CONFIG_IDENT_STRING=" Gentoo Linux"' >> .config
|
|
echo 'CONFIG_BOOTDELAY=0' >> .config
|
|
echo 'CONFIG_USB_EHCI_HCD=n' >> .config
|
|
echo 'CONFIG_USB_EHCI_GENERIC=n' >> .config
|
|
echo 'CONFIG_USB_XHCI_HCD=n' >> .config
|
|
echo 'CONFIG_USB_XHCI_DWC3=n' >> .config
|
|
echo 'CONFIG_USB_DWC3=n' >> .config
|
|
echo 'CONFIG_USB_DWC3_GENERIC=n' >> .config
|
|
|
|
emake "${myemakeargs[@]}" EXTRAVERSION=-${PKGREL}
|
|
|
|
emake "${myemakeargs[@]}" \
|
|
NO_SDL=1 \
|
|
HOSTSTRIP=: \
|
|
STRIP=: \
|
|
CONFIG_ENV_OVERWRITE=y \
|
|
$(usex envtools envtools tools-all)
|
|
}
|
|
|
|
src_test() { :; }
|
|
|
|
src_install() {
|
|
insinto /boot/
|
|
doins ${S}/u-boot.itb
|
|
|
|
insinto /boot/
|
|
doins ${S}/idbloader.img
|
|
|
|
insinto /boot/
|
|
doins ${S}/boot.txt
|
|
|
|
insinto /usr/bin/
|
|
doins ${S}/ppp-uboot-flash
|
|
|
|
insinto /usr/bin/
|
|
doins ${S}/ppp-uboot-mkscr
|
|
|
|
cd tools || die
|
|
|
|
if ! use envtools; then
|
|
dobin bmp_logo dumpimage fdtgrep gen_eth_addr img2srec mkenvimage mkimage
|
|
fi
|
|
|
|
dobin env/fw_printenv
|
|
|
|
dosym fw_printenv /usr/bin/fw_setenv
|
|
|
|
insinto /etc
|
|
doins env/fw_env.config
|
|
|
|
doman ../doc/mkimage.1
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo "This U-Boot is only to be used for the PinePhone Pro."
|
|
einfo "After compiling a new Gentoo kernel, copy the resulting Image from /usr/src/linux/arch/arm64/boot/Image to the boot partition (replacing the existing Image)."
|
|
einfo "Update /boot/boot.txt to your wishes and then run ppp-uboot-mkscr to create the config."
|
|
einfo "New version of U-Boot firmware can be flashed to your microSD card or eMMC module."
|
|
einfo "You can do that by running ppp-uboot-flash or by running:"
|
|
einfo "# dd if=/boot/idbloader.img of=/dev/mmcblkX seek=64 conv=notrunc,fsync"
|
|
einfo "# dd if=/boot/u-boot.itb of=/dev/mmcblkX seek=16384 conv=notrunc,fsync"
|
|
}
|