Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3210cac
ossystems-factory-defaults: Update classes and recipes
lucianogdittgen Jun 9, 2026
63c2c51
release-bundle: Update class and recipe
lucianogdittgen Jun 9, 2026
4cf4eee
chromium-ozone-wayland-init: Update to 1.0
lucianogdittgen Jun 9, 2026
dc0b774
dnsmasq: Align recipe with current OE-Core defaults
lucianogdittgen Jun 9, 2026
26ea63d
qt-kiosk-browser: Update init recipe and metadata
lucianogdittgen Jun 9, 2026
1670cf6
cog-init: Update to 1.0
lucianogdittgen Jun 9, 2026
daf3e6b
ppp: Restrict overrides to oel distro
lucianogdittgen Jun 9, 2026
e44a100
easysplash: Use SRCPV in PV
lucianogdittgen Jun 10, 2026
d24b4cd
easysplash: Use hyphenated class name
lucianogdittgen Jun 10, 2026
f9da71c
images: Complete metadata and refine initramfs recipes
lucianogdittgen Jun 9, 2026
7488743
initramfs-framework-psplash: Complete metadata and use local license
lucianogdittgen Jun 9, 2026
a15070d
html5-demo: Complete metadata and use local license
lucianogdittgen Jun 9, 2026
7924455
telegraf: Upgrade 1.14.5 -> 1.38.4
lucianogdittgen Jun 9, 2026
9b617e6
zram-init: Upgrade git -> 13.2
lucianogdittgen Jun 9, 2026
7ebe66c
weston-touch-calibrator-service: Update to 1.0
lucianogdittgen Jun 9, 2026
31b483e
beep: Upgrade 1.2.2 -> 1.4.12
lucianogdittgen Jun 9, 2026
8d695c0
gstreamer: Restrict overrides to oel distro
lucianogdittgen Jun 9, 2026
ff821d5
inputattach-config: Update to 1.0
lucianogdittgen Jun 9, 2026
559ab04
linuxconsole: Upgrade 1.7.0 -> 1.8.1
lucianogdittgen Jun 9, 2026
3ee4c51
weston: Restrict overrides to oel distro
lucianogdittgen Jun 9, 2026
f9ad396
wifi-connect: Upgrade 4.11.3 -> 4.11.84
lucianogdittgen Jun 9, 2026
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
3 changes: 2 additions & 1 deletion classes/ossystems-factory-defaults.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

inherit ossystems-factory-defaults-base

