aboutsummaryrefslogtreecommitdiff
path: root/sys/alpha/include/prom.h
Commit message (Collapse)AuthorAgeFilesLines
* First pass at removing Alpha kernel support.John Baldwin2006-05-111-108/+0
| | | | Notes: svn path=/head/; revision=158458
* Begin all license/copyright comments with /*- or #-Warner Losh2005-01-051-1/+1
| | | | Notes: svn path=/head/; revision=139727
* Change the console interface to pass a "struct consdev *" instead of aPoul-Henning Kamp2003-02-201-3/+3
| | | | | | | | | | | | dev_t to the method functions. The dev_t can still be found at struct consdev *->cn_dev. Add a void *cn_arg element to struct consdev which the drivers can use for retrieving their softc. Notes: svn path=/head/; revision=111194
* Remove __P(). This was tested on the GENERIC kernel.David E. O'Brien2002-03-201-13/+13
| | | | Notes: svn path=/head/; revision=92816
* Detach the prom console when platform.cons_init is called. This seemsMatt Jacob2001-10-261-0/+1
| | | | | | | | | | | | to avoid most of the double character kernel goop we've been having by having both a prom console && a normal console. Was not able to test with graphics head. Hope this doesn't break anything. Reviewed by: silence on alpha Notes: svn path=/head/; revision=85540
* Alpha 8200: Add prototype from promcnattach.Matt Jacob2000-03-181-0/+1
| | | | Notes: svn path=/head/; revision=58212
* Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL"Peter Wemm1999-12-291-2/+2
| | | | | | | | | is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Notes: svn path=/head/; revision=55205
* Zap some latent problems hidden by differences between KERNEL and _KERNEL.Peter Wemm1999-11-221-1/+1
| | | | | | | The KAME code intruduces _KERNEL, which exposes some of them. Notes: svn path=/head/; revision=53591
* useracc() the prequel:Poul-Henning Kamp1999-10-291-0/+2
| | | | | | | | | | | | | | Merge the contents (less some trivial bordering the silly comments) of <vm/vm_prot.h> and <vm/vm_inherit.h> into <vm/vm.h>. This puts the #defines for the vm_inherit_t and vm_prot_t types next to their typedefs. This paves the road for the commit to follow shortly: change useracc() to use VM_PROT_{READ|WRITE} rather than B_{READ|WRITE} as argument. Notes: svn path=/head/; revision=52635
* Implement promcncheckc.Doug Rabson1998-07-121-1/+1
| | | | Notes: svn path=/head/; revision=37589
* Add initial support for the FreeBSD/alpha kernel. This is very much aDoug Rabson1998-06-101-0/+104
work in progress and has never booted a real machine. Initial development and testing was done using SimOS (see http://simos.stanford.edu for details). On the SimOS simulator, this port successfully reaches single-user mode and has been tested with loads as high as one copy of /bin/ls :-). Obtained from: partly from NetBSD/alpha Notes: svn path=/head/; revision=36849