[vyatta-svn] syslinux: Changes to 'master'

Rick Balocca rbalocca at suva.vyatta.com
Mon Jan 1 19:18:52 PST 2007


 dev/null                           |binary
 mkdiskimage                        |  272 -----------
 Makefile                           |   37 -
 NEWS                               |   94 +++
 README                             |    2 
 README.menu                        |  171 ++++++
 README.usbkey                      |    2 
 TODO                               |    9 
 abort.inc                          |   53 ++
 bcopy32.inc                        |   12 
 bin2c.pl                           |    3 
 bin2hex.pl                         |    8 
 bios.inc                           |    5 
 bootsect.inc                       |   15 
 cache.inc                          |    5 
 checkov.pl                         |   80 +++
 cmdline.inc                        |   14 
 com32.inc                          |   28 -
 com32/LICENCE                      |    6 
 com32/include/colortbl.h           |   53 ++
 com32/include/com32.h              |   60 +-
 com32/include/console.h            |   13 
 com32/include/cpufeature.h         |  127 +++++
 com32/include/cpuid.h              |  228 +++++++++
 com32/include/dev.h                |    8 
 com32/include/dmi/dmi.h            |   80 +++
 com32/include/dmi/dmi_base_board.h |   57 ++
 com32/include/dmi/dmi_bios.h       |  148 ++++++
 com32/include/dmi/dmi_chassis.h    |  123 +++++
 com32/include/dmi/dmi_processor.h  |  482 +++++++++++++++++++
 com32/include/dmi/dmi_system.h     |   36 +
 com32/include/errno.h              |    1 
 com32/include/klibc/archsetjmp.h   |   19 
 com32/include/math.h               |    8 
 com32/include/minmax.h             |    8 
 com32/include/netinet/in.h         |    3 
 com32/include/png.h                |    6 
 com32/include/pngconf.h            |   28 -
 com32/include/setjmp.h             |   43 +
 com32/include/stdbool.h            |    1 
 com32/include/stdint.h             |    4 
 com32/include/sys/cpu.h            |    2 
 com32/include/sys/fpu.h            |    6 
 com32/include/sys/pci.h            |   36 +
 com32/include/sys/stat.h           |    9 
 com32/include/sys/types.h          |    2 
 com32/include/syslinux.h           |    7 
 com32/include/tinyjpeg.h           |   75 +++
 com32/include/unistd.h             |    1 
 com32/include/zconf.h              |    1 
 com32/lib/MCONFIG                  |   14 
 com32/lib/Makefile                 |   54 +-
 com32/lib/abort.c                  |    1 
 com32/lib/asprintf.c               |    2 
 com32/lib/atexit.h                 |    1 
 com32/lib/calloc.c                 |    1 
 com32/lib/ctypes.c                 |    2 
 com32/lib/exit.c                   |    7 
 com32/lib/fgetc.c                  |    1 
 com32/lib/fgets.c                  |    8 
 com32/lib/getopt.c                 |    4 
 com32/lib/jpeg/README              |   32 +
 com32/lib/jpeg/bgr24.c             |  362 ++++++++++++++
 com32/lib/jpeg/bgra32.c            |  380 +++++++++++++++
 com32/lib/jpeg/decode1.c           |  138 +++++
 com32/lib/jpeg/decode3.c           |  142 +++++
 com32/lib/jpeg/grey.c              |  170 ++++++
 com32/lib/jpeg/jidctflt.c          |  286 +++++++++++
 com32/lib/jpeg/rgb24.c             |  361 ++++++++++++++
 com32/lib/jpeg/rgba32.c            |  377 +++++++++++++++
 com32/lib/jpeg/tinyjpeg-internal.h |  187 +++++++
 com32/lib/jpeg/tinyjpeg.c          |  910 +++++++++++++++++++++++++++++++++++++
 com32/lib/jpeg/yuv420p.c           |  255 ++++++++++
 com32/lib/libgcc/__ashldi3.S       |    4 
 com32/lib/libgcc/__ashrdi3.S       |    4 
 com32/lib/libgcc/__divdi3.c        |    2 
 com32/lib/libgcc/__lshrdi3.S       |    4 
 com32/lib/libgcc/__moddi3.c        |    2 
 com32/lib/libgcc/__muldi3.S        |    2 
 com32/lib/libgcc/__negdi2.S        |    2 
 com32/lib/libgcc/__udivmoddi4.c    |    2 
 com32/lib/libpng/CHANGES           |    4 
 com32/lib/libpng/KNOWNBUG          |    1 
 com32/lib/libpng/example.c         |    4 
 com32/lib/libpng/libpng.3          |    1 
 com32/lib/libpng/png.5             |    1 
 com32/lib/libpng/pngerror.c        |    2 
 com32/lib/libpng/pnggccrd.c        |    4 
 com32/lib/libpng/pngpread.c        |    2 
 com32/lib/libpng/pngread.c         |    6 
 com32/lib/libpng/pngrtran.c        |    2 
 com32/lib/libpng/pngset.c          |    2 
 com32/lib/libpng/pngtest.c         |    2 
 com32/lib/lrand48.c                |    3 
 com32/lib/malloc.c                 |   12 
 com32/lib/malloc.h                 |    6 
 com32/lib/math/pow.S               |   25 +
 com32/lib/math/strtod.c            |  160 ++++++
 com32/lib/memcpy.S                 |   36 +
 com32/lib/memswap.c                |    2 
 com32/lib/onexit.c                 |    4 
 com32/lib/pci/cfgtype.c            |   90 +++
 com32/lib/pci/pci.h                |    2 
 com32/lib/pci/readb.c              |    1 
 com32/lib/pci/readbios.c           |   15 
 com32/lib/pci/readl.c              |    1 
 com32/lib/pci/readw.c              |    1 
 com32/lib/pci/readx.c              |   16 
 com32/lib/pci/writeb.c             |    1 
 com32/lib/pci/writebios.c          |   14 
 com32/lib/pci/writel.c             |    1 
 com32/lib/pci/writew.c             |    1 
 com32/lib/pci/writex.c             |   13 
 com32/lib/putchar.c                |   16 
 com32/lib/qsort.c                  |    3 
 com32/lib/realloc.c                |    3 
 com32/lib/seed48.c                 |    3 
 com32/lib/setjmp.S                 |    7 
 com32/lib/strerror.c               |    1 
 com32/lib/strlcat.c                |    2 
 com32/lib/strlcpy.c                |    2 
 com32/lib/strlen.c                 |    1 
 com32/lib/strrchr.c                |    2 
 com32/lib/strspn.c                 |    3 
 com32/lib/strtok.c                 |    1 
 com32/lib/sys/ansi.c               |  437 +++++++++++++++++
 com32/lib/sys/ansi.h               |   64 ++
 com32/lib/sys/ansicon_write.c      |  571 +++++------------------
 com32/lib/sys/ansiserial_write.c   |   18 
 com32/lib/sys/argv.c               |   10 
 com32/lib/sys/close.c              |   12 
 com32/lib/sys/colortable.c         |    9 
 com32/lib/sys/entry.S              |   11 
 com32/lib/sys/err_read.c           |    7 
 com32/lib/sys/err_write.c          |    7 
 com32/lib/sys/exit.S               |    5 
 com32/lib/sys/farcall.c            |   11 
 com32/lib/sys/file.h               |   16 
 com32/lib/sys/fileclose.c          |    7 
 com32/lib/sys/fileread.c           |    9 
 com32/lib/sys/fstat.c              |   56 ++
 com32/lib/sys/ftell.c              |    4 
 com32/lib/sys/idle.c               |   20 
 com32/lib/sys/intcall.c            |   10 
 com32/lib/sys/isatty.c             |    8 
 com32/lib/sys/line_input.c         |   14 
 com32/lib/sys/null_read.c          |    7 
 com32/lib/sys/null_write.c         |    7 
 com32/lib/sys/open.c               |   16 
 com32/lib/sys/openconsole.c        |    7 
 com32/lib/sys/opendev.c            |   48 +
 com32/lib/sys/rawcon_read.c        |   10 
 com32/lib/sys/rawcon_write.c       |    9 
 com32/lib/sys/read.c               |    9 
 com32/lib/sys/screensize.c         |   23 
 com32/lib/sys/serial_write.c       |   10 
 com32/lib/sys/stdcon_read.c        |    8 
 com32/lib/sys/stdcon_write.c       |   10 
 com32/lib/sys/times.c              |    7 
 com32/lib/sys/vesa/.alphatbl.o.d   |    3 
 com32/lib/sys/vesa/alphatbl.o      |binary
 com32/lib/sys/vesa/alphatbl.pl     |   54 ++
 com32/lib/sys/vesa/background.c    |  304 ++++++++++++
 com32/lib/sys/vesa/background.o    |binary
 com32/lib/sys/vesa/drawtxt.c       |  332 +++++++++++++
 com32/lib/sys/vesa/drawtxt.o       |binary
 com32/lib/sys/vesa/fill.h          |   66 ++
 com32/lib/sys/vesa/fmtpixel.h      |   76 +++
 com32/lib/sys/vesa/initvesa.c      |  282 +++++++++++
 com32/lib/sys/vesa/initvesa.o      |binary
 com32/lib/sys/vesa/vesa.h          |  100 ++++
 com32/lib/sys/vesa/video.h         |   81 +++
 com32/lib/sys/vesacon_write.c      |  171 ++++++
 com32/lib/sys/vesaserial_write.c   |   60 ++
 com32/lib/sys/write.c              |    7 
 com32/lib/sys/x86_init_fpu.c       |   58 ++
 com32/lib/sys/xserial_write.c      |  116 ++++
 com32/lib/vasprintf.c              |    2 
 com32/lib/vsnprintf.c              |    6 
 com32/lib/vsscanf.c                |   12 
 com32/lib/zlib/adler32.c           |    1 
 com32/lib/zlib/compress.c          |    1 
 com32/lib/zlib/crc32.c             |    1 
 com32/lib/zlib/deflate.c           |    1 
 com32/lib/zlib/deflate.h           |    1 
 com32/lib/zlib/example.c           |    1 
 com32/lib/zlib/gzio.c              |    1 
 com32/lib/zlib/minigzip.c          |    1 
 com32/lib/zlib/trees.c             |    1 
 com32/lib/zlib/trees.h             |    1 
 com32/lib/zlib/uncompr.c           |    1 
 com32/lib/zlib/zconf.in.h          |    1 
 com32/lib/zlib/zutil.c             |    1 
 com32/lib/zlib/zutil.h             |    1 
 com32/libutil/Makefile             |   13 
 com32/libutil/ansiline.c           |   12 
 com32/libutil/ansiraw.c            |   12 
 com32/libutil/get_key.c            |   25 -
 com32/libutil/idle.c               |    7 
 com32/libutil/include/base64.h     |    7 
 com32/libutil/include/consoles.h   |    8 
 com32/libutil/include/getkey.h     |   12 
 com32/libutil/include/libutil.h    |    7 
 com32/libutil/include/loadfile.h   |   12 
 com32/libutil/include/minmax.h     |    8 
 com32/libutil/include/movebits.h   |   47 +
 com32/libutil/loadfile.c           |   69 ++
 com32/libutil/movebits.c           |  433 +++++++++++++++++
 com32/libutil/sha1hash.c           |   12 
 com32/libutil/unbase64.c           |   17 
 com32/modules/Makefile             |   26 -
 com32/modules/chain.c              |   21 
 com32/modules/cpuid.c              |  371 +++++++++++++++
 com32/modules/cpuidtest.c          |   82 +++
 com32/modules/dmi.c                |  488 +++++++++++++++++++
 com32/modules/dmi_utils.c          |   52 ++
 com32/modules/dmitest.c            |  146 +++++
 com32/modules/ethersel.c           |   23 
 com32/modules/i386-elf.h           |   24 
 com32/modules/mb_header.h          |    6 
 com32/modules/mb_info.h            |   26 -
 com32/modules/mboot.c              |  290 ++++++-----
 com32/modules/mboot.doc            |    3 
 com32/modules/menu.c               |  609 ------------------------
 com32/modules/menu.h               |   41 +
 com32/modules/menumain.c           |  887 ++++++++++++++++++++++++++++++++++++
 com32/modules/pci.c                |  191 +++++++
 com32/modules/pcitest.c            |   70 ++
 com32/modules/readconfig.c         |  379 +++++++++++++--
 com32/modules/vesamenu.c           |   42 +
 com32/samples/Makefile             |    7 
 com32/samples/fancyhello.c         |    3 
 com32/samples/hello.c              |    5 
 com32/samples/keytest.c            |    7 
 com32/samples/resolv.c             |    5 
 com32/samples/vesainfo.c           |   83 +++
 comboot.doc                        |  141 +++++
 comboot.inc                        |  225 +++++++--
 config.inc                         |    5 
 conio.inc                          |   23 
 copybs.asm                         |    9 
 copybs.com                         |    0 
 cpuinit.inc                        |    6 
 distrib.doc                        |    1 
 dnsresolv.inc                      |   20 
 dos/Makefile                       |    6 
 dos/__divdi3.c                     |    2 
 dos/__udivmoddi4.c                 |    2 
 dos/argv.c                         |    8 
 dos/atou.c                         |    1 
 dos/conio.c                        |    3 
 dos/crt0.S                         |    6 
 dos/malloc.c                       |    8 
 dos/memcpy.S                       |    1 
 dos/memset.S                       |    1 
 dos/perror.c                       |    1 
 dos/printf.c                       |   45 -
 dos/skipatou.c                     |    2 
 dos/stdio.h                        |    1 
 dos/syslinux.c                     |   58 +-
 dos/syslinux.com                   |binary
 ext2_fs.inc                        |  134 +++--
 extlinux.asm                       |  558 +++++++++++++---------
 extlinux.bin                       |binary
 extlinux.bss                       |binary
 extlinux.doc                       |   23 
 extlinux.sys                       |binary
 extlinux/Makefile                  |    5 
 extlinux/ext2_fs.h                 |    4 
 extlinux/extlinux.c                |  152 ++++--
 font.inc                           |   31 -
 genhash.pl                         |    2 
 getc.inc                           |    3 
 gethostip.c                        |    3 
 graphics.inc                       |   40 +
 head.inc                           |   30 +
 highmem.inc                        |    9 
 init.inc                           |    4 
 isolinux-debug.asm                 |    2 
 isolinux-debug.bin                 |binary
 isolinux.asm                       |  100 +---
 isolinux.bin                       |binary
 isolinux.doc                       |    2 
 kernel.inc                         |    5 
 keytab-lilo.doc                    |   76 +--
 keywords                           |    2 
 keywords.inc                       |   10 
 kwdhash.gen                        |    2 
 layout.inc                         |   29 -
 ldlinux.asm                        |  361 ++++++--------
 ldlinux.bin                        |binary
 ldlinux.bss                        |binary
 ldlinux.sys                        |binary
 libfat/cache.c                     |   11 
 libfat/fat.h                       |    8 
 libfat/fatchain.c                  |   12 
 libfat/libfat.h                    |    4 
 libfat/libfatint.h                 |    5 
 libfat/open.c                      |   17 
 libfat/searchdir.c                 |    9 
 libfat/ulint.h                     |    7 
 loadhigh.inc                       |   38 -
 lss16toppm                         |    3 
 macros.inc                         |    5 
 mbr.asm                            |   14 
 memdisk/.depend                    |   27 +
 memdisk/Makefile                   |   12 
 memdisk/conio.c                    |   52 +-
 memdisk/conio.h                    |    3 
 memdisk/e820.h                     |    3 
 memdisk/e820func.c                 |    8 
 memdisk/e820test.c                 |   11 
 memdisk/inflate.c                  |   20 
 memdisk/memcpy.S                   |    1 
 memdisk/memdisk                    |binary
 memdisk/memdisk.asm                |  200 +++++++-
 memdisk/memdisk.doc                |   27 -
 memdisk/memdisk.h                  |    5 
 memdisk/memdisk16.asm              |   21 
 memdisk/memset.S                   |    1 
 memdisk/msetup.c                   |    9 
 memdisk/postprocess.pl             |    4 
 memdisk/setup.c                    |   88 +--
 memdisk/start32.S                  |    1 
 memdisk/unzip.c                    |   24 
 memdisk/version.h                  |    3 
 menu/CHANGES                       |   24 
 menu/HISTORY                       |    8 
 menu/MANUAL                        |  166 +++---
 menu/MENU_FORMAT                   |  262 ++++++++++
 menu/Makefile                      |   36 -
 menu/README                        |   44 -
 menu/TODO                          |   11 
 menu/adv_menu.tpl                  |  452 ++++++++++++++++++
 menu/complex.c                     |   25 -
 menu/display.c                     |   37 +
 menu/libmenu/com32io.c             |   29 -
 menu/libmenu/com32io.h             |   35 +
 menu/libmenu/des.c                 |   33 -
 menu/libmenu/des.h                 |    1 
 menu/libmenu/help.c                |  166 +++++-
 menu/libmenu/help.h                |   12 
 menu/libmenu/menu.c                |  329 +++++++++----
 menu/libmenu/menu.h                |   94 +--
 menu/libmenu/passwords.c           |   16 
 menu/libmenu/passwords.h           |    4 
 menu/libmenu/scancodes.h           |   13 
 menu/libmenu/syslnx.c              |   52 +-
 menu/libmenu/syslnx.h              |   21 
 menu/libmenu/tui.c                 |   43 -
 menu/libmenu/tui.h                 |   21 
 menu/menugen.py                    |  307 ++++++++++++
 menu/password                      |    7 
 menu/simple.c                      |   37 -
 menu/test.menu                     |   60 ++
 menu/test2.menu                    |  142 +++++
 mkdiskimage.in                     |   11 
 mtools/Makefile                    |    5 
 mtools/syslinux.c                  |   11 
 now.pl                             |    1 
 parsecmd.inc                       |    9 
 parseconfig.inc                    |   71 +-
 plaincon.inc                       |   24 
 ppmtolss16                         |   15 
 pxe.inc                            |  150 +++---
 pxelinux.0                         |binary
 pxelinux.asm                       |  200 ++------
 pxelinux.doc                       |   15 
 rawcon.inc                         |    7 
 regdump.inc                        |    3 
 rllpack.inc                        |    7 
 runkernel.inc                      |   22 
 sample/Makefile                    |    6 
 sample/atou.c                      |    1 
 sample/c32echo.c                   |    3 
 sample/c32entry.S                  |    9 
 sample/comecho.asm                 |    9 
 sample/comecho.com                 |    0 
 sample/conio.c                     |    5 
 sample/fd.c                        |    6 
 sample/filetest.c                  |    6 
 sample/hello.c                     |    3 
 sample/hello2.c                    |    5 
 sample/m16-640x640-syslinux.jpg    |binary
 sample/mdiskchk.c                  |    9 
 sample/printf.c                    |   45 -
 sample/sample.msg                  |    2 
 sample/skipatou.c                  |    2 
 sample/syslinux_splash.jpg         |binary
 sample/syslogo.lss                 |    0 
 sha1pass                           |    2 
 stack.inc                          |   46 +
 strcpy.inc                         |    1 
 strecpy.inc                        |   28 +
 sys2ansi.pl                        |    1 
 syslinux.doc                       |   34 +
 syslinux.h                         |    3 
 syslinux.spec                      |   84 ++-
 syslxmod.c                         |   14 
 tracers.inc                        |    5 
 ui.inc                             |  136 +++--
 unix/Makefile                      |    5 
 unix/syslinux.c                    |   12 
 version                            |    2 
 version.gen                        |    4 
 version.h                          |    4 
 version.pl                         |    2 
 win32/Makefile                     |    5 
 win32/hello.exe                    |binary
 win32/syslinux.c                   |   62 +-
 writehex.inc                       |    4 
 writestr.inc                       |    3 
 412 files changed, 16898 insertions(+), 4019 deletions(-)

New commits:
commit 0d5734bd250d9c2e62feb96f0765efaa2b0382aa
Author: Rick Balocca <rbalocca at phuket.vyatta.com>
Date:   Mon Jan 1 19:18:00 2007 -0800

    Files added/deleted in latest syslinux version

commit 771252a833a7c2f8f3aae4be36187a9ae60efff1
Author: Rick Balocca <rbalocca at phuket.vyatta.com>
Date:   Mon Jan 1 19:11:47 2007 -0800

    Update syslinux to latest version
    
    wget http://freshmeat.net/redir/syslinux/10177/url_tgz/syslinux-3.31.tar.gz

http://suva.vyatta.com/git/?p=syslinux.git;a=commitdiff;h=0d5734bd250d9c2e62feb96f0765efaa2b0382aa


More information about the svn mailing list