nvm_config.bat
来自「GSM手机设计软件代码」· Batch 代码 · 共 41 行
BAT
41 行
@if x%_4ver% == x goto Need4NT
@if NOT ISDIR %GSMDIR%\ms\config\nvm\ goto NONEXISTENTDIR
@PUSHD %GSMDIR%\ms\config\nvm\
@echo ON
@iff %1 == -h then
@goto HOW2USE
@elseiff x%1 == x then
@echo --- invoking pctm in script mode
@rem use default script (currently C-Sample) for pctm
@rem need to have clearcase context to make this work
%GSMDIR%\..\l1_release\util\Tools\pctm\pctm.exe -ccbq -f .\script\dsample
@else
@echo --- invoking pctm in script mode
@rem use 1st prameter as script pathname for pctm
%GSMDIR%\..\l1_release\util\Tools\pctm\pctm.exe -ccbq -f %1
@endiff
@goto END
:Need4NT
@echo "Error: 4DOS or 4NT is needed
@goto END
:NONEXISTENTDIR
@echo Error whilst executing nvm_config: need directory %GSMDIR%\ms\config\nvm\
@quit
:HOW2USE
@text
nvm_config : Configure Non-Volatile Memory (NVM)
Usage : nvm_config | nvm_config -h | nvm_config <ScriptFileName>
-h : this output - help
<ScriptFileName> : absolute pathname including drive specification of script which is used
to run PCTM commands;
omitting <ScriptFileName> leads to use of default script for default HW
Example : nvm_config
endtext
:END
@POPD
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?