mirror of
https://github.com/systemd/systemd.git
synced 2024-12-11 19:23:37 +08:00
tests: fix failure of test-execute if /dev/mem is not available (#5028)
/dev/mem isn't necessarily available. Recently, I've encountered arm64 systems that didn't provide raw memory access via /dev/mem. Instead, let's use /dev/kmsg since we don't support systems w/o it anyway.
This commit is contained in:
parent
9938165522
commit
01349f5d01
@ -2,6 +2,6 @@
|
||||
Description=Test for PrivateDev=no
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/sh -x -c 'test -c /dev/mem'
|
||||
ExecStart=/bin/sh -x -c 'test -c /dev/kmsg'
|
||||
Type=oneshot
|
||||
PrivateDevices=no
|
||||
|
@ -2,6 +2,6 @@
|
||||
Description=Test for PrivateDev=yes
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/sh -c 'test ! -c /dev/mem'
|
||||
ExecStart=/bin/sh -c 'test ! -c /dev/kmsg'
|
||||
Type=oneshot
|
||||
PrivateDevices=yes
|
||||
|
Loading…
Reference in New Issue
Block a user