mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-08-22 16:53:53 +08:00
9 lines
146 B
Bash
Executable File
9 lines
146 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Skip unless this is a booted systemd system.
|
|
if [ ! -d /run/systemd/system ]; then
|
|
exit 0
|
|
fi
|
|
|
|
sudo mount -o ro,remount / || true
|