History log of /netbsd-src/sys/arch/prep/stand/boot/vreset.c (Results 1 – 11 of 11)
Revision Date Author Comments
# c10545c3 06-May-2023 andvar <andvar@NetBSD.org>

s/regster/register/ in comments and error messages.


# cde8f271 16-Feb-2022 riastradh <riastradh@NetBSD.org>

powerpc: Sprinkle "memory" clobbers on eieio and nearby asm blocks.

Otherwise the compiler may reorder these around loads and stores,
which mostly defeats the purpose. `asm volatile' just ensures t

powerpc: Sprinkle "memory" clobbers on eieio and nearby asm blocks.

Otherwise the compiler may reorder these around loads and stores,
which mostly defeats the purpose. `asm volatile' just ensures the
instruction isn't _deleted_; it may still move around.

show more ...


# fd97fa0b 03-Apr-2014 mrg <mrg@NetBSD.org>

GCC 4.8 build fixes from John D. Baker


# bba8dbb0 13-Sep-2008 tsutsui <tsutsui@NetBSD.org>

Put a missing newline.


# ce099b40 28-Apr-2008 martin <martin@NetBSD.org>

Remove clause 3 and 4 from TNF licenses


# d0b840b1 27-Jun-2006 garbled <garbled@NetBSD.org>

General fixups:
1) Fix support for the powerstack E1. This machine needs to use the 8259
directly, and cannot use the prep interrupt vector register. Place a
quirk entry in the table for the machin

General fixups:
1) Fix support for the powerstack E1. This machine needs to use the 8259
directly, and cannot use the prep interrupt vector register. Place a
quirk entry in the table for the machine.
2) Add a new com0_vreset boot image. The vreset code only works on a few
machines, and breaks others like the 7025-F40. Its only limitedly useful
when used with the com0, so just make it an optional image the user can
install by hand if they want.
3) Bump the bootloader to 1.8 with the above change.

show more ...


# ccad3840 13-Apr-2006 garbled <garbled@NetBSD.org>

More major bootblock changes:
1) Rewrite vreset.c completely. Saves about 1k, and now it sets the
screen up much better. Previously the resulting video mode looked bad on
my CRT, and my LCD wouldn'

More major bootblock changes:
1) Rewrite vreset.c completely. Saves about 1k, and now it sets the
screen up much better. Previously the resulting video mode looked bad on
my CRT, and my LCD wouldn't even recognize it as a valid mode. Now it
looks reasonably good and my LCD can talk to it.

2) Call vga_reset unconditionally in the setup process to fix the onboard
VGA. If you have a VGA and use the serial console, this will allow you
to still use the VGA device for getty/wscons. Tested on a 7248 with VGA
and a 7043 without VGA.

3) Change filesystem.c to use nullfs rather than ufs and cd9660. We
don't actually need an fs at all, but it would take a major rewrite to
get rid of them completely. This saves about 6KB on the bootloader.

4) Bump version to 1.7.

show more ...


# 78fba760 10-Apr-2006 garbled <garbled@NetBSD.org>

de-__P, minor formatting nits, bump version.


# 6f0f9f87 29-Jan-2006 dsl <dsl@NetBSD.org>

Make almost everything #include <sys/bswap.h> instead of <machine/bswap.h>
The bswap.h and endian.h files are all rather incestuous, but I want to
get the constant folding stuff into one place - sys/

Make almost everything #include <sys/bswap.h> instead of <machine/bswap.h>
The bswap.h and endian.h files are all rather incestuous, but I want to
get the constant folding stuff into one place - sys/bswap.h

show more ...


# 50a256a3 24-Dec-2005 perry <perry@NetBSD.org>

__asm__ -> __asm
__const__ -> const
__inline__ -> inline
__volatile__ -> volatile


# 37eb9eeb 29-Feb-2000 nonaka <nonaka@NetBSD.org>

Initial import prep port.