Disk Drives and Files 63
E-EQ-MX2RG-L-ARC MX2 Reference Guide
The purpose of the CONFIG.SAF file is to provide a minimal boot configuration that preserves
the flash and RAM drives. When the safe-boot sequence is initiated, the CONFIG.SAF file is
processed instead of the CONFIG.SYS file. This prevents chaining into the drive-C initialization
files by omitting the NEWFILE = C:\CONFIG.SYS command. It also eliminates the loading of
the DECODE.SYS and CFGDEV.SYS drivers.
REM ****************************************
REM Standard CONFIG.SYS for building system.
REM ****************************************
REM ***************************
REM Create flash and RAM drives
REM ***************************
DEVICE = B:\FLASHDSK.SYS 4096
DEVICE = B:=VDISK.SYS 4096 /e
REM *********************************
REM Load decode/configuration drivers
REM *********************************
DEVICE = B:\DECODE.SYS
DEVICE = B:\CFGDEV.SYS
NEWFILE = C:\CONFIG.SYS
Figure 3-4 CONFIG.SYS File on Drive B
@echo off
REM ***********************************
REM Standard AUTOEXEC.BAT for
REM starting system.
REM ***********************************
PATH=%PATH%;B:\
C:
IF EXIST A:\CONFIG.SAF
IF EXIST C:\AUTOEXEC.BAT C:\AUTOEXEC.BAT
Figure 3-5 AUTOEXEC.BAT File on Drive B
REM **********************************
REM Standard CONFIG.SYS for safe boot.
REM **********************************
REM ****************************
REM Recover flash and RAM drives
REM ****************************
DEVICE = B:\FLASHDSK.SYS 4096
DEVICE = B:\VDISK.SYS 4096 /e
Figure 3-6 CONFIG.SAF File on Drive B