 ebc2b66372
			
		
	
	
		ebc2b66372
		
			
		
	
	
	
	
		
			
			* fbt: split sdk management code * scripts: fixed import handling * fbt: sdk: reformatted paths * scrips: dist: bundling libs as a build artifact * fbt: sdk: better path management * typo fix * fbt: sdk: minor path handling fixes * toolchain: fixed windows toolchain download * fbt: minor refactorin * fbt: moved sdk management code to extapps.scons * fbt: fixed sdk symbols header path; disabled -fstack-usage * fbt: changed pathing for .py scripts * fbt: changed SDK_HEADERS pathing; added libusb to SDK; added icon_i.h to SDK; added hw target to SDK meta * fbt: added libusb headers to SDK * picopass: include cleanup; api: added subghz/registry.h; api: added mbedtls to exported headers * picopass: fixed formatting * fbt: fixed COPRO_ASSETS_SCRIPT * sdk: added basic infrared apis * toolchain: added ufbt to list of legal fbtenv callers; updated error messages * fbt: changed manifest collection & icon processing code * fbt: simpler srcdir lookup * toolchain: path management fixes; fbt: fixes for fap private libs paths * scripts: toolchain: reworked download on Windows * toolchain: v17 * scripts: added colorlog for logging * Github: fix unit tests Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from SCons.Builder import Builder
 | |
| from SCons.Action import Action
 | |
| import SCons
 | |
| 
 | |
| __OBJCOPY_ARM_BIN = "arm-none-eabi-objcopy"
 | |
| __NM_ARM_BIN = "arm-none-eabi-nm"
 | |
| 
 | |
| 
 | |
| def generate(env):
 | |
|     env.SetDefault(
 | |
|         BIN2DFU="${FBT_SCRIPT_DIR}/bin2dfu.py",
 | |
|         BIN_SIZE_SCRIPT="${FBT_SCRIPT_DIR}/fwsize.py",
 | |
|         OBJCOPY=__OBJCOPY_ARM_BIN,  # FIXME
 | |
|         NM=__NM_ARM_BIN,  # FIXME
 | |
|     )
 | |
| 
 | |
|     if not env["VERBOSE"]:
 | |
|         env.SetDefault(
 | |
|             HEXCOMSTR="\tHEX\t${TARGET}",
 | |
|             BINCOMSTR="\tBIN\t${TARGET}",
 | |
|             DFUCOMSTR="\tDFU\t${TARGET}",
 | |
|         )
 | |
| 
 | |
|     env.Append(
 | |
|         BUILDERS={
 | |
|             "HEXBuilder": Builder(
 | |
|                 action=Action(
 | |
|                     '${OBJCOPY} -O ihex "${SOURCE}" "${TARGET}"',
 | |
|                     "${HEXCOMSTR}",
 | |
|                 ),
 | |
|                 suffix=".hex",
 | |
|                 src_suffix=".elf",
 | |
|             ),
 | |
|             "BINBuilder": Builder(
 | |
|                 action=Action(
 | |
|                     '${OBJCOPY} -O binary -S "${SOURCE}" "${TARGET}"',
 | |
|                     "${BINCOMSTR}",
 | |
|                 ),
 | |
|                 suffix=".bin",
 | |
|                 src_suffix=".elf",
 | |
|             ),
 | |
|             "DFUBuilder": Builder(
 | |
|                 action=Action(
 | |
|                     '${PYTHON3} "${BIN2DFU}" -i "${SOURCE}" -o "${TARGET}" -a ${IMAGE_BASE_ADDRESS} -l "Flipper Zero F${TARGET_HW}"',
 | |
|                     "${DFUCOMSTR}",
 | |
|                 ),
 | |
|                 suffix=".dfu",
 | |
|                 src_suffix=".bin",
 | |
|             ),
 | |
|         }
 | |
|     )
 | |
| 
 | |
| 
 | |
| def exists(env):
 | |
|     try:
 | |
|         return env["OBJCOPY"]
 | |
|     except KeyError:
 | |
|         pass
 | |
| 
 | |
|     if objcopy := env.WhereIs(__OBJCOPY_ARM_BIN):
 | |
|         return objcopy
 | |
| 
 | |
|     raise SCons.Errors.StopError("Could not detect objcopy for arm")
 |