summaryrefslogtreecommitdiff
path: root/core/config.inc
Commit message (Collapse)AuthorAgeFilesLines
* core: remove HAS_LOCALBOOTSebastian Herbszt2010-12-161-5/+0
| | | | | | | HAS_LOCALBOOT is set unconditionally in config.inc. Signed-off-by: Sebastian Herbszt <herbszt@gmx.de> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* core: make FILENAME_MAX common; librarize mangle/unmangleH. Peter Anvin2009-08-121-0/+6
| | | | | | | | FILENAME_MAX was 2^8 in all variants by now; make it a common define. Libraries mangle/unmangle; we have generic_mangle_name for Unix-like filesystems, and unmangle now defaults to simple strcpy. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* a20: remove DO_WBINVD configurableH. Peter Anvin2009-04-211-2/+0
| | | | | | | | We haven't enabled DO_WBINVD for a very long time. A20 is implemented on the inside of the L1 cache for 486+ (and 386 didn't have WBINVD), so an I/O delay is the only thing we can rely on anyway. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
* Update copyright noticesH. Peter Anvin2009-04-041-1/+2
| | | | Update copyright notices; add Intel copyright notices where appropriate.
* shuffler: first cut of a simpler shuffle routineH. Peter Anvin2009-03-311-11/+0
| | | | | | | | | | | | Impact: major restructuring New shuffler routine which runs entirely in protected mode, unlike the old one which would enter PM for the bcopy phase only. This is not only faster, but it greatly reduces the size of the shuffler "critical area". The interfaces to this new shuffler are not yet implemented, so this is a non-functional checkpoint. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* Use YEAR, not the obsolete macro yearH. Peter Anvin2009-02-271-5/+0
|
* Share the gen-id stuff between core and memdiskH. Peter Anvin2008-07-071-2/+0
| | | | Both core and memdisk wants to use the gen-id stuff, so let it.
* Drop macros that just point to other macrosH. Peter Anvin2008-07-071-3/+1
| | | | | Drop macros for "date" and "version_str", which are nothing but redefined names of macros we already define (DATE_STR and VERSION).
* Move files out of root into core, dos, and utilsH. Peter Anvin2008-05-291-0/+60
Move source files out of the root directory; the root is a mess and has become virtually unmaintainable. The Syslinux core now lives in core/; the Linux and generic utilities has moved into utils/, and copybs.com has moved into dos/; it had to go somewhere, and it seemed as good a place as any.