diff options
author | Bertrand Jacquin <bertrand@jacquin.bzh> | 2022-09-05 00:45:57 +0100 |
---|---|---|
committer | Bertrand Jacquin <bertrand@jacquin.bzh> | 2022-09-05 02:13:29 +0100 |
commit | a9262c7d92d40cffd51cf667d8b4daaf2d4af49c (patch) | |
tree | 4055c7c453dbf3add471ef1ef57b492f11471d8e /sys-firmware | |
parent | net-p2p/c-lightning: version bump (diff) | |
download | portage-a9262c7d92d40cffd51cf667d8b4daaf2d4af49c.tar.xz |
sys-firmware/apu2-bios: version bump
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Diffstat (limited to 'sys-firmware')
-rw-r--r-- | sys-firmware/apu2-bios/Manifest | 1 | ||||
-rw-r--r-- | sys-firmware/apu2-bios/apu2-bios-4.17.0.2.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/sys-firmware/apu2-bios/Manifest b/sys-firmware/apu2-bios/Manifest index 1c8a62ec..338f9cd1 100644 --- a/sys-firmware/apu2-bios/Manifest +++ b/sys-firmware/apu2-bios/Manifest @@ -1 +1,2 @@ DIST apu2_v4.17.0.1.rom 8388608 BLAKE2B d2f226edc5edf9eca6ad332b3e526d55278e583627b645a621e0f054504f2317b95d518d2c8026fd43473a1f39a7c0b750e1497a4616af077683f6100b4f44a6 SHA512 6a3b56bfd737af31f974fe4b9afbdb8a6497f40405771436ebd17e4edc8e2e8e8807bcf6aa569abd2b72859e95969aaf8318cce814c6bf88af79ab5f4da171cc +DIST apu2_v4.17.0.2.rom 8388608 BLAKE2B f074f78a3ce7cb5df813a6f3f198d06585f1f9b932a31e07d6ce94a5a48e6e4211166beba5f04b1b176b914d3d7448606f9c9fb1b60130b5609ce97c298a09ba SHA512 d2f80a77e11cfd7b4e763544f6ad9e873ab3a4f208be31ae736e56cf688e99506147b39710921baaa6cdd96fe2a7ba3fefa9e603db42e4d909f32348dcf6e4bb diff --git a/sys-firmware/apu2-bios/apu2-bios-4.17.0.2.ebuild b/sys-firmware/apu2-bios/apu2-bios-4.17.0.2.ebuild new file mode 100644 index 00000000..00c53365 --- /dev/null +++ b/sys-firmware/apu2-bios/apu2-bios-4.17.0.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="PC Engines APU2 BIOS" +HOMEPAGE="https://pcengines.github.io" +SRC_URI="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v${PV}.rom" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="" +RDEPEND="sys-apps/flashrom" + +src_unpack () { + mkdir "${S}" + cp "${DISTDIR}/apu2_v${PV}.rom" "${S}/apu2_v${PV}.rom" || die +} + +src_install () { + insinto /lib/firmware/pc-engines + doins "apu2_v${PV}.rom" +} + +pkg_postinst() { + einfo "Run the following to install the BIOS" + einfo "flashrom -w /lib/firmware/pc-engines/apu2_v${PV}.rom -p internal" +} |