index
:
seabios
guest-hint
kvmtool
master
memory2-logging
microvm
pci-4g-map
pci64-cfg
seabios
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
output.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
output: add support for uppercase hex numbers
Gerd Hoffmann
2020-10-13
1
-22
/
+27
*
output: Avoid thunking to 16bit mode in printf() if no vgabios
Kevin O'Connor
2018-12-17
1
-0
/
+3
*
pci: Split low-level pci code from higher-level 'struct pci_device' code
Kevin O'Connor
2016-02-03
1
-0
/
+1
*
pci: Implement '%pP' printf handler for 'struct pci_device' pointers
Kevin O'Connor
2016-02-03
1
-0
/
+18
*
build: Report gcc and binutils versions in debug log
Kevin O'Connor
2015-10-15
1
-0
/
+1
*
Set the color attribute when calling vgabios print character.
Kevin O'Connor
2014-04-11
1
-0
/
+1
*
debug: Unify the SeaBIOS debug version banner.
Kevin O'Connor
2014-01-22
1
-0
/
+6
*
debug: Only call serial_debug_preinit() at startup.
Kevin O'Connor
2014-01-22
1
-7
/
+0
*
Move low-level hardware writing from output.c to new file hw/serialio.c.
Kevin O'Connor
2013-12-04
1
-71
/
+30
*
Remove ioport.h; disperse its contents to other header files.
Kevin O'Connor
2013-09-28
1
-0
/
+1
*
Move function definitions for output.c from util.h to new file output.h.
Kevin O'Connor
2013-09-18
1
-1
/
+2
*
Move malloc code from pmm.c to new files malloc.c and malloc.h.
Kevin O'Connor
2013-09-18
1
-0
/
+1
*
Move stacks.c definitions from util.h to new file stacks.h.
Kevin O'Connor
2013-09-18
1
-0
/
+1
*
Rename util.c to string.c and introduce string.h.
Kevin O'Connor
2013-09-18
1
-0
/
+1
*
Move code cenetered around firmware initialization to src/fw/
Kevin O'Connor
2013-09-02
1
-1
/
+1
*
coreboot: add cbmem console support
Gerd Hoffmann
2013-07-14
1
-0
/
+2
*
config: allow DEBUG_IO for !QEMU
Gerd Hoffmann
2013-06-12
1
-1
/
+2
*
Convert VAR16VISIBLE, VAR16EXPORT, and VAR32VISIBLE to VARFSEG.
Kevin O'Connor
2013-02-18
1
-1
/
+1
*
Normalize POST initialization function name suffixes.
Kevin O'Connor
2013-02-05
1
-1
/
+1
*
Xen: Autodetect debug I/O port at runtime instead of via Kconfig
Ian Campbell
2012-07-02
1
-1
/
+3
*
Fix winxp boot regression introduced in ecdc655a.
Kevin O'Connor
2012-06-02
1
-0
/
+9
*
Run all hardware irq handlers on the extra stack.
Kevin O'Connor
2012-05-30
1
-9
/
+0
*
output: Add 64bit hex print support.
Kevin O'Connor
2012-03-06
1
-30
/
+44
*
Introduce config option to select which IO port to send debug output on
Julian Pidancet
2012-02-01
1
-2
/
+2
*
Fix serial port flushing code.
Kevin O'Connor
2011-07-10
1
-2
/
+2
*
Replace CONFIG_SCREEN_AND_DEBUG with "etc/screen-and-debug" file.
Kevin O'Connor
2011-07-05
1
-2
/
+2
*
Add Kconfig option to specify which serial port when serial debugging.
Kevin O'Connor
2011-05-10
1
-8
/
+7
*
Remove drive->desc field.
Kevin O'Connor
2010-12-29
1
-0
/
+26
*
Fix bvprintf() to respect padding for hex printing.
Kevin O'Connor
2010-06-19
1
-15
/
+23
*
Add a generic "internal error" warning function.
Kevin O'Connor
2010-02-28
1
-0
/
+8
*
Introduce standard warnings for allocation failures and timeouts.
Kevin O'Connor
2010-02-14
1
-0
/
+15
*
Be sure to add "void" to all function prototypes that take no args.
Kevin O'Connor
2010-01-03
1
-2
/
+2
*
Add support for 32bit PCI BIOS entry.
Kevin O'Connor
2009-12-30
1
-1
/
+3
*
Introduce MODESEGMENT define; rename VISIBLE32 to VISIBLE32FLAT.
Kevin O'Connor
2009-12-26
1
-9
/
+9
*
Distinguish between debug reports for unimplemented vs invalid calls.
Kevin O'Connor
2009-12-13
1
-13
/
+49
*
Update snprintf to return the number of bytes used.
Kevin O'Connor
2009-11-24
1
-3
/
+7
*
Improve debugging output from threads.
Kevin O'Connor
2009-10-24
1
-1
/
+13
*
Cleanup 'debuginfo' variable in output; add comment.
Kevin O'Connor
2009-10-12
1
-2
/
+5
*
Really fix linker issue with "debuginfo" variable.
Kevin O'Connor
2009-10-08
1
-1
/
+5
*
Add VAR16VISIBLE to debuginfo - older gcc doesn't optimize out.
Kevin O'Connor
2009-10-08
1
-1
/
+1
*
Add snprintf support.
Kevin O'Connor
2009-10-07
1
-37
/
+120
*
Silence gcc asm deprectation warning in output.c.
Kevin O'Connor
2009-10-07
1
-2
/
+3
*
Initial support for USB, UHCI, and USB Keyboards.
Kevin O'Connor
2009-09-28
1
-2
/
+2
*
Interrupts should be enabled when calling 16bit code.
Kevin O'Connor
2009-09-24
1
-0
/
+1
*
Replace common segment/offset pairs with struct segoff_s.
Kevin O'Connor
2009-09-09
1
-1
/
+1
*
Add option CONFIG_SCREEN_AND_DEBUG to control printf and debugging.
Kevin O'Connor
2009-08-02
1
-2
/
+2
*
In register dump, show %esp - not address of regs.
Kevin O'Connor
2009-05-27
1
-2
/
+2
*
Support %ebp register in 'struct bregs'.
Kevin O'Connor
2009-05-16
1
-4
/
+5
*
Flush debugging serial output after every line.
Kevin O'Connor
2009-05-15
1
-6
/
+22
*
Improve serial port detection.
Kevin O'Connor
2009-05-12
1
-7
/
+7
[next]