Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
meta-seconorth-distro
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
13
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SECO Northern Europe
Yocto
layers
meta-seconorth-distro
Merge requests
!611
Add recipe to include general yocto test script
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add recipe to include general yocto test script
yocto-test-scripts
into
kirkstone
Overview
1
Commits
1
Pipelines
1
Changes
1
Merged
Jonas Höppner
requested to merge
yocto-test-scripts
into
kirkstone
1 year ago
Overview
1
Commits
1
Pipelines
1
Changes
1
Expand
BCS 746-001397
0
0
Merge request reports
Compare
kirkstone
kirkstone (base)
and
latest version
latest version
decca0e3
1 commit,
1 year ago
1 file
+
29
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
recipes-test/seco-yocto-testsuite/seco-yocto-testsuite.bb
0 → 100644
+
29
−
0
Options
SUMMARY = "SECO Yocto test suite"
DESCRITPTION = "Collection of scripts and small programms for various feature tests"
HOMEPAGE = "https://git.seco.com/seco-ne/tools/yocto-test-suite"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
SRCREV = "${AUTOREV}"
SRC_URI = " \
git://git.seco.com/seco-ne/tools/yocto-test-suite.git;protocol=https;branch=main;nobranch=1 \
"
# Create a <tag>-<number of commits since tag>-<hash> Version string
inherit gitpkgv
PKGV = "${GITPKGVTAG}"
do_install () {
make install
mkdir -p ${D}/opt/yocto-testsuite
cp -rv out/* ${D}/opt/yocto-testsuite
}
FILES:${PN} = " \
/opt/yocto-testsuite/* \
"
Loading