mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-27 07:27:04 +00:00
bcbd365cfe
meta-atp layer provides support for building AMBA Adaptive Traffic Profiles (ATP) Engine. It provides the following recipes: - ATP Engine native standalone build. - ATP Engine with gem5 as host platform. - ATP Linux kernel modules. - ATP Linux user API. - ATP Linux tests. The layer provides a "gem5-atp-arm64" machine with ATP device and adapter support. Change-Id: Ib86c7502d62d5707d0d4bbdd7d179f231cf96f57 Signed-off-by: Adrian Herrera <adrian.herrera@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
25 lines
486 B
BlitzBasic
25 lines
486 B
BlitzBasic
require recipes-devtools/atp/atp-source_3.1.inc
|
|
inherit package
|
|
|
|
SUMMARY = "User API for accessing services from ATP kernel modules"
|
|
SECTION = "kernel/userland"
|
|
|
|
S = "${WORKDIR}/git"
|
|
SRC_URI = "${ATP_SRC}"
|
|
|
|
# Unversioned library
|
|
SOLIBS = ".so"
|
|
FILES_SOLIBSDEV = ""
|
|
|
|
EXTRA_OEMAKE += "-C linux/uapi"
|
|
|
|
do_compile() {
|
|
oe_runmake KERNEL_HDR_PATH=${STAGING_INCDIR}
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake DESTDIR=${D} PREFIX=${prefix} install
|
|
}
|
|
|
|
DEPENDS = "linux-libc-headers kernel-module-atp"
|