member[doc] = "Return success if the first argument is present in the remaining arguments."
member() {
elt=$1
shift
Expand Down Expand Up @@ -65,7 +66,7 @@ do_install:append() {
local dir
for file in $no_leading_slash; do
dir="${D}/`dirname $file`"
mkdir -p $dir
install -d $dir
cd $dir
ln -sf ${OSSYSTEMS_FACTORY_DEFAULTS_RUNTIME_DIR}/$file `basename $file`
done
Expand Down
34 changes: 17 additions & 17 deletions classes/release-bundle-generation.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ do_configure[noexec] = "1"
do_compile[noexec] = "1"
do_install[noexec] = "1"
do_populate_sysroot[noexec] = "1"
do_packagedata[noexec] = "1"
do_package[noexec] = "1"
do_package_qa[noexec] = "1"
do_packagedata[noexec] = "1"

LICENSE = "MIT"
SRC_URI = "file://bundle-shar-extract.sh"

PACKAGES = ""

INHIBIT_DEFAULT_DEPS = "1"
Expand All @@ -35,25 +36,18 @@ RELEASE_BUNDLE_VERSION ?= "${DISTRO_VERSION}"

RELEASE_BUNDLE_DEPLOY = "${DEPLOY_DIR}/release-bundle"
RELEASE_BUNDLE_WORKDIR = "${TMPDIR}/release-bundle/workdir"
RELEASE_BUNDLE_TMP_DOWNLOAD_CACHE ?= "${TMPDIR}/release-bundle/download-cache"
RELEASE_BUNDLE_OUTPUTNAME ?= "${RELEASE_BUNDLE_NAME}-release-${RELEASE_BUNDLE_VERSION}"
RELEASE_BUNDLE_RECIPES_WITH_SOURCE ?= ""

SRC_URI = "file://bundle-shar-extract.sh"

python() {
recipes = d.getVar('RELEASE_BUNDLE_RECIPES_WITH_SOURCE', True).split()
d.appendVarFlag('do_release_bundle_finalize',
'depends',
" ".join(map(lambda x:
x + ":do_collect_recipe_source",
recipes)))

d.delVarFlag('do_build', 'recrdeptask')
d.delVarFlag('do_build', 'depends')
}
do_build[depends] = ""
do_build[recrdeptask] = ""
do_release_bundle_finalize[depends] += "${@' '.join('%s:do_collect_recipe_source' % recipe for recipe in d.getVar('RELEASE_BUNDLE_RECIPES_WITH_SOURCE').split())}"

addtask collect_platform_source before do_release_bundle_finalize
do_collect_platform_source[cleandirs] = "${RELEASE_BUNDLE_WORKDIR}"
do_collect_platform_source[depends] += "repo-native:do_populate_sysroot "
do_collect_platform_source[doc] = "Collect platform repositories into the release bundle work directory."
do_collect_platform_source[nostamp] = "1"
do_collect_platform_source() {
cd "${PLATFORM_ROOT_DIR}"
Expand All @@ -77,6 +71,7 @@ RELEASE_BUNDLE_TAR_OPTS = "--owner=root --group=root"
RELEASE_BUNDLE_OLDEST_KERNEL = "3.2.0"
RELEASE_BUNDLE_PATH = "\$HOME/src/${RELEASE_BUNDLE_NAME}/${RELEASE_BUNDLE_VERSION}"

tar_release_bundle[doc] = "Create the compressed release bundle archive."
fakeroot tar_release_bundle() {
mkdir -p ${RELEASE_BUNDLE_DEPLOY}
cd ${RELEASE_BUNDLE_WORKDIR}
Expand All @@ -86,13 +81,18 @@ fakeroot tar_release_bundle() {
addtask release_bundle_finalize after do_unpack do_collect_platform_source before do_build
do_release_bundle_finalize[dirs] = "${RELEASE_BUNDLE_WORKDIR}/download"
do_release_bundle_finalize[depends] += "pbzip2-native:do_populate_sysroot "
do_release_bundle_finalize[doc] = "Finalize and emit the self-extracting release bundle."
do_release_bundle_finalize() {
cp --archive -L ${RELEASE_BUNDLE_TMP_DOWNLOAD_CACHE}/*/* ${RELEASE_BUNDLE_WORKDIR}/
for bundle_dir in ${RELEASE_BUNDLE_TMP_DOWNLOAD_CACHE}/*/*; do
[ -e "$bundle_dir" ] || continue
cp --archive -L "$bundle_dir" ${RELEASE_BUNDLE_WORKDIR}/
done

find ${RELEASE_BUNDLE_WORKDIR} -type d -empty -delete

tar_release_bundle

cp "${WORKDIR}/bundle-shar-extract.sh" ${RELEASE_BUNDLE_DEPLOY}/${RELEASE_BUNDLE_OUTPUTNAME}.sh
cp "${UNPACKDIR}/bundle-shar-extract.sh" ${RELEASE_BUNDLE_DEPLOY}/${RELEASE_BUNDLE_OUTPUTNAME}.sh

# substitute variables
sed -e "s#@RELEASE_BUNDLE_PATH@#${RELEASE_BUNDLE_PATH}#g" \
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

MIT License

Copyright (c) <year> <copyright holders>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Original file line number Diff line number Diff line change
@@ -1,19 +1,26 @@
SUMMARY = "Startup script and service for the Chromium Browser using Ozone"
DESCRIPTION = "Installs init scripts, systemd unit files, and default configuration for launching Chromium Ozone Wayland."
HOMEPAGE = "https://www.chromium.org"
BUGTRACKER = "https://issues.chromium.org/issues"
SECTION = "graphics"
CVE_PRODUCT = "chromium"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
LIC_FILES_CHKSUM = "file://COPYING.MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

SRC_URI = "\
file://COPYING.MIT \
file://${BPN}.default \
file://${BPN}.initd \
file://${BPN}.service \
"
S = "${UNPACKDIR}"

inherit systemd update-rc.d

## Configuration variables

# URL to load when start.
CHROMIUM_URL ?= "https://ossystems.com.br"
CHROMIUM_URL ?= "https://ossystems.com.br"

# Extra arguments to pass to 'chromium' application.
CHROMIUM_EXTRA_ARGS ?= ""
Expand All @@ -34,13 +41,13 @@ do_compile[noexec] = "1"

do_install() {
if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)}; then
install -Dm 0755 ${WORKDIR}/${BPN}.initd ${D}${sysconfdir}/init.d/chromium-ozone-wayland
install -Dm 0755 ${UNPACKDIR}/${BPN}.initd ${D}${sysconfdir}/init.d/chromium-ozone-wayland
fi
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
install -Dm 0644 ${WORKDIR}/${BPN}.service ${D}${systemd_system_unitdir}/chromium-ozone-wayland.service
install -Dm 0644 ${UNPACKDIR}/${BPN}.service ${D}${systemd_system_unitdir}/chromium-ozone-wayland.service
fi

install -Dm 0644 ${WORKDIR}/${BPN}.default ${D}${sysconfdir}/default/chromium-ozone-wayland
install -Dm 0644 ${UNPACKDIR}/${BPN}.default ${D}${sysconfdir}/default/chromium-ozone-wayland

echo ${CHROMIUM_ENV} >> ${D}${sysconfdir}/default/chromium-ozone-wayland

Expand All @@ -49,6 +56,6 @@ do_install() {
-i ${D}${sysconfdir}/default/chromium-ozone-wayland
}

RDEPENDS:${PN} += "chromium-ozone-wayland"

PACKAGE_ARCH = "${MACHINE_ARCH}"

RDEPENDS:${PN} += "chromium-ozone-wayland"
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
# Upstream is dual licensed on GPLv2 | GPLv3, so force GPLv2 in order
# to allow safe checks via image-license-checker
LICENSE = "GPL-2.0-only"

# Disabled by default to avoid conflicts with NM/systemd
SYSTEMD_AUTO_ENABLE = "disable"
SYSTEMD_AUTO_ENABLE:oel = "disable"
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

MIT License

Copyright (c) <year> <copyright holders>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
SUMMARY = "Startup script and service for the Kiosk Browser"
DESCRIPTION = "Installs init scripts, systemd unit files, and default configuration for launching Qt Kiosk Browser."
HOMEPAGE = "https://github.com/OSSystems/qt-kiosk-browser"
BUGTRACKER = "https://github.com/OSSystems/qt-kiosk-browser/issues"
SECTION = "graphics"
CVE_PRODUCT = "qt-kiosk-browser"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
LIC_FILES_CHKSUM = "file://COPYING.MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

SRC_URI = " \
SRC_URI = "\
file://COPYING.MIT \
file://${BPN}.default \
file://${BPN}.initd \
file://${BPN}.service \
file://${BPN}.conf \
"
S = "${UNPACKDIR}"

inherit systemd update-rc.d

Expand All @@ -21,7 +28,6 @@ QT_KIOSK_SCREENSAVER_TIME ?= "0"
# Defines the time to restart the browser after entering in screen saving mode (0 to disable).
QT_KIOSK_RESTART_TIME ?= "0"


SYSTEMD_SERVICE:${PN} = "qt-kiosk-browser.service"

# Start after weston-init
Expand All @@ -34,22 +40,22 @@ INITSCRIPT_NAME = "qt-kiosk-browser"

do_install() {
if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)}; then
install -Dm 0755 ${WORKDIR}/${PN}.initd ${D}${sysconfdir}/init.d/kiosk
install -Dm 0755 ${UNPACKDIR}/${PN}.initd ${D}${sysconfdir}/init.d/kiosk
fi
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
install -Dm 0644 ${WORKDIR}/${PN}.service ${D}${systemd_system_unitdir}/qt-kiosk-browser.service
install -Dm 0644 ${UNPACKDIR}/${PN}.service ${D}${systemd_system_unitdir}/qt-kiosk-browser.service
fi

install -Dm 0644 ${WORKDIR}/${PN}.default ${D}${sysconfdir}/default/qt-kiosk-browser
install -Dm 0644 ${UNPACKDIR}/${PN}.default ${D}${sysconfdir}/default/qt-kiosk-browser

install -Dm 0644 ${WORKDIR}/${PN}.conf ${D}${sysconfdir}/qt-kiosk-browser.conf
install -Dm 0644 ${UNPACKDIR}/${PN}.conf ${D}${sysconfdir}/qt-kiosk-browser.conf

sed -e 's,@QT_KIOSK_URL@,${QT_KIOSK_URL},g' \
-e 's,@QT_KIOSK_RESTART_TIME@,${QT_KIOSK_RESTART_TIME},g' \
-e 's,@QT_KIOSK_SCREENSAVER_TIME@,${QT_KIOSK_SCREENSAVER_TIME},g' \
-i ${D}${sysconfdir}/qt-kiosk-browser.conf
}

RDEPENDS:${PN} += "qt-kiosk-browser"

PACKAGE_ARCH = "${MACHINE_ARCH}"

RDEPENDS:${PN} += "qt-kiosk-browser"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
FILESEXTRAPATHS:prepend:oel := "${THISDIR}/${PN}:"

#The default config file is removed to allow the generation of a new one with the proper parameters
do_install:append() {
do_install:append:oel() {
rm ${D}${sysconfdir}/${PN}.conf
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
SUMMARY = "Startup script and service for the Cog Browser"
DESCRIPTION = "Installs init scripts, systemd unit files, and default configuration for launching Cog."
HOMEPAGE = "https://wpewebkit.org"
BUGTRACKER = "https://github.com/Igalia/cog/issues"
SECTION = "graphics"
CVE_PRODUCT = "cog"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
LIC_FILES_CHKSUM = "file://COPYING.MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

SRC_URI = "\
file://COPYING.MIT \
file://${BPN}.default \
file://${BPN}.initd \
file://${BPN}.service \
"
S = "${UNPACKDIR}"

inherit systemd update-rc.d

Expand All @@ -20,7 +27,7 @@ COG_PLATFORM ?= "wl"
COG_PLATFORM_WL_VIEW_FULLSCREEN ?= "1"

# URL to load when start.
COG_URL ?= "https://ossystems.com.br"
COG_URL ?= "https://ossystems.com.br"

# Extra arguments to pass to 'cog' application.
COG_EXTRA_ARGS ?= ""
Expand Down Expand Up @@ -58,6 +65,6 @@ do_install() {
-i ${D}${sysconfdir}/default/cog
}

RDEPENDS:${PN} += "cog"

PACKAGE_ARCH = "${MACHINE_ARCH}"

RDEPENDS:${PN} += "cog"
23 changes: 23 additions & 0 deletions recipes-browser/cog/files/COPYING.MIT
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

MIT License

Copyright (c) <year> <copyright holders>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

8 changes: 4 additions & 4 deletions recipes-connectivity/ppp/ppp_%.bbappend
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
FILESEXTRAPATHS:prepend:oel := "${THISDIR}/files:"

SRC_URI += "file://options"
SRC_URI:append:oel = " file://options"

do_install:append() {
install -Dm 0755 ${WORKDIR}/options ${D}${sysconfdir}/${PN}/options
do_install:append:oel() {
install -Dm 0755 ${UNPACKDIR}/options ${D}${sysconfdir}/${PN}/options
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LICENSE = "CLOSED"

require easysplash-common-2.0.inc

inherit easysplash_animation
inherit easysplash-animation

do_configure[noexec] = "1"
do_compile[noexec] = "1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LICENSE = "CLOSED"

require easysplash-common-2.0.inc

inherit easysplash_animation
inherit easysplash-animation

do_configure[noexec] = "1"
do_compile[noexec] = "1"
Expand Down
2 changes: 1 addition & 1 deletion recipes-core/easysplash/easysplash_2.0.0.bb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ inherit cargo pkgconfig systemd update-rc.d cargo-update-recipe-crates
# DEFAULT_PREFERENCE = "-1"

CARGO_SRC_DIR = ""
PV .= ".AUTOINC+724e1c7edc"
PV .= "+git${SRCPV}"

INITSCRIPT_NAME = "${PN}-start"
INITSCRIPT_PARAMS:${PN} = "start 5 S ."
Expand Down
Loading