app-benchmarks/rowhammer-test - 9999 (booboo)

Search

Install

Install this version:

emerge -a =app-benchmarks/rowhammer-test-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =app-benchmarks/rowhammer-test-9999

Or alternatively:

emerge --autounmask-write -a =app-benchmarks/rowhammer-test-9999

Package Information

Description:
Test DRAM for bit flips caused by the rowhammer problem
Homepage:
https://github.com/google/rowhammer-test
License:
Apache-2.0

Ebuild Details

Version EAPI Keywords Slot
9999 7 0
View Raw Ebuild
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit git-r3

DESCRIPTION="Test DRAM for bit flips caused by the rowhammer problem"
HOMEPAGE="https://github.com/google/rowhammer-test"
EGIT_REPO_URI="https://github.com/google/rowhammer-test"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS=""

DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""

src_compile() {
	./make.sh
}

src_install() {
	dobin rowhammer_test
	dobin double_sided_rowhammer
	dodoc README.md
}

Inherited Eclasses