⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 build.bat

📁 MPC5200 BSP 支持ATA,USB, I2C,扩展网口
💻 BAT
字号:
@rem Build tool for Lite5200B

@if "%1"=="help"		goto Usage
@if "%1"=="bootrom" 	goto bootrom
@if "%1"=="vxworks" 	goto vxworks
@if "%1"=="vxbin" 		goto vxbin
@if "%1"=="" 			goto vxworks

@echo unknown command : %1
@echo.
@goto Usage

:vxworks
@echo creating vxWorks
@make %2 vxWorks
@goto end

:bootrom
@echo creating boot.bin
@make %2 bootrom_uncmp
@ elftobin < bootrom_uncmp > boot.bin
@goto end

:vxbin
@echo creating vx.bin
@make %2 vxWorks
@ elftobin < vxWorks > vx.bin
@goto end

:Usage
@echo Build tool for Lite5200B
@echo. 
@echo Usage: 
@echo %0 bootrom vxworks vxbin help
@echo    bootrom  - create boot.bin
@echo    vxworks  - create vxWorks, which can be downloaded to target 
@echo    vxbin    - create vx.bin
@echo    help     - view this information
@echo.  
@goto end

:end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -