Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scarthgap reloaded #3584

Open
wants to merge 41 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
bdf198e
meta-balena-scarthgap: Add integration layer
jakogut Mar 29, 2024
ebe1b93
fatrw: add checksums
jakogut Apr 1, 2024
1a898e7
healthdog: add checksums
jakogut Apr 1, 2024
26a95d6
bindmount: add checksums
jakogut Apr 1, 2024
3b47ff0
os-config: add checksums
jakogut Apr 2, 2024
f2eb6f6
scarthgap: busybox: fix QA issue in patch
jakogut Apr 1, 2024
75860ee
common: adjust bmaptool name for scarthgap
jakogut Apr 1, 2024
d4572a3
meta-balena-rust: add scarthgap to LAYERSERIES_COMPAT
jakogut Apr 1, 2024
ea59ab5
meta-balena-common: add scarthgap to LAYERSERIES_COMPAT
jakogut Apr 1, 2024
6c2df46
common: peak: prepare for merged usr
jakogut Apr 4, 2024
ab022c6
common: base-files: prepare for merged usr
jakogut Apr 2, 2024
3326cee
common: libnss-ato: prepare for merged usr
jakogut Apr 2, 2024
fd8707e
common: balena-engine: prepare for merged usr
jakogut Apr 3, 2024
7e80fe4
common: usb-modeswitch: prepare for merged usr
jakogut Apr 3, 2024
aeef29d
common: usb-modeswitch-data: prepare for merged usr
jakogut Apr 4, 2024
710a161
common: systemd: prepare for merged usr
jakogut Apr 2, 2024
041533d
scarthgap: linux-firmware: prepare for merged usr
jakogut Apr 3, 2024
bf3953d
scarthgap: enable usrmerge distro feature
jakogut Apr 1, 2024
81db3ea
common: bluez: bump from 5.66 to 5.72
jakogut Apr 3, 2024
5af6eef
resin-sanity: get datastore from event
jakogut Apr 2, 2024
b5e4258
meta-balena-rust: add balena_ prefix to classes
jakogut Apr 2, 2024
e0980b4
rust: replace references to deprecated distutils module
jakogut Apr 2, 2024
cb39cfd
common: systemd: fix QA issue
jakogut Apr 3, 2024
4972fdf
common: networkmanager: fix postinst script failure
jakogut Apr 4, 2024
f553143
common: image_types: backport nanbield+ image output naming
jakogut Apr 9, 2024
0f4b241
openvpn: fix systemd-tmpfiles legacy path warning
jakogut May 2, 2024
c739e06
conf: set INIT_MANAGER to disable sysvinit scripts
jakogut May 2, 2024
3afb1a2
meta-balena-scarthgap: Remove preference for resolvconf version 1.91
floion Sep 30, 2024
ef3f6b0
meta-balena-scarthgap:resolvconf: Delete old 1.91 recipe
floion Oct 1, 2024
22cc306
meta-balena-scarthgap:volatile-binds: Remove unneeded changes
floion Oct 1, 2024
09c39e5
meta-balena-scarthgap:kernel-devsrc.bbappend: Remove unneeded file
floion Oct 1, 2024
9a396e3
recipes-kernel/linux-firmware: Use variable for packaging files
floion Dec 12, 2024
3e1fb9b
fatrw: switch to balena prefixed cargo and rust classes
floion Dec 17, 2024
4db2706
healthdog: switch to balena prefixed cargo and rust classes
floion Dec 17, 2024
63b27d1
os-config: Switch to balena prefixed cargo and rust classes
floion Dec 17, 2024
d4f3b44
bindmount: Switch to balena prefixed cargo and rust classes
floion Dec 17, 2024
3f10bf1
image-balena.bbclass: Do not include udev hardware database source fi…
floion Dec 17, 2024
99efab7
balena-os.inc: Remove image name suffix
floion Dec 17, 2024
bbd3cc8
plymouth: Fix build failure in Scarthgap
floion Dec 19, 2024
cc2ba3a
systemd: Remove udev hardware database source files cleanup hack
floion Dec 30, 2024
4df98c8
meta-balena-scarthgap:plymouth: Fix build issue of version 24.004.60 …
floion Dec 30, 2024
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
Prev Previous commit
Next Next commit
openvpn: fix systemd-tmpfiles legacy path warning
systemd-tmpfiles reports that /var/run is a legacy path, and updates it
to just /run

Update this configuration file to use the now preferred path to silence
this warning.

Change-type: patch
Signed-off-by: Joseph Kogut <[email protected]>
jakogut authored and floion committed Jan 10, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 0f4b24103418049a79d7214c0ab313c2cb5e7cc7
Original file line number Diff line number Diff line change
@@ -1 +1 @@
d @LOCALSTATEDIR@/run/openvpn 0755 root root -
d /run/openvpn 0755 root root -
Original file line number Diff line number Diff line change
@@ -58,7 +58,6 @@ do_install:append() {

install -d ${D}${sysconfdir}/tmpfiles.d
install -m 0644 ${WORKDIR}/openvpn-volatile.conf ${D}${sysconfdir}/tmpfiles.d/openvpn.conf
sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${sysconfdir}/tmpfiles.d/openvpn.conf
fi
}