115 lines
3.7 KiB
Bash
Executable File
115 lines
3.7 KiB
Bash
Executable File
# 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.7.0"
|
|
COMMMIT="e092e3250270a1016c877da7bdd9384f14b1321e"
|
|
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"
|
|
|
|
|
|
RDEPEND="dev-libs/openssl:="
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
sys-apps/dtc
|
|
sys-devel/bison
|
|
sys-devel/flex
|
|
virtual/pkgconfig
|
|
sys-devel/crossdev
|
|
dev-embedded/u-boot-tools
|
|
"
|
|
|
|
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}"/1001-Correct-boot-order-to-be-USB-SD-eMMC.patch
|
|
eapply "${FILESDIR}"/1002-rockchip-Add-initial-support-for-the-PinePhone-Pro.patch
|
|
#eapply "${FILESDIR}"/1003-Configure-USB-power-settings-for-PinePhone-Pro.patch
|
|
eapply "${FILESDIR}"/1004-mtd-spi-nor-ids-Add-GigaDevice-GD25LQ128E-entry.patch
|
|
eapply "${FILESDIR}"/1005-Reconfigure-GPIO4_D3-as-input-on-PinePhone-Pro.patch
|
|
eapply "${FILESDIR}"/2001-mmc-sdhci-allow-disabling-sdma-in-spl.patch
|
|
eapply "${FILESDIR}"/3001-pinephone-pro-Remove-cargo-culted-iodomain-config.patch
|
|
eapply "${FILESDIR}"/3002-pine64-pinephonePro-SPI-support.patch
|
|
}
|
|
|
|
|
|
src_configure() {
|
|
tc-export AR BUILD_CC CC PKG_CONFIG
|
|
}
|
|
|
|
src_compile() {
|
|
unset CFLAGS CXXFLAGS CPPFLAGS LDFLAGS
|
|
|
|
cd ${WORKDIR}/trusted-firmware-a-${FIRMWAREVERSION}
|
|
emake "${myemakeargs[@]}" PLAT=rk3399
|
|
cp build/rk3399/release/bl31/bl31.elf ${S}
|
|
|
|
cd ${S}
|
|
|
|
# Unset a few KBUILD variables. Bug #540476
|
|
unset KBUILD_OUTPUT KBUILD_SRC
|
|
|
|
emake "${myemakeargs[@]}" pinephone-pro-rk3399_defconfig
|
|
|
|
local myemakeargs=(
|
|
V=1
|
|
AR="${AR}"
|
|
CC="${CC}"
|
|
HOSTCC="${BUILD_CC}"
|
|
HOSTCFLAGS="${BUILD_CFLAGS} ${BUILD_CPPFLAGS}"' $(HOSTCPPFLAGS)'
|
|
HOSTLDFLAGS="${BUILD_LDFLAGS}"
|
|
)
|
|
|
|
echo "CONFIG_IDENT_STRING='Gentoo Linux'" >> .config
|
|
echo "CONFIG_BOOTDELAY'='0'" >> .config
|
|
echo "CONFIG_SPL_DM_SEQ_ALIAS='y'" >> .config
|
|
echo "CONFIG_SF_DEFAULT_BUS='1'" >> .config
|
|
echo "CONFIG_SPL_MMC_SDHCI_SDMA'='n'" >> .config
|
|
|
|
emake "${myemakeargs[@]}" EXTRAVERSION=-${PKGREL}
|
|
}
|
|
|
|
src_test() { :; }
|
|
|
|
src_install() {
|
|
insinto /boot/
|
|
doins ${S}/u-boot.itb
|
|
doins ${S}/idbloader.img
|
|
doins ${FILESDIR}/boot.txt
|
|
|
|
dobin ${FILESDIR}/ppp-uboot-mkscr
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo "In order to get the U-Boot to work you will need a crosscompiler for arm-none-eabi you can do this by running: crossdev --target arm-none-eabi (if not done allready) and then re-emerge this packages"
|
|
einfo "This U-Boot is only to be used for the PinePhone Pro."
|
|
einfo "Edit the /boot/boot.txt file with your uuid's and then run ppp-uboot-mkscr"
|
|
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 "New version of U-Boot firmware can be flashed to your microSD card or eMMc module."
|
|
einfo "You can do that 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"
|
|
einfo "Due to the Boot Priority for the PPP it is HIGHLY recommended to not put U-Boot on the eMMc because there is no easy way to recover is something went wrong."
|
|
}
|