mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 19:28:36 +00:00
c7de829c79
Add code for AmigaOne board (preliminary merge to U-Boot, still WIP) * Patch by Jon Diekema, 12 Nov 2002: - Adding URL for IEEE OUI lookup - Making the autoboot #defines dependent on CONFIG_AUTOBOOT_KEYED being defined. - In the CONFIG_EXTRA_ENV_SETTINGS #define, the root-on-initrd and root-on-nfs macros are designed to switch how the default boot method gets defined.
20 lines
621 B
Batchfile
20 lines
621 B
Batchfile
@echo off
|
|
REM: Set up environment variables for Microsoft Platform SDK development
|
|
REM: Note that we have hard coded this for Windows NT i386 development.
|
|
|
|
SET MSTOOLS=%MSSDK%
|
|
SET DXSDKROOT=%MSTOOLS%
|
|
SET INETSDK=%MSTOOLS%
|
|
SET BKOFFICE=%MSTOOLS%
|
|
SET BASEMAKE=%BKOFFICE%\INCLUDE\BKOffice.Mak
|
|
SET INCLUDE=.;INCLUDE;%SCITECH%\INCLUDE;%PRIVATE%\INCLUDE;%MSTOOLS%\INCLUDE;%C_INCLUDE%
|
|
if .%1%==.borland goto borland
|
|
SET LIB=%MSTOOLS%\LIB;%LIB%
|
|
goto notborland
|
|
:borland
|
|
SET LIB=%MSTOOLS%\LIB\BORLAND;%LIB%
|
|
:notborland
|
|
SET PATH=%MSTOOLS%\Bin\;%MSTOOLS%\Bin\WinNT;%PATH%
|
|
SET CPU=i386
|
|
|
|
echo Microsoft Platform SDK support enbabled.
|