1. 3e832bb Flush debugging serial output after every line. by Kevin O'Connor · 15 years ago
  2. c151b3b Improve serial port detection. by Kevin O'Connor · 15 years ago
  3. f8e176c Move assembler entry macros in romlayout.S into new file entryfuncs.S. by Kevin O'Connor · 15 years ago
  4. 4edb275 Minor - report found serial and lpt ports. by Kevin O'Connor · 15 years ago
  5. 5b199ac Minor - formatting enhancements; add memset_far funcs. by Kevin O'Connor · 15 years ago
  6. f969a08 Minor - verify e820 request is large enough to hold response. by Kevin O'Connor · 15 years ago
  7. 3d29213 Minor - add some additional vga definitions of bda. by Kevin O'Connor · 15 years ago
  8. 7e6dfd8 Detect ps2 nak response. by Kevin O'Connor · 15 years ago
  9. 91b53a7 Add support for field width argument to %x (eg, %08x). by Kevin O'Connor · 15 years ago
  10. b30c400 Don't send ATA error reports when cdrom not ready. by Kevin O'Connor · 15 years ago
  11. 1edc89d Add ability to run all option roms in CBFS directory "genroms/". by Kevin O'Connor · 15 years ago
  12. 217d363 Add config option to set boot menu delay time. by Kevin O'Connor · 15 years ago
  13. cbd6ca0 Add support for compressed option roms. by Kevin O'Connor · 15 years ago
  14. 592323f Add LZMA decompression support to CBFS. by Kevin O'Connor · 15 years ago
  15. 214f6c2 Exit CBFS file search early if zero signature found. by Kevin O'Connor · 15 years ago
  16. 1bedcc0 Minor - simplify add_e820() function. by Kevin O'Connor · 15 years ago
  17. d944114 Fixup previous memcpy optimization. by Kevin O'Connor · 15 years ago
  18. 5d7b3f6 Optimize memcpy. by Kevin O'Connor · 15 years ago
  19. ff8c141 Allow booting from any device when under coreboot. by Kevin O'Connor · 15 years ago
  20. 64cf2fb Try to prevent mapping option roms over flash. by Kevin O'Connor · 15 years ago
  21. 38d1a34 Replace memeq/streq functions with memcmp/strcmp. by Kevin O'Connor · 15 years ago
  22. 425f212 Add support for waiting for drive startup during ATA detect. by Kevin O'Connor · 15 years ago
  23. c36273f Minor - add more debugging output to option rom scanning. by Kevin O'Connor · 15 years ago
  24. ffb81a4 Add option CONFIG_DISABLE_A20 to control disabling A20 on boot. by Kevin O'Connor · 15 years ago
  25. e0504b0 Minor - reset data segments in post32 entry point. by Kevin O'Connor · 15 years ago
  26. f094ba8 Clear irqs in transition32 instead of callers. by Kevin O'Connor · 15 years ago
  27. 79dde65 Minor - reorganize romlayout.S to better group entry points. by Kevin O'Connor · 15 years ago
  28. 674e460 Make sure optionroms have a non-zero size before using them. by Kevin O'Connor · 15 years ago
  29. 6782344 Initial support for running CBFS payloads. by Kevin O'Connor · 15 years ago
  30. 4c0c85a Initial support for finding option roms in coreboot flash layout. by Kevin O'Connor · 15 years ago
  31. 7cf17f2 Rework linker scripts so they work on new version of ld. by Kevin O'Connor · 15 years ago
  32. 071f154 Add high coreboot table support to seabios. by Kevin O'Connor · 15 years ago
  33. a9caeae Minor - reduce forced inlining directives in src/ata.c. by Kevin O'Connor · 15 years ago
  34. 75f49b3 Register int02 handler (nmi); disable NMI by default. by Kevin O'Connor · 15 years ago
  35. d10e444 Minor - improve formatting of src/acpi.c. by Kevin O'Connor · 15 years ago
  36. 4ebc0b7 Consistently disable irqs at start of each assembler entry point. by Kevin O'Connor · 15 years ago
  37. 11ac162 Fix mptable MPCONFIG_SIGNATURE incorrect signature. by Kevin O'Connor · 15 years ago
  38. 6707c30 Support multiple independent root buses (if known at compile time). by Kevin O'Connor · 15 years ago
  39. a69a559 Fix bug in emulator mptable creation - space not reserved. by Kevin O'Connor · 15 years ago
  40. 32945af Don't 'autodetect' ATA PIO32 mode - use compile def instead. by Kevin O'Connor · 15 years ago
  41. d626e55 Minor - cleanup return code of floppy_media_sense. by Kevin O'Connor · 15 years ago
  42. 47e2093 Copy mptable floater and config tables when on coreboot. by Kevin O'Connor · 15 years ago
  43. 3574644 Build mptable using C 'struct's. by Kevin O'Connor · 15 years ago
  44. 5d8ec3e Minor - simplify add_e820() function. by Kevin O'Connor · 15 years ago
  45. 9caf786 Save/restore %ebp in __call16 instead of in caller (call16). by Kevin O'Connor · 15 years ago
  46. 1eba429 Add hexdump() output helper function. by Kevin O'Connor · 15 years ago
  47. 6a46a42 Fix typo causing atapi drive type misreport. by Kevin O'Connor · 15 years ago
  48. 0763381 Clear out the BiosTableSpace array on each boot. by Kevin O'Connor · 15 years ago
  49. 5c0c4b7 Bug fix - cdrom media emulation only moves drives if of the same type. by Kevin O'Connor · 15 years ago
  50. 7da1dcd Enhance boot menu to allow user to select which CD drive to boot from. by Kevin O'Connor · 15 years ago
  51. 4f5586c Fix RTC UIP timing. by Kevin O'Connor · 15 years ago
  52. 94fd47e Minor - change checksum functions to take a (void *). by Kevin O'Connor · 15 years ago
  53. 5ca4b95 Allow ctrl+alt+delete to work when no boot device found. by Kevin O'Connor · 15 years ago
  54. f358759 Clock cleanups. by Kevin O'Connor · 15 years ago
  55. a0c6879 Enhance cdrom capacity/media sensing timers. by Kevin O'Connor · 15 years ago
  56. 160f71c Add common ata identify sequence; improve debugging. by Kevin O'Connor · 15 years ago
  57. ab51560 Minor - ata identify commands should use a u16 buffer (not u8). by Kevin O'Connor · 15 years ago
  58. 89f6763 Don't overflow ATA.channels array on machines with > 4 controllers. by Kevin O'Connor · 15 years ago
  59. 0a92412 Add support for selecting harddrive order in boot menu. by Kevin O'Connor · 15 years ago
  60. 8e62a90 Increase default CONFIG_MAX_BIOSTABLE setting. by Kevin O'Connor · 15 years ago
  61. e07e18e Minor - rename BX_PANIC to panic. by Kevin O'Connor · 15 years ago
  62. 71f036d Simplify boot code. by Kevin O'Connor · 15 years ago
  63. 9f4e1d9 Reorganize boot code. by Kevin O'Connor · 15 years ago
  64. 60b6999 Minor - remove permanent_halt function. by Kevin O'Connor · 15 years ago
  65. a3b612e More floppy code cleanups. by Kevin O'Connor · 15 years ago
  66. 7661f2f Minor floppy cleanups. by Kevin O'Connor · 15 years ago
  67. 95827c4 Introduce MBR struct; simplify cdrom emulation code. by Kevin O'Connor · 15 years ago
  68. 5eac1dd Suppress initialized variable compile warning in ata.c. by Kevin O'Connor · 15 years ago
  69. 580e332 Cleanup ATA code; get SATA drives working on real hardware. by Kevin O'Connor · 15 years ago
  70. eac894d Don't mask irqs in default hardware irq handler. by Kevin O'Connor · 15 years ago
  71. 423a04d Add pci_to_bdf() helper function. by Kevin O'Connor · 15 years ago
  72. ef3d882 Make sure to clear global variables before use. by Kevin O'Connor · 15 years ago
  73. af473a4 Don't declare a handler for int 0x1c - the default handler is sufficient. by Kevin O'Connor · 15 years ago
  74. d99908e Minor - use a struct when working with pcibios 1ab10e param. by Kevin O'Connor · 16 years ago
  75. 885e2dd Minor enhancement - kbd reset should set 0x1234 in BDA reset flag. by Kevin O'Connor · 16 years ago
  76. 7d10821 Fix apparent bug in int1348 -- checksum didn't have regs->si offset. by Kevin O'Connor · 16 years ago
  77. 273e8ae Minor - call16 should not assume %cs==SEG_BIOS. by Kevin O'Connor · 16 years ago
  78. 8b267cb Implement memcpy_far and checksum_far, and replace _fl variants. by Kevin O'Connor · 16 years ago
  79. 79f4118 Allow GET/SET_SEG asm to access memory or a register. by Kevin O'Connor · 16 years ago
  80. 35ae726 Rename MAKE_FARPTR (and similar) to MAKE_FLATPTR. by Kevin O'Connor · 16 years ago
  81. a9e286d Minor - streamline SET_GLOBAL macro - reduce #if usage. by Kevin O'Connor · 16 years ago
  82. faab1b3 Minor - always set %esp immediately after setting %ss. by Kevin O'Connor · 16 years ago
  83. 590e715 Fix apparent bug in 16bit resume code. by Kevin O'Connor · 16 years ago
  84. dfc18fc Fix apparent bug in pci bios handle_1ab10e function. by Kevin O'Connor · 16 years ago
  85. 235df20 Cleanup ps2 port reset handling. by Kevin O'Connor · 16 years ago
  86. b44a852 Cleanup keyboard reset handling. by Kevin O'Connor · 16 years ago
  87. 0d9e673 Add extra test for CONFIG_ATA in src/disk.c. by Kevin O'Connor · 16 years ago
  88. b24c574 Add CONFIG_S3_RESUME to control support for S3 resume. by Kevin O'Connor · 16 years ago
  89. 0b6f2eb Don't assume __call16_from32 and __call16 are linear in romlayout.S. by Kevin O'Connor · 16 years ago
  90. f509237 Fix minor bug in ps2port.c - can't check for -1 with unsigned return type. by Kevin O'Connor · 16 years ago
  91. df2c19a Reserve space for buffers in f-segment; don't allocate from freespace. by Kevin O'Connor · 16 years ago
  92. f5d025a Minor - don't force align the 32 bss. by Kevin O'Connor · 16 years ago
  93. d67a703 Put each assembler function into its own section. by Kevin O'Connor · 16 years ago
  94. 3085376 Move variables from assembler to C code. by Kevin O'Connor · 16 years ago
  95. 095e89b Remove some unused IRQ_TRAMPOLINE definitions. by Kevin O'Connor · 16 years ago
  96. 711ddc6 Try to automatically fit sections into open spaces in the fixed area. by Kevin O'Connor · 16 years ago
  97. 202024a Layout fixed area using linker instead of assembler. by Kevin O'Connor · 16 years ago
  98. 9e91c7b Misc fixes. by Kevin O'Connor · 16 years ago
  99. b1b7c2a Change license from GPLv3 to LGPLv3. by Kevin O'Connor · 16 years ago
  100. 7061eb6 Initial KVM support. by Kevin O'Connor · 16 years ago