Skip to content

Commit 9f6307c

Browse files
Update docs
1 parent 52daadf commit 9f6307c

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

docs/os-development/compiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
1. **Make sure you're in the main repository**:
44

55
```
6-
cd MicroPythonOS
6+
cd MicroPythonOS/
77
```
88
99
2. **Start the Compilation**

docs/os-development/running-on-desktop.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
## Running on Linux or MacOS
22

3-
1. Download a release binary (e.g., `MicroPythonOS_amd64_Linux`, `MicroPythonOS_amd64_MacOS`) or build your own [on MacOS](../os-development/macos.md) or [Linux](../os-development/linux.md).
3+
1. Make sure you have the software
44

5-
2. Get the `local_filesystem/` folder
5+
Either you built your own [on MacOS](../os-development/macos.md) or [Linux](../os-development/linux.md) or you can download a pre-built executable binary (e.g., `MicroPythonOS_amd64_Linux`, `MicroPythonOS_amd64_MacOS`) from the [releases page](https://github.com/MicroPythonOS/MicroPythonOS/releases).
6+
7+
Give it executable permissions:
8+
9+
```
10+
chmod +x /path/to/MicroPythonOS_executable_binary
11+
```
12+
13+
2. Make sure you have the `local_filesystem/` folder
614
715
You probably already have a local clone that contains the [internal_filesystem](https://github.com/MicroPythonOS/MicroPythonOS/tree/main/internal_filesystem).
816
@@ -20,7 +28,7 @@
2028
<pre>
2129
```
2230
cd internal_filesystem/ # make sure you're in the right place to find the filesystem
23-
/path/to/release_binary -X heapsize=32M -v -i -c "$(cat boot_unix.py main.py)"
31+
/path/to/MicroPythonOS_executable_binary -X heapsize=32M -v -i -c "$(cat boot_unix.py main.py)"
2432
```
2533
</pre>
2634

0 commit comments

Comments
 (0)