Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTijnMertens <110020473+TijnMertens@users.noreply.github.com>2022-07-26 12:13:04 +0300
committerGitHub <noreply@github.com>2022-07-26 12:13:04 +0300
commit05b816429c6a1801e26d74467be65da81d44428d (patch)
tree22a5c85423b4a50c55c57039247a87bbbb2a287b
parente03b102af220d7cd0697e57838b8370b1fb60155 (diff)
Minor grammar and typo fix (#1454)
-rw-r--r--documentation/fbt.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/documentation/fbt.md b/documentation/fbt.md
index 575b0265..af10cd9c 100644
--- a/documentation/fbt.md
+++ b/documentation/fbt.md
@@ -1,7 +1,7 @@
# Flipper Build Tool
FBT is the entry point for firmware-related commands and utilities.
-It is invoked by `./fbt` in firmware project root directory. Internally, it is a wrapper around [scons](https://scons.org/) build system.
+It is invoked by `./fbt` in the firmware project root directory. Internally, it is a wrapper around [scons](https://scons.org/) build system.
## Requirements
@@ -66,21 +66,21 @@ FBT keeps track of internal dependencies, so you only need to build the highest-
## Command-line parameters
- `--options optionfile.py` (default value `fbt_options.py`) - load file with multiple configuration values
-- `--with-updater` - enables updater-related targets and dependency tracking. Enabling this options introduces extra startup time costs, so use it when bundling update packages. Or if you have a fast computer and don't care about a few extra seconds of startup time
+- `--with-updater` - enables updater-related targets and dependency tracking. Enabling this option introduces extra startup time costs, so use it when bundling update packages. Or if you have a fast computer and don't care about a few extra seconds of startup time
- `--extra-int-apps=app1,app2,appN` - forces listed apps to be built as internal with `firmware` target
- `--extra-ext-apps=app1,app2,appN` - forces listed apps to be built as external with `firmware_extapps` target
## Configuration
-Default configuration variables are set in configuration file `fbt_options.py`.
+Default configuration variables are set in the configuration file `fbt_options.py`.
Values set on command-line have higher precedence over configuration file.
You can find out available options with `./fbt -h`.
### Firmware application set
-You can create customized firmware builds by modifying application list to be included in the build. Application presets are configured with `FIRMWARE_APPS` option, which is a map(configuration_name:str -> application_list:tuple(str)). To specify application set to use in a build, set `FIRMWARE_APP_SET` to its name.
-For example, to build firmware image with unit tests, run `./fbt FIRMWARE_APP_SET=unit_tests`.
+You can create customized firmware builds by modifying the application list to be included in the build. Application presets are configured with the `FIRMWARE_APPS` option, which is a map(configuration_name:str -> application_list:tuple(str)). To specify application set to use in a build, set `FIRMWARE_APP_SET` to its name.
+For example, to build a firmware image with unit tests, run `./fbt FIRMWARE_APP_SET=unit_tests`.
Check out `fbt_options.py` for details.