sys-boot/raspberrypi-firmware: add new version 1.20190215
authorAndrey Utkin <andrey_utkin@gentoo.org>
Sun, 24 Mar 2019 19:03:46 +0000 (19:03 +0000)
committerAndrey Utkin <andrey_utkin@gentoo.org>
Sun, 24 Mar 2019 19:17:43 +0000 (19:17 +0000)
Cloned from 9999 ebuild verbatim.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrey Utkin <andrey_utkin@gentoo.org>
sys-boot/raspberrypi-firmware/Manifest
sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20190215.ebuild [new file with mode: 0644]

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..c5c7c3b3dcaa2b2f0fffbde6639f4c638637382b 100644 (file)
@@ -0,0 +1 @@
+DIST raspberrypi-firmware-1.20190215.tar.gz 123074917 BLAKE2B cefedb5c979db7dfd47938aad37a567d91d3ad78247c7a63f789362768ab7a39a1967ac116b4b0475e3b210ab11f6474706df042af85a622e8e7905c85ec7498 SHA512 082f26caf427222d838881e5f1e9fa0136765b3eaf74a84877fc33616fd07e49085db0889226c40c655039a9d41a10566510c7d752cfc48a67b4683616a51193
diff --git a/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20190215.ebuild b/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20190215.ebuild
new file mode 100644 (file)
index 0000000..5eaa396
--- /dev/null
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit mount-boot readme.gentoo-r1
+
+DESCRIPTION="Raspberry Pi (all versions) bootloader and GPU firmware"
+HOMEPAGE="https://github.com/raspberrypi/firmware"
+LICENSE="GPL-2 raspberrypi-videocore-bin"
+SLOT="0"
+
+if [[ "${PV}" == 9999 ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/raspberrypi/firmware"
+       EGIT_CLONE_TYPE="shallow"
+else
+       SRC_URI="https://github.com/raspberrypi/firmware/archive/${PV}.tar.gz -> ${P}.tar.gz"
+       KEYWORDS="-* ~arm ~arm64"
+       S="${WORKDIR}/firmware-${PV}"
+fi
+
+RESTRICT="binchecks strip"
+
+pkg_preinst() {
+       if [ -z "${REPLACING_VERSIONS}" ] ; then
+               local msg=""
+               if [ -e "${D}"/boot/cmdline.txt -a -e /boot/cmdline.txt ] ; then
+                       msg+="/boot/cmdline.txt "
+               fi
+               if [ -e "${D}"/boot/config.txt -a -e /boot/config.txt ] ; then
+                       msg+="/boot/config.txt "
+               fi
+               if [ -n "${msg}" ] ; then
+                       msg="This package installs following files: ${msg}."
+                       msg="${msg} Please remove(backup) your copies durning install"
+                       msg="${msg} and merge settings afterwards."
+                       msg="${msg} Further updates will be CONFIG_PROTECTed."
+                       die "${msg}"
+               fi
+       fi
+}
+
+src_install() {
+       insinto /boot
+       cd boot || die
+       doins bootcode.bin fixup*.dat start*elf
+       doins *.dtb
+       doins -r overlays
+       newins "${FILESDIR}"/${PN}-0_p20130711-config.txt config.txt
+       newins "${FILESDIR}"/${PN}-0_p20130711-cmdline.txt cmdline.txt
+       newenvd "${FILESDIR}"/${PN}-0_p20130711-envd 90${PN}
+       readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+       readme.gentoo_print_elog
+}
+
+DOC_CONTENTS="Please configure your ram setup by editing /boot/config.txt"