├── LICENSE ├── README.md ├── bl602 ├── bl602.bin ├── builtin_imgs │ ├── blsp_boot2.bin │ ├── blsp_boot2.elf │ ├── blsp_boot2.map │ ├── blsp_boot2_debug.bin │ ├── blsp_boot2_release.bin │ └── mfg │ │ ├── bl602_bl604_mfg_gu_24m.bin │ │ ├── bl602_bl604_mfg_gu_26m.bin │ │ ├── bl602_bl604_mfg_gu_32m.bin │ │ ├── bl602_bl604_mfg_gu_38p4m.bin │ │ └── bl602_bl604_mfg_gu_40m.bin ├── device_tree │ ├── bl_factory_params_IoTKitA_24M.dts │ ├── bl_factory_params_IoTKitA_26M.dts │ ├── bl_factory_params_IoTKitA_32M.dts │ ├── bl_factory_params_IoTKitA_38.4M.dts │ ├── bl_factory_params_IoTKitA_40M.dts │ ├── bl_factory_params_IoTKitA_None.dts │ ├── bl_factory_params_IoTKitA_RC32M.dts │ └── ro_params.dtb ├── eflash_loader │ ├── eflash_loader.map │ ├── eflash_loader_24m.bin │ ├── eflash_loader_26m.bin │ ├── eflash_loader_32m.bin │ ├── eflash_loader_38p4m.bin │ ├── eflash_loader_40m.bin │ ├── eflash_loader_cfg.conf │ ├── eflash_loader_cfg.ini │ ├── eflash_loader_none.bin │ ├── eflash_loader_openocd.bin │ └── eflash_loader_rc32m.bin ├── efuse_bootheader │ ├── bootheader.bin │ ├── efuse_bootheader_cfg.conf │ ├── efusedata.bin │ ├── efusedata_mask.bin │ ├── flash_para.bin │ └── image.bin ├── image │ ├── boot2image.bin │ ├── fwimage.bin │ ├── partition.bin │ ├── ro_params.dtb │ └── whole_img.bin └── partition │ ├── partition.bin │ └── partition_cfg_2M.toml ├── dts2dtb.py ├── flash_tool.go ├── tools ├── dts2dtb_macos ├── dts2dtb_ubuntu └── dts2dtb_win.exe └── utils ├── util_bootinfo.go ├── util_partition.go └── util_program.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/README.md -------------------------------------------------------------------------------- /bl602/bl602.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/bl602.bin -------------------------------------------------------------------------------- /bl602/builtin_imgs/blsp_boot2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/builtin_imgs/blsp_boot2.bin -------------------------------------------------------------------------------- /bl602/builtin_imgs/blsp_boot2.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/builtin_imgs/blsp_boot2.elf -------------------------------------------------------------------------------- /bl602/builtin_imgs/blsp_boot2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/builtin_imgs/blsp_boot2.map -------------------------------------------------------------------------------- /bl602/builtin_imgs/blsp_boot2_debug.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/builtin_imgs/blsp_boot2_debug.bin -------------------------------------------------------------------------------- /bl602/builtin_imgs/blsp_boot2_release.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/builtin_imgs/blsp_boot2_release.bin -------------------------------------------------------------------------------- /bl602/builtin_imgs/mfg/bl602_bl604_mfg_gu_24m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/builtin_imgs/mfg/bl602_bl604_mfg_gu_24m.bin -------------------------------------------------------------------------------- /bl602/builtin_imgs/mfg/bl602_bl604_mfg_gu_26m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/builtin_imgs/mfg/bl602_bl604_mfg_gu_26m.bin -------------------------------------------------------------------------------- /bl602/builtin_imgs/mfg/bl602_bl604_mfg_gu_32m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/builtin_imgs/mfg/bl602_bl604_mfg_gu_32m.bin -------------------------------------------------------------------------------- /bl602/builtin_imgs/mfg/bl602_bl604_mfg_gu_38p4m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/builtin_imgs/mfg/bl602_bl604_mfg_gu_38p4m.bin -------------------------------------------------------------------------------- /bl602/builtin_imgs/mfg/bl602_bl604_mfg_gu_40m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/builtin_imgs/mfg/bl602_bl604_mfg_gu_40m.bin -------------------------------------------------------------------------------- /bl602/device_tree/bl_factory_params_IoTKitA_24M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/device_tree/bl_factory_params_IoTKitA_24M.dts -------------------------------------------------------------------------------- /bl602/device_tree/bl_factory_params_IoTKitA_26M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/device_tree/bl_factory_params_IoTKitA_26M.dts -------------------------------------------------------------------------------- /bl602/device_tree/bl_factory_params_IoTKitA_32M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/device_tree/bl_factory_params_IoTKitA_32M.dts -------------------------------------------------------------------------------- /bl602/device_tree/bl_factory_params_IoTKitA_38.4M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/device_tree/bl_factory_params_IoTKitA_38.4M.dts -------------------------------------------------------------------------------- /bl602/device_tree/bl_factory_params_IoTKitA_40M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/device_tree/bl_factory_params_IoTKitA_40M.dts -------------------------------------------------------------------------------- /bl602/device_tree/bl_factory_params_IoTKitA_None.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/device_tree/bl_factory_params_IoTKitA_None.dts -------------------------------------------------------------------------------- /bl602/device_tree/bl_factory_params_IoTKitA_RC32M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/device_tree/bl_factory_params_IoTKitA_RC32M.dts -------------------------------------------------------------------------------- /bl602/device_tree/ro_params.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/device_tree/ro_params.dtb -------------------------------------------------------------------------------- /bl602/eflash_loader/eflash_loader.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/eflash_loader/eflash_loader.map -------------------------------------------------------------------------------- /bl602/eflash_loader/eflash_loader_24m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/eflash_loader/eflash_loader_24m.bin -------------------------------------------------------------------------------- /bl602/eflash_loader/eflash_loader_26m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/eflash_loader/eflash_loader_26m.bin -------------------------------------------------------------------------------- /bl602/eflash_loader/eflash_loader_32m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/eflash_loader/eflash_loader_32m.bin -------------------------------------------------------------------------------- /bl602/eflash_loader/eflash_loader_38p4m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/eflash_loader/eflash_loader_38p4m.bin -------------------------------------------------------------------------------- /bl602/eflash_loader/eflash_loader_40m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/eflash_loader/eflash_loader_40m.bin -------------------------------------------------------------------------------- /bl602/eflash_loader/eflash_loader_cfg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/eflash_loader/eflash_loader_cfg.conf -------------------------------------------------------------------------------- /bl602/eflash_loader/eflash_loader_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/eflash_loader/eflash_loader_cfg.ini -------------------------------------------------------------------------------- /bl602/eflash_loader/eflash_loader_none.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/eflash_loader/eflash_loader_none.bin -------------------------------------------------------------------------------- /bl602/eflash_loader/eflash_loader_openocd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/eflash_loader/eflash_loader_openocd.bin -------------------------------------------------------------------------------- /bl602/eflash_loader/eflash_loader_rc32m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/eflash_loader/eflash_loader_rc32m.bin -------------------------------------------------------------------------------- /bl602/efuse_bootheader/bootheader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/efuse_bootheader/bootheader.bin -------------------------------------------------------------------------------- /bl602/efuse_bootheader/efuse_bootheader_cfg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/efuse_bootheader/efuse_bootheader_cfg.conf -------------------------------------------------------------------------------- /bl602/efuse_bootheader/efusedata.bin: -------------------------------------------------------------------------------- 1 | c`X -------------------------------------------------------------------------------- /bl602/efuse_bootheader/efusedata_mask.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/efuse_bootheader/efusedata_mask.bin -------------------------------------------------------------------------------- /bl602/efuse_bootheader/flash_para.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/efuse_bootheader/flash_para.bin -------------------------------------------------------------------------------- /bl602/efuse_bootheader/image.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/efuse_bootheader/image.bin -------------------------------------------------------------------------------- /bl602/image/boot2image.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/image/boot2image.bin -------------------------------------------------------------------------------- /bl602/image/fwimage.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/image/fwimage.bin -------------------------------------------------------------------------------- /bl602/image/partition.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/image/partition.bin -------------------------------------------------------------------------------- /bl602/image/ro_params.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/image/ro_params.dtb -------------------------------------------------------------------------------- /bl602/image/whole_img.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/image/whole_img.bin -------------------------------------------------------------------------------- /bl602/partition/partition.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/partition/partition.bin -------------------------------------------------------------------------------- /bl602/partition/partition_cfg_2M.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/bl602/partition/partition_cfg_2M.toml -------------------------------------------------------------------------------- /dts2dtb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/dts2dtb.py -------------------------------------------------------------------------------- /flash_tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/flash_tool.go -------------------------------------------------------------------------------- /tools/dts2dtb_macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/tools/dts2dtb_macos -------------------------------------------------------------------------------- /tools/dts2dtb_ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/tools/dts2dtb_ubuntu -------------------------------------------------------------------------------- /tools/dts2dtb_win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/tools/dts2dtb_win.exe -------------------------------------------------------------------------------- /utils/util_bootinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/utils/util_bootinfo.go -------------------------------------------------------------------------------- /utils/util_partition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/utils/util_partition.go -------------------------------------------------------------------------------- /utils/util_program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/BLOpenFlasher/HEAD/utils/util_program.go --------------------------------------------------------------------------------