Skip to content
Snippets Groups Projects
Commit ea2cdb34 authored by Bernhard Rosenkränzer's avatar Bernhard Rosenkränzer
Browse files

oniro-mounts: Deal with /data for OpenHarmony


OpenHarmony needs a writable /data directory. Create it by bind-mounting
a subdirectory of /run/mount/appdata if the openharmony
DISTRO_FEATURE is set.

Signed-off-by: default avatarBernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
parent 015d1e54
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,9 @@ SRC_URI = " \
file://run-mount-sysdata.mount \
file://oniro-homes.conf.tmpfiles \
"
SRC_URI:df-openharmony += " \
file://data.mount \
"
REQUIRED_DISTRO_FEATURES ?= "systemd"
......@@ -31,6 +34,9 @@ SYSTEMD_SERVICE:${PN} = " \
run-mount-devdata.mount \
run-mount-appdata.mount \
"
SYSTEMD_SERVICE:${PN}:df-openharmony += " \
data.mount \
"
SYSTEMD_AUTO_ENABLE = "enable"
LABELS = " \
......@@ -50,5 +56,8 @@ do_install () {
install -D "${WORKDIR}/oniro-homes.conf.tmpfiles" \
"${D}${sysconfdir}/tmpfiles.d/oniro-homes.conf"
}
do_install:append:df-openharmony () {
install -m 0644 "${WORKDIR}/data.mount" "${D}${systemd_unitdir}/system"
}
FILES:${PN} += "${systemd_unitdir}"
# SPDX-FileCopyrightText: Huawei Inc.
#
# SPDX-License-Identifier: Apache-2.0
[Unit]
Description=data mount - openharmony
Before=sysinit.target
Requires=run-mount-appdata.mount
After=run-mount-appdata.mount
[Mount]
What=/run/mount/appdata/openharmony
Where=/data
Options=bind
[Install]
WantedBy=sysinit.target
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment