 53435579b3
			
		
	
	
		53435579b3
		
			
		
	
	
	
	
		
			
			* fbt, faploader: minimal app module implementation * faploader, libs: moved API hashtable core to flipper_application * example: compound api * lib: flipper_application: naming fixes, doxygen comments * fbt: changed `requires` manifest field behavior for app extensions * examples: refactored plugin apps; faploader: changed new API naming; fbt: changed PLUGIN app type meaning * loader: dropped support for debug apps & plugin menus * moved applications/plugins -> applications/external * Restored x bit on chiplist_convert.py * git: fixed free-dap submodule path * pvs: updated submodule paths * examples: example_advanced_plugins.c: removed potential memory leak on errors * examples: example_plugins: refined requires * fbt: not deploying app modules for debug/sample apps; extra validation for .PLUGIN-type apps * apps: removed cdefines for external apps * fbt: moved ext app path definition * fbt: reworked fap_dist handling; f18: synced api_symbols.csv * fbt: removed resources_paths for extapps * scripts: reworked storage * scripts: reworked runfap.py & selfupdate.py to use new api * wip: fal runner * fbt: moved file packaging into separate module * scripts: storage: fixes * scripts: storage: minor fixes for new api * fbt: changed internal artifact storage details for external apps * scripts: storage: additional fixes and better error reporting; examples: using APP_DATA_PATH() * fbt, scripts: reworked launch_app to deploy plugins; moved old runfap.py to distfap.py * fbt: extra check for plugins descriptors * fbt: additional checks in emitter * fbt: better info message on SDK rebuild * scripts: removed requirements.txt * loader: removed remnants of plugins & debug menus * post-review fixes
		
			
				
	
	
		
			234 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			234 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Commandline options
 | |
| 
 | |
| # To build updater-related targets, you need to set this option
 | |
| AddOption(
 | |
|     "--with-updater",
 | |
|     dest="fullenv",
 | |
|     action="store_true",
 | |
|     help="Full firmware environment",
 | |
| )
 | |
| 
 | |
| AddOption(
 | |
|     "--options",
 | |
|     dest="optionfile",
 | |
|     type="string",
 | |
|     nargs=1,
 | |
|     action="store",
 | |
|     default="fbt_options.py",
 | |
|     help="Environment option file",
 | |
| )
 | |
| 
 | |
| AddOption(
 | |
|     "--extra-int-apps",
 | |
|     action="store",
 | |
|     dest="extra_int_apps",
 | |
|     default="",
 | |
|     help="List of applications to add to firmware's built-ins. Also see FIRMWARE_APP_SET and FIRMWARE_APPS",
 | |
| )
 | |
| 
 | |
| AddOption(
 | |
|     "--extra-ext-apps",
 | |
|     action="store",
 | |
|     dest="extra_ext_apps",
 | |
|     default="",
 | |
|     help="List of applications to forcefully build as standalone .elf",
 | |
| )
 | |
| 
 | |
| AddOption(
 | |
|     "--proxy-env",
 | |
|     action="store",
 | |
|     dest="proxy_env",
 | |
|     default="",
 | |
|     help="Comma-separated list of additional environment variables to pass to child SCons processes",
 | |
| )
 | |
| 
 | |
| 
 | |
| # Construction environment variables
 | |
| 
 | |
| vars = Variables(GetOption("optionfile"), ARGUMENTS)
 | |
| 
 | |
| vars.AddVariables(
 | |
|     BoolVariable(
 | |
|         "VERBOSE",
 | |
|         help="Print full commands",
 | |
|         default=False,
 | |
|     ),
 | |
|     BoolVariable(
 | |
|         "FORCE",
 | |
|         help="Force target action (for supported targets)",
 | |
|         default=False,
 | |
|     ),
 | |
|     BoolVariable(
 | |
|         "DEBUG",
 | |
|         help="Enable debug build",
 | |
|         default=True,
 | |
|     ),
 | |
|     BoolVariable(
 | |
|         "LIB_DEBUG",
 | |
|         help="Enable debug build for libraries",
 | |
|         default=False,
 | |
|     ),
 | |
|     BoolVariable(
 | |
|         "COMPACT",
 | |
|         help="Optimize for size",
 | |
|         default=False,
 | |
|     ),
 | |
|     EnumVariable(
 | |
|         "TARGET_HW",
 | |
|         help="Hardware target",
 | |
|         default="7",
 | |
|         allowed_values=[
 | |
|             "7",
 | |
|             "18",
 | |
|         ],
 | |
|     ),
 | |
|     (
 | |
|         "DIST_SUFFIX",
 | |
|         "Suffix for binaries in build output for dist targets",
 | |
|         "local",
 | |
|     ),
 | |
|     (
 | |
|         "UPDATE_VERSION_STRING",
 | |
|         "Version string for updater package",
 | |
|         "${DIST_SUFFIX}",
 | |
|     ),
 | |
|     (
 | |
|         "COPRO_CUBE_VERSION",
 | |
|         "Cube version",
 | |
|         "",
 | |
|     ),
 | |
|     (
 | |
|         "COPRO_STACK_ADDR",
 | |
|         "Core2 Firmware address",
 | |
|         "0",
 | |
|     ),
 | |
|     (
 | |
|         "COPRO_STACK_BIN",
 | |
|         "Core2 Firmware file name",
 | |
|         "",
 | |
|     ),
 | |
|     (
 | |
|         "COPRO_DISCLAIMER",
 | |
|         "Value to pass to bundling script to confirm dangerous operations",
 | |
|         "",
 | |
|     ),
 | |
|     PathVariable(
 | |
|         "COPRO_OB_DATA",
 | |
|         help="Path to OB reference data",
 | |
|         validator=PathVariable.PathIsFile,
 | |
|         default="",
 | |
|     ),
 | |
|     PathVariable(
 | |
|         "COPRO_STACK_BIN_DIR",
 | |
|         help="Path to ST-provided stacks",
 | |
|         validator=PathVariable.PathIsDir,
 | |
|         default="",
 | |
|     ),
 | |
|     PathVariable(
 | |
|         "COPRO_CUBE_DIR",
 | |
|         help="Path to Cube root",
 | |
|         validator=PathVariable.PathIsDir,
 | |
|         default="",
 | |
|     ),
 | |
|     EnumVariable(
 | |
|         "COPRO_STACK_TYPE",
 | |
|         help="Core2 stack type",
 | |
|         default="ble_light",
 | |
|         allowed_values=[
 | |
|             "ble_full",
 | |
|             "ble_light",
 | |
|             "ble_basic",
 | |
|         ],
 | |
|     ),
 | |
|     PathVariable(
 | |
|         "SVD_FILE",
 | |
|         help="Path to SVD file",
 | |
|         validator=PathVariable.PathAccept,
 | |
|         default="",
 | |
|     ),
 | |
|     PathVariable(
 | |
|         "OTHER_ELF",
 | |
|         help="Path to prebuilt ELF file to debug",
 | |
|         validator=PathVariable.PathAccept,
 | |
|         default="",
 | |
|     ),
 | |
|     (
 | |
|         "FBT_TOOLCHAIN_VERSIONS",
 | |
|         "Whitelisted toolchain versions (leave empty for no check)",
 | |
|         tuple(),
 | |
|     ),
 | |
|     (
 | |
|         "OPENOCD_OPTS",
 | |
|         "Options to pass to OpenOCD",
 | |
|         "",
 | |
|     ),
 | |
|     (
 | |
|         "BLACKMAGIC",
 | |
|         "Blackmagic probe location",
 | |
|         "auto",
 | |
|     ),
 | |
|     (
 | |
|         "OPENOCD_ADAPTER_SERIAL",
 | |
|         "OpenOCD adapter serial number",
 | |
|         "auto",
 | |
|     ),
 | |
|     (
 | |
|         "UPDATE_SPLASH",
 | |
|         "Directory name with slideshow frames to render after installing update package",
 | |
|         "update_default",
 | |
|     ),
 | |
|     (
 | |
|         "LOADER_AUTOSTART",
 | |
|         "Application name to automatically run on Flipper boot",
 | |
|         "",
 | |
|     ),
 | |
|     (
 | |
|         "FIRMWARE_APPS",
 | |
|         "Map of (configuration_name->application_list)",
 | |
|         {
 | |
|             "default": (
 | |
|                 # Svc
 | |
|                 "basic_services",
 | |
|                 # Apps
 | |
|                 "main_apps",
 | |
|                 "system_apps",
 | |
|                 # Settings
 | |
|                 "settings_apps",
 | |
|             ),
 | |
|         },
 | |
|     ),
 | |
|     (
 | |
|         "FIRMWARE_APP_SET",
 | |
|         "Application set to use from FIRMWARE_APPS",
 | |
|         "default",
 | |
|     ),
 | |
|     (
 | |
|         "APPSRC",
 | |
|         "Application source directory for app to build & upload",
 | |
|         "",
 | |
|     ),
 | |
|     # List of tuples (directory, add_to_global_include_path)
 | |
|     (
 | |
|         "APPDIRS",
 | |
|         "Directories to search for firmware components & external apps",
 | |
|         [
 | |
|             ("applications", False),
 | |
|             ("applications/services", True),
 | |
|             ("applications/main", True),
 | |
|             ("applications/settings", False),
 | |
|             ("applications/system", False),
 | |
|             ("applications/debug", False),
 | |
|             ("applications/external", False),
 | |
|             ("applications/examples", False),
 | |
|             ("applications_user", False),
 | |
|         ],
 | |
|     ),
 | |
|     BoolVariable(
 | |
|         "PVSNOBROWSER",
 | |
|         help="Don't open browser after generating error repots",
 | |
|         default=False,
 | |
|     ),
 | |
| )
 | |
| 
 | |
| Return("vars")
 |