Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DESCRIPTION = "Alternative implementation of the GitHub Action runner protocol w
GO_IMPORT = "github.com/ChristopherHX/github-act-runner"

SRC_URI = " \
git://${GO_IMPORT};branch=main;protocol=https;destsuffix=${BPN}-${PV}/src/${GO_IMPORT} \
git://${GO_IMPORT};branch=${SRCBRANCH};protocol=https;destsuffix=${BPN}-${PV}/src/${GO_IMPORT} \
file://github-act-runner.service \
"

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require github-act-runner.inc

# Git tag v0.12.0 pointing at a commit from 2025-09-12 15:58:57 +0000
SRCBRANCH = "main"
SRCREV = "1636dd12fe3f21f235a673aef773eaf2853b6ce2"
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ DESCRIPTION = "The Runner for GitLab Pipelines"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

SRC_URI:append = " file://gitlab-runner.service "

GO_IMPORT = "gitlab.com/gitlab-org/gitlab-runner"
GO_INSTALL = "${GO_IMPORT}"

SRC_URI = " \
git://${GO_IMPORT};branch=${SRCBRANCH};protocol=https;destsuffix=${BPN}-${PV}/src/${GO_IMPORT} \
file://gitlab-runner.service \
"

RDEPENDS:${PN}:append = "git"
RDEPENDS:gitlab-runner-dev = "bash"

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require gitlab-runner.inc

# Git tag v18.3.1 pointing at a commit from 2025-09-04 15:24:16 +0000
SRCBRANCH = "18-3-stable"
SRCREV = "5a021a1c14edadc683ee4b1f0a00182ec3ee636a"
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SUMMARY = "Qualcomm DownLoader flashing tool"
DESCRIPTION = "Communicate with Qualcomm SoCs to upload new software or \
dump memory"
HOMEPAGE = "https://github.com/linux-msm/qdl.git"
HOMEPAGE = "https://github.com/linux-msm/qdl"
SECTION = "devel"

LICENSE = "BSD-3-Clause"
Expand All @@ -11,10 +11,7 @@ DEPENDS = "libxml2 libusb1"

inherit pkgconfig

SRCREV = "5db7794e9fdb73ed0c45384026cd8a62b5fff786"
SRC_URI = "git://github.com/linux-msm/${BPN}.git;branch=master;protocol=https"

PV = "2.1+${SRCREV}"
SRC_URI = "git://github.com/linux-msm/${BPN}.git;branch=${SRCBRANCH};protocol=https"

S = "${WORKDIR}/git"

Expand Down
5 changes: 5 additions & 0 deletions meta-lxatac-software/recipes-devtools/qdl/qdl_2.2.bb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require qdl.inc

# Git tag v2.2 pointing at a commit from 2025-09-08 14:16:39 -0500
SRCBRANCH = "master"
SRCREV = "a601db1868bcda454a77b6769ca9efac3b0a114c"
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@ SECTION = "devel"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://license.txt;md5=ea9445d9cc03d508cf6bb769d15a54ef"

SRC_URI = "git://github.com/rockchip-linux/rkdeveloptool.git;protocol=https;branch=master \
SRC_URI = "git://github.com/rockchip-linux/rkdeveloptool.git;protocol=https;branch=${SRCBRANCH} \
file://0001-Makefile-disable-format-truncation-errors.patch \
"

SRCREV = "46bb4c073624226c3f05b37b9ecc50bbcf543f5a"

S = "${WORKDIR}/git"

DEPENDS = "libusb1 udev"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require rkdeveloptool.inc

# Commit 304f073752fd25c854e1bcf05d8e7f925b1f4e14 created 2025-03-07 15:34:30 +0800
SRCBRANCH = "master"
SRCREV = "304f073752fd25c854e1bcf05d8e7f925b1f4e14"
436 changes: 436 additions & 0 deletions meta-lxatac-software/recipes-rust/bottom/bottom-crates.inc

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions meta-lxatac-software/recipes-rust/bottom/bottom.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
inherit cargo cargo-update-recipe-crates

SRC_URI += "git://github.com/ClementTsang/bottom.git;protocol=https;branch=${SRCBRANCH}"
S = "${WORKDIR}/git"
CARGO_SRC_DIR = ""

# The bottom Cargo.toml strips release builds, why makes it hard to debug.
# Yocto has its own stripping feature, that preserves the debug symbols but
# only installs the stripped version.
# Pre-stripped binaries trigger a yocto QA error.
CARGO_BUILD_FLAGS += "--config profile.release.strip=false"

LIC_FILES_CHKSUM = " \
file://LICENSE;md5=5d45cffa3a75da17d285cc60c0c458cc \
"

SUMMARY = "A customizable cross-platform graphical process/system monitor for the terminal. Supports Linux, macOS, and Windows."
HOMEPAGE = "https://github.com/ClementTsang/bottom"
LICENSE = "MIT"

require bottom-crates.inc
Loading