File: TODO

package info (click to toggle)
syslinux 1.66-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,192 kB
  • ctags: 2,528
  • sloc: asm: 11,376; ansic: 1,505; perl: 487; makefile: 248; pascal: 126; sh: 6
file content (38 lines) | stat: -rw-r--r-- 1,538 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
- Clean up the command-line parsing.

- Cleaned up documentation, with a real man page.

- Support for clusters larger than 16K.  This would require changing
  a lot of the SYSLINUX internals so we can read partial clusters;
  change the current "cluster pointers" to become
  "cluster:sector pointers".  (32K may be doable.)  Microsoft
  documentation claims that 32K is the maximum legal value although
  "some versions of some systems allow 64K".

- EBIOS support.

- FAT32 support?

- Support initrd that span multiple input media?

- Support a small set of DOS system calls for COMBOOT images?  Serial
  console support makes this particularly desirable; otherwise the
  user could just use the BIOS I/O calls, but that won't work with the
  serial port.  A feasible set would be the following:
    00h	   - Terminate program
    01h	   - Read char with echo (return char AL)
    02h	   - Display character (in DL)
    08h	   - Read Keyboard Without Echo (return char in AL)
    09h	   - Display string (DS:DX -> end string in $)
    0Bh	   - Check keyboard status (AL = 0FFh if char avail; AL = 00h if not)
    30h	   - Get version number (return AX=0000h BX=0000h CX=0000h)
    4Ch	   - Terminate program

  ... in addition to INT 20h (Terminate program), of course.

- Factor out common and filesystem-specific code into files, even if
  they have to be %includes rather than genuine modules.

- Add "localboot" support to SYSLINUX (using the ISOLINUX feature set.)

- Support booting foreign OS disk images in PXELINUX/ISOLINUX.