Last change
on this file was 184, checked in by Ben Rietbroek, 8 years ago |
Added 'CRC_IGNORE' option for debug building [v1.1.1-testing]
The CRC is calculated and inserted in the loader image when AiR-BOOT is
installed. Ignoring the CRC enables manually merging the loader without
using the installer. This is used for debugging in virtual machines,
where it is easy to merge the loader to the disk image of the VM.
CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.0-manual.pdf
|
File size:
734 bytes
|
Line | |
---|
1 | ###############################################################################
|
---|
2 | # GNUmakefile :: Builds the 'airboot.bin' 16-bits RAW Loader Image #
|
---|
3 | # --------------------------------------------------------------------------- #
|
---|
4 | # We are in the process of replacing Watcom Make with GNU Make. #
|
---|
5 | # This transition will first start at the local developer site. When it is #
|
---|
6 | # completed the switch to GNU Make will be propagated. #
|
---|
7 | ###############################################################################
|
---|
8 |
|
---|
9 | export CRC_IGNORE
|
---|
10 |
|
---|
11 | # Use the new GNU Make build-system if USE_GNU_MAKE is set to 'y'
|
---|
12 | ifeq ($(USE_GNU_MAKE),y)
|
---|
13 | include airboot.gmk
|
---|
14 | else
|
---|
15 | include ../include/makefrwd.mif
|
---|
16 | endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.