From 49a2d124890b96d28a590e52e6d0dd611c114f6b Mon Sep 17 00:00:00 2001 From: stu westerman Date: Mon, 5 May 2025 15:58:49 -0500 Subject: [PATCH] raspi-utils: add the following utilities * dtmerge * eeptools * otpset * overlaycheck * ovmerge * raspinfo * vcgencmd * vclog * vcmailbox Signed-off-by: stu westerman --- .../raspi-utils/raspi-utils_git.bb | 35 +++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/recipes-devtools/raspi-utils/raspi-utils_git.bb b/recipes-devtools/raspi-utils/raspi-utils_git.bb index 8b979a4..77ff2c3 100644 --- a/recipes-devtools/raspi-utils/raspi-utils_git.bb +++ b/recipes-devtools/raspi-utils/raspi-utils_git.bb @@ -2,7 +2,12 @@ SUMMARY = "A collection of scripts and simple applications" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENCE;md5=4c01239e5c3a3d133858dedacdbca63c" +RCONFLICTS:${PN} = "userland" DEPENDS:append = " dtc" +PACKAGES =+ " ${PN}-raspinfo" +PACKAGES =+ " ${PN}-ovmerge" +RDEPENDS:${PN}-raspinfo += " bash" +RDEPENDS:${PN}-ovmerge += " perl" PV = "1.0+git" @@ -14,9 +19,35 @@ S = "${WORKDIR}/git" FILES:${PN}:append = " \ ${datadir}/bash-completion/completions/pinctrl \ + ${datadir}/bash-completion/completions/vcgencmd \ +" +FILES:${PN}-raspinfo += "${bindir}/raspinfo" +FILES:${PN}-ovmerge += "${bindir}/ovmerge" + +OECMAKE_TARGET_COMPILE = "\ + dtmerge/all \ + eeptools/all \ + otpset/all \ + overlaycheck/all \ + ovmerge/all \ + pinctrl/all \ + raspinfo/all \ + vcgencmd/all \ + vclog/all \ + vcmailbox/all \ " -OECMAKE_TARGET_COMPILE = "pinctrl/all dtmerge/all" -OECMAKE_TARGET_INSTALL = "pinctrl/install dtmerge/install" +OECMAKE_TARGET_INSTALL = "\ + dtmerge/install \ + eeptools/install \ + otpset/install \ + overlaycheck/install \ + ovmerge/install \ + pinctrl/install \ + raspinfo/install \ + vcgencmd/install \ + vclog/install \ + vcmailbox/install \ +" inherit cmake