You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CMakeLists.txt
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,9 @@ set(USER_DATA_FILE "" CACHE FILEPATH "Optional user_data file to embed in ROM")
13
13
set(DMBOOT_CONFIG_DIR "${CMAKE_BINARY_DIR}/configs"CACHEPATH"Config directory to mount as /configs/ using dmffs (defaults to build/configs)")
14
14
set(DMBOOT_MAIN_MODULE "dmell"CACHESTRING"Name of the main module to start after boot")
15
15
set(DMBOOT_EXTRA_FLASH_DMD_FILES ""CACHESTRING"Additional flash.dmd files to include (semicolon-separated list of absolute paths)")
16
+
set(DMBOOT_EXTRA_FLASH_DMD_MANIFESTS ""CACHESTRING"Manifests for extra flash.dmd files (semicolon-separated list of manifest paths/URLs, one per extra flash.dmd file)")
16
17
set(DMBOOT_EXTRA_SDCARD_DMD_FILES ""CACHESTRING"Additional sdcard.dmd files to include (semicolon-separated list of absolute paths)")
18
+
set(DMBOOT_EXTRA_SDCARD_DMD_MANIFESTS ""CACHESTRING"Manifests for extra sdcard.dmd files (semicolon-separated list of manifest paths/URLs, one per extra sdcard.dmd file)")
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,10 @@ cmake --build build
46
46
-`STARTUP_DMP_FILE` (optional) - Path to a startup package file (`.dmp`) that will be automatically loaded using `Dmod_AddPackageBuffer` at boot
47
47
-`USER_DATA_FILE` (optional) - Path to a user data file that will be embedded in ROM, with its address and size available via environment variables `USER_DATA_ADDR` and `USER_DATA_SIZE`
48
48
-`DMBOOT_CONFIG_DIR` (optional, defaults to `build/configs`) - Path to a directory that will be converted to a dmffs filesystem image and mounted at `/configs/` at boot time. By default, configuration files from `modules.dmd` are downloaded to this directory.
49
+
-`DMBOOT_EXTRA_FLASH_DMD_FILES` (optional) - Semicolon-separated list of additional `flash.dmd` files. Each file adds more flash modules to download at build time.
50
+
-`DMBOOT_EXTRA_FLASH_DMD_MANIFESTS` (optional) - Semicolon-separated list of manifest paths/URLs (one per extra flash.dmd file). Use this to specify a custom manifest for each extra flash.dmd file.
51
+
-`DMBOOT_EXTRA_SDCARD_DMD_FILES` (optional) - Semicolon-separated list of additional `sdcard.dmd` files. Each file adds more sdcard modules to download at build time.
52
+
-`DMBOOT_EXTRA_SDCARD_DMD_MANIFESTS` (optional) - Semicolon-separated list of manifest paths/URLs (one per extra sdcard.dmd file). Use this to specify a custom manifest for each extra sdcard.dmd file.
0 commit comments