mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
c95e155780
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
23 lines
591 B
BlitzBasic
23 lines
591 B
BlitzBasic
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
require ktap.inc
|
|
|
|
SUMMARY = "KTAP is a scripting dynamic tracing tool for Linux"
|
|
|
|
inherit module
|
|
|
|
# Available package configs: ffi (only supported on x86_64)
|
|
PACKAGECONFIG ?= ""
|
|
|
|
# Only build the module
|
|
MAKE_TARGETS = "${@base_contains('PACKAGECONFIG', 'ffi', 'FFI=1', '', d)} mod"
|
|
|
|
# Kernel module packages MUST begin with 'kernel-module-', otherwise
|
|
# multilib image generation can fail.
|
|
#
|
|
# The following line is only necessary if the recipe name does not begin
|
|
# with kernel-module-.
|
|
#
|
|
PKG_${PN} = "kernel-module-${PN}"
|
|
|