Skip to content

Commit 0aa521a

Browse files
update
1 parent 6250460 commit 0aa521a

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

docs/apps/appstore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# App Store
1+
# AppStore
22

33
The MicroPythonOS App Store allows users to download and install new apps to extend system functionality.
44

docs/apps/built-in-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Built-in Apps
22

3-
MicroPythonOS includes essential apps to bootstrap the system, located in `/builtin/apps/`.
3+
MicroPythonOS includes essential apps to bootstrap the system, located in [`/builtin/apps/`](https://github.com/MicroPythonOS/MicroPythonOS/tree/main/internal_filesystem/builtin/apps).
44

55
- **Launcher**: Starts apps and provides the home screen.
66
- **WiFi**: Configures WiFi connections.

docs/architecture/filesystem.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33
MicroPythonOS uses a structured filesystem to organize apps, data, and resources.
44

55
- **/apps/**: Directory for downloaded and installed apps.
6-
- **/apps/com.example.app1/**: Installation directory for an example app.
7-
- **MANIFEST.MF**: Metadata (e.g., app name, start script).
8-
- **mipmap-mdpi/**: Medium DPI images (e.g., `icon_64x64.bin` for a 64x64 pixel icon).
6+
- **/apps/com.micropythonos.helloworld/**: Installation directory for HelloWorld App. See [Developing Apps](../apps/developing-apps.md).
97
- **/builtin/**: Read-only filesystem compiled into the OS, mounted at boot by `main.py`.
10-
- **/builtin/apps/**: Built-in apps (e.g., `launcher`, `wificonf`, `appstore`, `osupdate`).
8+
- **/builtin/apps/**: See [Built-in Apps](../apps/built-in-apps.md).
119
- **/builtin/res/mipmap-mdpi/default_icon_64x64.bin**: Default icon for apps without one.
1210
- **/data/**: Storage for app data.
1311
- **/data/images/**: Images stored by apps (e.g., camera app).
14-
- **/data/com.example.app1/**: App-specific storage (e.g., `config.json`).
12+
- **/data/com.example.app1/**: App-specific storage (e.g., `config.json`) for com.example.app1.
1513

1614
This structure ensures a clear separation between system resources, apps, and user data.

0 commit comments

Comments
 (0)