Skip to content

Commit 630c11d

Browse files
committed
Merge pull request #1786 from pguyot/w31/fix-disterl-doc
Fix disterl documentation These changes are made under both the "Apache 2.0" and the "GNU Lesser General Public License 2.1 or later" license terms (dual license). SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
2 parents a36c4ef + 777e4d7 commit 630c11d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/distributed-erlang.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@ Two examples are provided:
2121

2222
## Starting and stopping distribution
2323

24-
Distribution has to be started programmatically. Following Erlang/OTP, distribution relies on `kernel` which needs to be started.
24+
Distribution has to be started programmatically. Following Erlang/OTP, distribution relies on `kernel` which is started by `init:boot/1`.
2525

2626
The following lines will start distribution on Unix systems with long name `[email protected]`.
2727

2828
```erlang
29-
{ok, _KernelPid} = kernel:start(normal, []),
3029
{ok, _NetKernelPid} = net_kernel:start('[email protected]', #{name_domain => longnames}),
3130
ok = net_kernel:set_cookie(<<"AtomVM">>).
3231
```
@@ -83,6 +82,7 @@ Distribution implementation is (very) partial. The most basic features are avail
8382
- I/O distribution ("group leader").
8483

8584
RPC (remote procedure call) from Erlang/OTP to AtomVM is also supported.
86-
Shell is not supported yet.
85+
86+
Shell requires several OTP standard library modules. See [the example project](https://github.com/pguyot/atomvm_shell).
8787

8888
Please do not hesitate to file issues or pull requests for additional features.

0 commit comments

Comments
 (0)