Vortex86DX-MSJK CE 6.0 Jump Start - Getting Started Guide
Vortex86DX-MSJK Windows Embedded CE 6.0 R3 Jump Start Rev 2.0
Page 143
[menu]
menuitem=1LOCAL, Load OS image from local storage
menuitem=2DHCP, Load OS image from development station with DHCP service
menuitem=3STATIC, Load OS image from development station with Static IP 192.168.2.232
menuitem=4CLEAN, Clean Boot (no commands)
menudefault=1LOCAL,15
menucolor=7,1
[1LOCAL]
[2DHCP]
[3STATIC]
[4CLEAN]
[COMMON]
buffers=10,0
files=30
break=on
lastdrive=Z
dos=high,umb
device=himem.sys /testmem:OFF
Here is the source code listing for the Autoexec.bat file, the DOS startup batch file:
@echo off
verify off
PROMPT $p$g
set NET_IRQ=0
set NET_IOBASE=0
set NET_IP=
if "%CONFIG%" == "1LOCAL" goto 1LOCAL
if "%CONFIG%" == "2DHCP" goto 2DHCP
if "%CONFIG%" == "3STATIC" goto 3STATIC
if "%CONFIG%" == "4CLEAN" goto 4CLEAN
:1LOCAL
Loadcepc nk.bin
goto END
:2DHCP
goto REMOTE
:3STATIC
Set NET_IP=192.168.2.232
goto REMOTE
:REMOTE
loadcepc /C:1 /e:%NET_IOBASE%:%NET_IRQ%:%NET_IP% eboot.bin
goto END
:4CLEAN
:END
The Loadcepc bootloader requires DOS to function and is used in the development environment, not for
distribution. When deploying a product for distribution using the Windows Embedded CE operating
system, a bootloader is needed to launch the Windows Embedded CE OS runtime image.