summaryrefslogtreecommitdiffstats
path: root/sys/kern/init_main.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* undo vfork changes, since non-UVM was not consideredderaadt2000-01-311-2/+2
|
* Change fork1() from taking forktype and rforkflags, into a single flagsart2000-01-281-2/+2
| | | | | argument. Let sys_rfork build the arguments to fork1() and do the sanity checks itself.
* 2000deraadt2000-01-011-2/+2
|
* more stack direction fixes; art@ okmickey1999-11-051-1/+9
|
* Fix rootdev handling, use disk checksums to find the device we were bootedweingart1999-09-121-11/+5
| | | | | from. Hopefully this will fix all the hangs/panics where the root device was not found.
* New cpu_fork API to take a stack in which you point the child's stackpointerniklas1999-08-171-2/+2
| | | | | | to, at the bottom or the top, depending on your architecture's stack growth direction. This is in preparation for Linux' clone(2) emulation. port maintainers, please check that I did the work right.
* vm_offset_t -> {v,p}addr_t ; vm_size_t -> {v,p}size_tart1999-07-151-3/+3
|
* better panic messageart1999-04-221-2/+2
|
* re-do how copyright messages are donederaadt1999-03-011-5/+5
|
* initialize uvm, make allocations work with uvm, namchanges for uvm, etcart1999-02-261-1/+46
|
* kthread abstraction from NetBSD, implemented with our rforkniklas1999-01-111-43/+16
|
* Generalize cpu_set_kpc to take any kind of arg; mostly from NetBSDniklas1999-01-101-13/+16
|
* 1999deraadt1999-01-021-2/+2
|
* add openbsd copyright; if you have not talked to me about this already, do so nowderaadt1998-09-161-2/+5
|
* Merge of MACHINE_NEW_CONTIG (aka MNN) code from Chuck Cranor,niklas1998-03-011-1/+4
| | | | | | | | | | | | | | | | <chuck@openbsd.org>. This code is as of yet disabled on all platforms, actually not yet supported on more than mvme68k, although other platforms are expected soon, as code is already available. This code makes handling of multiple physical memory regions consistent over all platforms, as well as keeping the performance of maintaining a single continuous memory chunk. It is also a requirement for the upcoming UVM replacement VM system. What I did in this merge: just declared the pmap_map function in a MD include file per port that needs it. It's not an exported pmap interface, says Chuck. It ended up in differnt include files on differnet ports, as I tried to follow the current policy on a per-arch basis.
* prototype dkcsumattach correctlyniklas1998-02-201-2/+2
|
* Updates for VFS Lite 2 + soft update.csapuntz1997-11-061-5/+4
|
* mak kernel compiles w/o bios0mickey1997-11-061-1/+4
|
* dkcsum is *really* mandatory. XXX will be done differently later.niklas1997-10-281-1/+9
|
* back out vfs lite2 till after 2.2deraadt1997-10-061-4/+5
|
* VFS Lite2 Changescsapuntz1997-10-061-5/+4
|
* two unneeded variables; enami@ba2.so-net.or.jpderaadt1997-07-281-4/+2
|
* random pid generation, hehderaadt1997-06-051-1/+2
|
* Fix return with missin value...pefo1997-04-191-2/+2
|
* Implement NOFILE_MAX--hard limit on max descriptors per proccess.millert1997-03-271-1/+8
| | | | | Future direction, might make sense to make this a kernel symbol tha is sysctl-able.
* mountroot is prototyped elsewherederaadt1996-11-061-2/+1
|
* random device is permanent now.mickey1996-10-191-1/+2
|
* fix NFSSERVER w/o NFSCLIENT; netbsd pr#1780, cgd@netbsd (yes, a 10monthderaadt1996-09-211-1/+8
| | | | old PR and the fix is mostly unchanged).
* more Swedish pedantery, kill statics, provide protos etcniklas1996-09-041-8/+9
|
* Cleanup execpefo1996-08-311-1/+2
|
* spit out a warning if /dev/console does not exist; from mouse@Collatz.McRCIM.McGill.EDUderaadt1996-08-211-1/+22
|
* microtime for srandomderaadt1996-08-131-2/+4
|
* srandom() seeds random() at boottimederaadt1996-08-101-1/+3
|
* only call config_init() oncederaadt1996-06-161-2/+1
|
* Kernel-implementation of update(8) my metholo1996-06-111-1/+31
|
* call tty_init() and config_init()deraadt1996-06-101-2/+5
|
* native emul is now called "native"deraadt1996-05-271-4/+4
|
* Make sure config_init gets called before consinit, as at least one portniklas1996-05-071-2/+3
| | | | | | actually uses config_* functions for console attachment. Document config_init should not call malloc as the move was over the mem-init function calls too.
* Return int from main(), so gcc -Werror won't complain. Rhyme not intended.niklas1996-05-061-3/+5
|
* sync syscalls, no sys/cpu.hderaadt1996-05-021-3/+2
|
* partial sync with netbsd 960418, more to comederaadt1996-04-211-2/+3
|
* From NetBSD: 960217 mergeniklas1996-03-031-3/+21
|
* from netbsd;deraadt1996-01-121-1/+3
| | | | | | | | | | | | | | | | New generic disk framework. Highlights: New metrics handling. Metrics are now kept in the new `struct disk'. Busy time is now stored as a timeval, and transfer count in bytes. Storage for disklabels is now dynamically allocated, so that the size of the disk structure is not machine-dependent. Several new functions for attaching and detaching disks, and handling metrics calculation. Old-style instrumentation is still supported in drivers that did it before. However, old-style instrumentation is being deprecated, and will go away once the userland utilities are updated for the new framework. For usage and architectural details, see the forthcoming disk(9) manual page.
* from netbsd; init proc0 fd0 differentlyderaadt1995-12-141-13/+11
|
* initial import of NetBSD treederaadt1995-10-181-0/+496