diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-05-29 04:16:11 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-05-29 04:16:11 +0000 |
commit | d533ff01b0e7fecf6829b87c5eb45fac1a24daa8 (patch) | |
tree | baa5cc17d5d8abebf45492724ab6c004d9ba5e8c /sys/arch/powerpc/stand/boot/note.s | |
parent | 2de1e4190b510b46917c96c19d7ebd01a07b41b8 (diff) |
Major changes here and there, tweaks elsewhere.
Support for Openfirmware drivers was reintroduced so that more systems
were supported. This should work with the real driver configurations
as well.
Bootloader files were deleted/replaced with the newer versions in the
subdirectory. Some effort has been made to be closer to support booting
(at least the bootloader) on the Mac.
Config files that end with OFW are the openfirmware versions of the kernels
without have native drivers.
Native driver support has not been changed, presumably it still works.
I couldn't test that.
Diffstat (limited to 'sys/arch/powerpc/stand/boot/note.s')
-rw-r--r-- | sys/arch/powerpc/stand/boot/note.s | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/sys/arch/powerpc/stand/boot/note.s b/sys/arch/powerpc/stand/boot/note.s deleted file mode 100644 index 9d48367bf87..00000000000 --- a/sys/arch/powerpc/stand/boot/note.s +++ /dev/null @@ -1,35 +0,0 @@ -.section ".note" - - ## Note header - these are in target order - - # length of ns.name, including NULL = 8 = strlen("PowerPC") + 1 - # but not including padding - .long 8 - - # Note descriptor size - .long 20 - - # Note type - .long 0x1275 - - # The name of the owner - .asciz "PowerPC" - .balign 4 - - - ## Note descriptor - these are in BE order - - # Real-mode # 0 or -1 (true) - .long 0 - - # real-base - .byte 0xff ; .byte 0xff ; .byte 0xff ; .byte 0xff - # real-size - .byte 0x00 ; .byte 0x00 ; .byte 0x00 ; .byte 0x00 - - # virt-base - .byte 0xff ; .byte 0xff ; .byte 0xff ; .byte 0xff - # virt-size - .byte 0x00 ; .byte 0x00 ; .byte 0x00 ; .byte 0x00 - -.previous |