diff options
author | INSUN PYO <insun.pyo@samsung.com> | 2021-03-10 12:20:36 +0900 |
---|---|---|
committer | INSUN PYO <insun.pyo@samsung.com> | 2021-03-10 12:21:03 +0900 |
commit | de22fc7daa0323672439c6df89de4cabdd6fb772 (patch) | |
tree | b84394aac75a856fd887c1a5a6f4d2b63e0eb41a | |
parent | fe739d894ee202a55f830a54c93357d0c993780a (diff) | |
download | system-plugin-de22fc7daa0323672439c6df89de4cabdd6fb772.tar.gz system-plugin-de22fc7daa0323672439c6df89de4cabdd6fb772.tar.bz2 system-plugin-de22fc7daa0323672439c6df89de4cabdd6fb772.zip |
Remove "Type=ext4" option in opt-usr.mount to support f2fs filesystemsubmit/tizen/20210310.051909accepted/tizen/unified/20210310.144837
The "Type=" option in opt-usr.mount should not be specified,
because tizen uses "ext4" or "f2fs" filesystem for each target.
If there is no "Type=" option in the mount unit,
systemd automatically detects it when mounting.
Reference.
- https://www.freedesktop.org/software/systemd/man/systemd.mount.html
- Type= : Takes a string for the file system type. See mount(8) for details. This setting is optional
Change-Id: I4127b6534c2d593a24d3cc3727a83b7101ad3740
-rw-r--r-- | units/opt-usr.mount | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/units/opt-usr.mount b/units/opt-usr.mount index 9895bf8..58ed14a 100644 --- a/units/opt-usr.mount +++ b/units/opt-usr.mount @@ -7,5 +7,5 @@ Before=local-fs.target wait-mount@opt-usr.service [Mount] What=/dev/disk/by-label/user -Type=ext4 +#Type=ext4 Where=/opt/usr |