summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* FAT: Support VFAT long filenamessyslinux-3.70-pre13H. Peter Anvin2008-06-064-12/+176
| | | | | | | Initial support for VFAT long filenames; currently hard-coded to codepage 865, no support for other codepages or for accessing files with names which aren't in the current codepage. This hopefully shouldn't be an issue for SYSLINUX applications.
* core: fail the link if we push above the 64K pointH. Peter Anvin2008-06-051-0/+2
| | | | If the base section stuff exceeds 64K, then fail.
* codepage: add "make spotless" targetH. Peter Anvin2008-06-051-0/+2
|
* Add support for creating codepage/Unicode mapping tablesH. Peter Anvin2008-06-058-1/+1235
| | | | | Add support for creating codepage/Unicode mapping tables; this is a step toward VFAT long filename support.
* pxelinux: remove RBFG sectionH. Peter Anvin2008-06-051-6/+1
| | | | | We haven't had the RBFG section in the proper place for quite a while, and there are better options than RBFG now anyway, so just drop it.
* core: actually enable debugging infoH. Peter Anvin2008-06-051-1/+1
| | | | Need to use -g -F stabs, not just -F stabs.
* Update gPXE from gPXE gitH. Peter Anvin2008-06-0463-743/+3156
|
* pxelinux: add colon to label by itselfH. Peter Anvin2008-06-041-1/+1
| | | | | Newer versions of NASM warn about a label on a line by itself (because it could have been a typoed opcode.) Add a colon.
* Centralize configurables; better "make install" etcH. Peter Anvin2008-05-2911-108/+107
| | | | | | | Begin the process of centralizing configurables. Improve "make install" and "make netinstall"; add "make extbootinstall".
* Shut up gpxe Makefiles when making spotlessH. Peter Anvin2008-05-291-1/+1
| | | | gpxe Makefiles are just way too loud, especially when just cleaning up.
* We're explicitly setting EMBEDDED_IMAGE, so leave src/Config unchangedH. Peter Anvin2008-05-291-5/+0
| | | | | Since we're explicitly setting EMBEDDED_IMAGE in gpxe/Makefile, no need to set src/Config.
* Document change of directory structureH. Peter Anvin2008-05-291-0/+3
|
* core/Makefile: remove vestiges of subdirectory machineryH. Peter Anvin2008-05-291-4/+2
|
* mbr: clean up *_bin.c filesH. Peter Anvin2008-05-291-1/+1
|
* The only thing still in the root is version.{h,gen}; needed earlysyslinux-3.70-pre12H. Peter Anvin2008-05-291-2/+2
| | | | | | The only things we still have in the root is version.h and version.gen. As a result, move all the subdirectories later, since they are common prerequisites.
* mkdir the prerel directoryH. Peter Anvin2008-05-291-0/+1
|
* Stop using CogitoH. Peter Anvin2008-05-291-6/+7
| | | | Replace remaining Cogito commands with plain git commands.
* Move files out of root into core, dos, and utilsH. Peter Anvin2008-05-2988-252/+354
| | | | | | | | 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.
* Fix localboot stack bug; cleanup section handling in the ELF universesyslinux-3.70-pre11H. Peter Anvin2008-05-286-46/+43
| | | | | Fix and clean up section handling in ELF; fix stack reset in localboot directive (for non-pxelinux, that is.)
* Assemble via ELF, to enable future linkingH. Peter Anvin2008-05-2813-58/+168
| | | | | Assemble all files to ELF instead of using the NASM built-in linker. This can enable us to do actual linking in the future.
* pxenv: save away the PXE return code so COMBOOT can return itsyslinux-3.70-pre10H. Peter Anvin2008-05-282-1/+10
| | | | | | | PXELINUX itself doesn't actually use the PXE return code, but the COMBOOT interface is supposed to return it. Accordingly, make sure it is stashed away so we can return it; for code that doesn't care, it just writes a dedicated status variable which can be safely ignored.
* Merge commit 'origin/master' into gpxe-addedH. Peter Anvin2008-05-2825-62/+512
|\ | | | | | | | | | | | | Conflicts: NEWS version
| * Document GPT boot protocol; add !GPT signature3.6xH. Peter Anvin2008-05-132-0/+93
| | | | | | | | | | | | Document the GPT boot protocol; add additional assurance by requiring that EAX contains "!GPT" for the GPT information to be valid.
| * Add NEWS for 3.64syslinux-3.64-pre1H. Peter Anvin2008-05-131-0/+4
| |
| * Merge commit 'origin/gptmbr'H. Peter Anvin2008-05-132-1/+295
| |\
| | * gptmbr: use cltq to extend a zero %eax into %edxH. Peter Anvin2008-02-251-1/+1
| | | | | | | | | | | | | | | Using cltq (cdq) to clear %edx when %eax is zero is cheaper by one byte.
| | * gptmbr: Add commentH. Peter Anvin2008-02-251-1/+1
| | |
| | * gptmbr: save phdr -> bootsect on the stack, saving one byteH. Peter Anvin2008-02-251-2/+4
| | |
| | * gptmbr: another confusion of start and end fieldsH. Peter Anvin2008-02-251-2/+2
| | | | | | | | | | | | Use the start field for the boot sector address...
| | * gptmbr: fix confusion between start and end fieldsH. Peter Anvin2008-02-251-2/+4
| | | | | | | | | | | | | | | | | | Fix a case of bad confusion of the start and end fields (length = end-start+1, so we can't easily reuse the load of the start field.)
| | * gptmbr: use xchgw %ax,... instead of movw %ax,... when %ax is deadH. Peter Anvin2008-02-251-1/+1
| | | | | | | | | | | | | | | xhcgw with %ax and a register is one byte shorter than movw with %ax if %ax is then dead.
| | * gptmbr: Use %bp for references into phdr and the stackH. Peter Anvin2008-02-251-20/+19
| | | | | | | | | | | | | | | | | | Set up %bp as a permanent frame pointer and use it to reference stack and phdr fields; by putting phdr in the bootsect slot we can use it for phdr references with small displacements. This saves 5 bytes.
| | * gptmbr: since %bx is advanced, we can test -2(%bx) == (bootsec+510)H. Peter Anvin2008-02-251-1/+1
| | | | | | | | | | | | | | | With %bx advanced to the end of the boot sector, we can use -2(%bx) instead of (bootsec+510), thus saving one byte.
| | * gptmbr: addw $512, %bx -> addb $2, %bhH. Peter Anvin2008-02-251-1/+1
| | | | | | | | | | | | Save one byte...
| | * gptmbr: offsets into phdr are decimal, not hexH. Peter Anvin2008-02-251-4/+4
| | | | | | | | | | | | The offsets into phdr, from the EFI spec, are in decimal, not hex.
| | * gptmbr: move advancing %bx into read_sectorH. Peter Anvin2008-02-251-4/+3
| | | | | | | | | | | | Move the advancing of %bx into read_sector, saving 3 bytes.
| | * gptmbr: need to set %bx -> bootsecH. Peter Anvin2008-02-251-0/+1
| | | | | | | | | | | | | | | | | | Need to tell read_sector where to load the boot sector (unlike the MBR code, where we always loaded into 0x7c00, this code uses multiple buffers.)
| | * gptmbr: shuffle slightly to reduce register pressureH. Peter Anvin2008-02-251-6/+3
| | | | | | | | | | | | | | | Shuffle some code slightly to reduce register pressure; no size change but this might make the code easier to follow and/or change.
| | * gptmbr: shuffle slightly to save 3 bytesH. Peter Anvin2008-02-251-14/+17
| | | | | | | | | | | | Shuffle some code to reduce the total size by 3 bytes
| | * rep; cmpsw -> repe; cmpswH. Peter Anvin2008-02-251-1/+1
| | | | | | | | | | | | Same instruction, but repe is more correct for cmpsw
| | * Master boot record for GPT partition tablesH. Peter Anvin2008-02-252-1/+292
| | | | | | | | | | | | Beginnings of a master boot record for GPT partition tables.
| * | Fixed the various Makefiles so that SYSLINUX compiles on platforms with GCC ↵Stefan Bucur2008-05-1210-10/+14
| | | | | | | | | | | | -fstack-protector flag enabled by default.
| * | chain.c32: fix booting from logical partitionsSergey Vlasov2008-04-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Booting from a logical partition failed with the "Requested logical partition not found" error due to a wrong test for partition signature in find_logical_partition(). Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>
| * | Next version on this branch would be 3.64H. Peter Anvin2008-04-201-1/+1
| | |
| * | localboot.inc: file missing from previous checkinH. Peter Anvin2008-04-201-0/+78
| | |
| * | Support LOCALBOOT (ISOLINUX-style) in SYSLINUX/EXTLINUXH. Peter Anvin2008-04-1910-47/+24
| | | | | | | | | | | | | | | Add support for ISOLINUX-style LOCALBOOT in SYSLINUX/EXTLINUX. No way to do the same for PXELINUX, due to the keyword collision. Suck.
| * | syslinux 3.63: Use $(CC) for examining compiler optionsMaciej W. Rozycki2008-04-171-1/+1
| | | | | | | | | | | | | | | Following changes to other Makefiles use $(CC) for examining compiler options here as well.
| * | syslinux 3.63: Rename $GZIP to $GZIPPROGMaciej W. Rozycki2008-04-171-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the variable GZIP exists in the environment, overriding it in the Makefile exports it into the environment, causing failures: gzip -cd syslogo.ppm.gz | \ ../ppmtolss16 \#000000=0 \#d0d0d0=7 \#f6f6f6=15 \ > syslogo.lss gzip.gz: No such file or directory 204480 pixels, 25715 bytes, (74.85% compression) Use $GZIPPROG instead.
* | | Merge commit 'syslinux-3.63' into gpxe-addedsyslinux-3.70-pre9H. Peter Anvin2008-04-107-196/+465
|\ \ \ | |/ / | | | | | | | | | | | | | | | Conflicts: NEWS com32/modules/Makefile
| * | NEWS: Add link to MSDN article on how to build a ramdisk image.syslinux-3.63H. Peter Anvin2008-04-091-0/+2
| | | | | | | | | | | | Hopefully other users might have better luck than me :-/