Skip to content

Commit

Permalink
fix some typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfdelnero committed Dec 6, 2021
1 parent 12ce980 commit f5aa119
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ The uMTP-Responder allows files to be transferred to and from devices through th

- Up to 16 storage instances supported.

- Storages mount / unmount.
- Storage mount / unmount.

- Storages lock / unlock.
- Storage lock / unlock.

- GadgetFS and FunctionFS/libcomposite modes supported.

Expand Down Expand Up @@ -123,23 +123,23 @@ Once you have configured the correct settings in umtprd.conf, you can use umtprd

## Runtime operations

uMTP-Responder supports dynamic commands to add/mount/umount/remove storages and lock/unlock storages.
uMTP-Responder supports dynamic commands to add/mount/umount/remove storage and lock/unlock storage.

Examples:

Unlock all locked storages (set with the 'locked' option in the configuration file) :
Unlock all locked storage (set with the 'locked' option in the configuration file) :

```c
umtprd -cmd:unlock
```

Lock all lockable storages (set with the 'locked' option in the configuration file) :
Lock all lockable storage (set with the 'locked' option in the configuration file) :

```c
umtprd -cmd:lock
```

"addstorage"/"rmstorage" commands to dynamically add/remove storages :
"addstorage"/"rmstorage" commands to dynamically add/remove storage :

```c
umtprd '-cmd:addstorage:/tmp Tmp rw'
Expand All @@ -159,7 +159,7 @@ umtprd '-cmd:addstorage:/path "My Path" rw,removable'
umtprd '-cmd:rmstorage:"My Path"'
```

"mount"/"unmount" commands to dynamically mount/unmount storages.
"mount"/"unmount" commands to dynamically mount/unmount storage.

```c
umtprd '-cmd:mount:"Storage name"'
Expand Down
12 changes: 6 additions & 6 deletions Release-notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,27 @@
Noteworthy changes in release v1.5.1 (2021-Dec-6)
=================================================

* Storages : new flags and modes :
* Storage : new flags and modes :

* "locked" flag support.

* "removable" flag support.

* New dynamic/runtime commands (umtprd -cmd:COMMAND) :

* "lock"/"unlock" commands to dynamically lock/unlock lockable storages.
* "lock"/"unlock" commands to dynamically lock/unlock lockable storage.

Examples:

# unlock all locked storages (set with the 'locked' option in the configuration file) :
# unlock all locked storage (set with the 'locked' option in the configuration file) :

umtprd -cmd:unlock

# lock all lockable storages (set with the 'locked' option in the configuration file) :
# lock all lockable storage (set with the 'locked' option in the configuration file) :

umtprd -cmd:lock

* "addstorage"/"rmstorage" commands to dynamically add/remove storages.
* "addstorage"/"rmstorage" commands to dynamically add/remove storage.

Examples:

Expand All @@ -55,7 +55,7 @@ Noteworthy changes in release v1.5.1 (2021-Dec-6)

* Many fixes and improvements :

* Fix inotify for root folders when using multiple storages.
* Fix inotify for root folders when using multiple storage.

* Add guard to avoid storage from being added twice.

Expand Down

0 comments on commit f5aa119

Please sign in to comment.