diff options
author | Michael Brown <mcb30@ipxe.org> | 2015-10-16 16:14:29 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-10-16 16:38:39 +0100 |
commit | 4b7443d132d4d889618588d78ed111099f16c6f9 (patch) | |
tree | 3dcb7c124669dac9582692ec9ac8534235b3424c /src/Makefile.housekeeping | |
parent | bede691986a2c686fb56319adef6a63108119725 (diff) | |
download | ipxe-4b7443d132d4d889618588d78ed111099f16c6f9.tar.gz |
[build] Generalise CONSOLE_VESAFB to CONSOLE_FRAMEBUFFER
The name "vesafb" is intrinsically specific to a BIOS environment.
Generalise the build configuration option CONSOLE_VESAFB to
CONSOLE_FRAMEBUFFER, in preparation for adding EFI framebuffer
support.
Existing configurations using CONSOLE_VESAFB will continue to work.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/Makefile.housekeeping')
-rw-r--r-- | src/Makefile.housekeeping | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index 6bd736725..1b6f092bb 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -1005,7 +1005,7 @@ TGT_LD_ENTRY = _$(TGT_PREFIX)_start # --defsym pci_vendor=0x1186 --defsym pci_device=0x1300") # TGT_LD_FLAGS = $(foreach SYM,$(TGT_LD_ENTRY) $(TGT_LD_DRIVERS) \ - $(TGT_LD_DEVLIST) obj_config,\ + $(TGT_LD_DEVLIST) obj_config obj_config_$(PLATFORM),\ -u $(SYM) --defsym check_$(SYM)=$(SYM) ) \ $(patsubst %,--defsym %,$(TGT_LD_IDS)) \ -e $(TGT_LD_ENTRY) |