Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
BuffyBox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
postmarketOS
BuffyBox
Commits
edf612ad
Commit
edf612ad
authored
5 months ago
by
Colin
Committed by
Johannes Marbach
5 months ago
Browse files
Options
Downloads
Patches
Plain Diff
add buffyboard systemd service
parent
634af596
No related branches found
No related tags found
1 merge request
!34
add buffyboard systemd service
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
buffyboard/buffyboard.service.in
+38
-0
38 additions, 0 deletions
buffyboard/buffyboard.service.in
buffyboard/meson.build
+17
-0
17 additions, 0 deletions
buffyboard/meson.build
meson_options.txt
+1
-0
1 addition, 0 deletions
meson_options.txt
with
57 additions
and
0 deletions
CHANGELOG.md
+
1
−
0
View file @
edf612ad
...
...
@@ -17,6 +17,7 @@ If a change only affects particular applications, they are listed in parentheses
-
fix: Prevent logging internal LVGL errors to stdout
-
misc: Make scdoc a native dependency to enable cross-compilation (!30, thanks @uninsane)
-
fix: Use usleep to release CPU when possible (!31, thanks @uninsane)
-
feat(buffyboard): Add a buffyboard.service systemd service (!34, @uninsane)
## 3.2.0 (2024-06-03)
...
...
This diff is collapsed.
Click to expand it.
buffyboard/buffyboard.service.in
0 → 100644
+
38
−
0
View file @
edf612ad
[Unit]
Documentation=https://gitlab.postmarketos.org/postmarketOS/buffybox
[Service]
ExecStart=@bindir@/buffyboard
Restart=on-failure
# Allow access to input devices, framebuffer, tty
DevicePolicy=closed
DeviceAllow=/dev/uinput rw
DeviceAllow=char-fb rw
DeviceAllow=char-input rw
DeviceAllow=char-tty rw
# udev requires some limited networking
RestrictAddressFamilies=AF_NETLINK
# Hardening
CapabilityBoundingSet=
NoNewPrivileges=true
RestrictSUIDSGID=true
PrivateMounts=true
PrivateTmp=true
PrivateUsers=true
ProtectClock=true
ProtectControlGroups=true
ProtectHome=true
ProtectHostname=true
ProtectKernelLogs=true
ProtectKernelModules=true
ProtectKernelTunables=true
ProtectSystem=strict
RemoveIPC=true
LockPersonality=true
MemoryDenyWriteExecute=true
SystemCallArchitectures=native
SystemCallFilter=@system-service
SystemCallFilter=~@privileged
SystemCallFilter=~@resources
This diff is collapsed.
Click to expand it.
buffyboard/meson.build
+
17
−
0
View file @
edf612ad
...
...
@@ -24,3 +24,20 @@ executable('buffyboard',
install_data
(
'buffyboard.conf'
,
install_dir
:
get_option
(
'sysconfdir'
))
systemd
=
dependency
(
'systemd'
,
required
:
get_option
(
'systemd-buffyboard-service'
))
if
systemd
.
found
()
system_unit_dir
=
systemd
.
get_variable
(
pkgconfig
:
'systemd_system_unit_dir'
,
pkgconfig_define
:
[
'prefix'
,
get_option
(
'prefix'
)],
)
configure_file
(
input
:
'buffyboard.service.in'
,
output
:
'buffyboard.service'
,
install
:
true
,
install_dir
:
system_unit_dir
,
configuration
:
{
'bindir'
:
get_option
(
'prefix'
)
/
get_option
(
'bindir'
),
},
)
endif
This diff is collapsed.
Click to expand it.
meson_options.txt
+
1
−
0
View file @
edf612ad
option
(
'with-drm'
,
type
:
'feature'
,
value
:
'auto'
,
description
:
'Enable DRM backend'
)
option
(
'man'
,
type
:
'boolean'
,
value
:
true
,
description
:
'Install manual pages'
)
option
(
'systemd-buffyboard-service'
,
type
:
'feature'
,
value
:
'auto'
,
description
:
'Install systemd service file for buffyboard'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment