upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
762 B
28 lines
762 B
@echo off
|
|
REM Setup for compiling with DJGPP 2.02
|
|
|
|
if .%CHECKED%==.1 goto checked_build
|
|
set LIB=%SCITECH_LIB%\LIB\release\dos32\dj2
|
|
%SCITECH%\bin-dos\k_cp %SCITECH%\BIN\DJGPP.ENV %DJ_PATH%\DJGPP.ENV
|
|
echo Release build enabled.
|
|
goto setvars
|
|
|
|
:checked_build
|
|
set LIB=%SCITECH_LIB%\LIB\debug\dos32\dj2
|
|
%SCITECH%\bin-dos\k_cp %SCITECH%\BIN\DJGPP_DB.ENV %DJ_PATH%\DJGPP.ENV
|
|
echo Checked debug build enabled.
|
|
goto setvars
|
|
|
|
:setvars
|
|
set DJGPP=%DJ_PATH%\DJGPP.ENV
|
|
set INCLUDE=INCLUDE;%SCITECH%\INCLUDE;%PRIVATE%\INCLUDE;%DJ_PATH%\INCLUDE;
|
|
set MAKESTARTUP=%SCITECH%\MAKEDEFS\DJ32.MK
|
|
set USE_WIN16=
|
|
set USE_WIN32=
|
|
set WIN32_GUI=
|
|
set USE_SNAP=
|
|
set DJ_LIBBASE=dj2
|
|
PATH %SCITECH_BIN%;%DJ_PATH%\BIN;%DEFPATH%
|
|
|
|
echo DJGPP 2.02 32-bit DOS compilation environment set up (DPMI).
|
|
|
|
|