blob: c6682f17f67893b6c56d0418b5fa7504113f6fb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit mount-boot
MY_PV=${PV/_beta/-beta-}
DESCRIPTION="Stand alone memory testing software for x86 computers"
HOMEPAGE="http://www.memtest86.com/"
SRC_URI="https://www.memtest86.com/downloads/memtest86-usb-${MY_PV}.zip -> ${P}.zip"
LICENSE="PassMark-EULA"
SLOT="0"
KEYWORDS="-* ~amd64"
IUSE=""
BDEPEND="app-arch/unzip
sys-fs/fatcat"
S=${WORKDIR}
src_unpack() {
default
fatcat memtest86-usb.img -O 1048576 -r /EFI/BOOT/BOOTX64.efi > ${PN}.efi || die
}
src_install() {
insinto /boot
doins ${PN}.efi
exeinto /etc/grub.d/
newexe "${FILESDIR}"/${PN}-grub.d 39_memtest86-bin
dodoc MemTest86_User_Guide_UEFI.pdf
}
|