summaryrefslogtreecommitdiff
path: root/modules/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Makefile: Move Makefile fragments into mk/Matt Fleming2011-04-071-1/+2
| | | | | | | | | | | | | | | | | | Move the MCONFIG files into a mk/ directory and give them more descriptive names. This is purely a cosmetic change to make the 'include' directives a bit more coherent by making it obvious exactly which MCONFIG file we're including. For example, in com32/lua/src/Makefile we exchange the line, include ../../MCONFIG for the much more comprehensible, include $(MAKEDIR)/com32.mk Signed-off-by: Matt Fleming <matt.fleming@linux.intel.com>
* modules/Makefile: add ver.comGene Cumm2010-10-251-1/+1
|
* gfxboot: remove 16-bit gfxboot moduleH. Peter Anvin2010-02-281-1/+1
| | | | | | Get rid of the 16-bit gfxboot module; use gfxboot.c32 instead. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* int18: module for local booting using INT 18hH. Peter Anvin2009-09-131-1/+1
| | | | | | | At least until we can get a better handle on return vs INT 18h, provide a module so we can at least tell people how to test. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* poweroff COMBOOT moduleSebastian Herbszt2009-05-041-1/+1
| | | | | | | | | | | | | This module is able to power off a system via APM. It was tested on QEMU, Bochs and VMware. Possible usage: TIMEOUT 3000 TOTALTIMEOUT 9000 ONTIMEOUT poweroff.com - Sebastian
* gfxboot: align buffers and move them into bssH. Peter Anvin2009-05-011-1/+1
| | | | | | | | | Align I/O buffers to a multiple of 512 bytes, as required by the Syslinux ABI. Furthermore, move them from data to bss, so that they don't occupy space in the image file. Signed-off-by: H. Peter Anvin <hpa@zytor.com> Acked-by: Sebastian Herbszt <herbszt@gmx.de>
* Fix NASM dependency generationH. Peter Anvin2009-04-271-1/+1
| | | | | | | | | Fix missing -M from NASM dependency generation calls; adopt the uniform stanza "-M -DDEPEND" even for sites that were already correct. Also, use ">" not ">>" for obvious reasons... Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* Unify dependency generation: MCONFIG.embeddedH. Peter Anvin2009-04-271-7/+4
| | | | | | | Unify dependency generation and move common rules into MCONFIG.embedded. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* Gfxboot COMBOOT moduleSebastian Herbszt2009-04-071-1/+1
| | | | | A COMBOOT module to interface to Steffen Winterfeldt's Gfxboot graphical front end (http://gfxboot.sourceforge.net/).
* Fix "make clean" confusionsyslinux-3.72H. Peter Anvin2008-09-251-1/+1
| | | | | | | | "make clean" must NOT remove stuff that "make installer" should not rebuild. This is a somewhat unfortunate choice of naming, but that's the way it is. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* Add pxechain.com; new modules direction; reorganize installationH. Peter Anvin2008-08-271-0/+63
Add the pxechain module from Jeffery Hutzelman at CMU. Create new modules directory for non-com32 modules. Centralize installation, since we have three types of install, and only one of them was distributed. Signed-off-by: H. Peter Anvin <hpa@zytor.com>