summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2004-02-13bce (Broadcom 4401 10/100 ethernet driver) from NetBSDAndreas Gunnarsson
Most work by nate@, ok deraadt@
2004-02-13No need to include <sys/dkbad.h> twice.Miod Vallat
2004-02-13add a couple of ethernet cards, xl appears to work, em by request.Dale Rahn
2004-02-13accept 'setargs -c' or '(hd0)bsd -c' doesn not currently allow for '-c wd0'Dale Rahn
2004-02-13order irq,pri args to gsc_intr_establish() the way less confusing compared ↵Michael Shalayeff
to other trolley busses around ...
2004-02-13as i continuously fail to make osiop drive 700 chip disable it for nowMichael Shalayeff
2004-02-13support secondary com@dino from todd@Michael Shalayeff
2004-02-13Do an explicit pf_update_anchor_rules() after an anchor gets removed.Marco Pfatschbacher
In some situations not all anchor rules got updated properly, so they still refered to already freed anchors. OK dhartmei@ mcbride@ cedric@ henning@
2004-02-13avoid routing irqs that we ignore (14 15); from form@Michael Shalayeff
2004-02-13typoJolan Luff
2004-02-13save/restore fpu state around the signal handler. skip a gap on unempty ↵Michael Shalayeff
stack per abi. form drahn@ and deraadt@
2004-02-13typo, lenght -> lengthBrad Smith
2004-02-13Not used in updated ahc.Kenneth R Westerback
2004-02-13Not used in updated ahc.Kenneth R Westerback
2004-02-13on sigreturn check cs and rflags for evilness; from i386Michael Shalayeff
2004-02-12don't reset the PHY when IPs are configured; from freebsd revision 1.16Markus Friedl
avoids hang when using gigabit copper; ok henric@, beck@
2004-02-12from camield:Henning Brauer
se hash instead of linked list to speed up tag to vlan interface mapping ok markus@ and myself
2004-02-12Add UKC.Dale Rahn
2004-02-12Switch default console base to vga.Dale Rahn
Setargs format is expected to be eg: 'setargs wd0 -s' the '-' is important to signal the beginning of parameters. so that the hw default string is not used which gives undesired results. Check to see if vga exists in the console attach routine, if it returns failure, use fcom as console.
2004-02-12Do not overwrite boothowto if not in the ramdisk kernel, allows singleDale Rahn
user to work. While here nuke some if0'ed code we we will never use.
2004-02-12Preserve rval[1] across system calls if not explictly overwritten,Dale Rahn
per recent discussion with miod and mickey
2004-02-12Correctly parse the firmware 'arguments', allows for the passing of theDale Rahn
root drive. add a couple of options to force console 'f' fcom, 'v' vga
2004-02-11Silence early kernel bootstrap unless option VERBOSE_INIT_ARM.Miod Vallat
ok drahn@
2004-02-11Give systrace and xfs a chance to work.Miod Vallat
ok drahn@
2004-02-11Keep using the BUG as the console device until autoconf is over, ratherMiod Vallat
than switching early.
2004-02-11make mss signed; avoids large mss if ifp==NULL; ok itojun@Markus Friedl
2004-02-11Defining __HAVE_DEVICE_REGISTER and an empty device_register() function isMiod Vallat
just plain silly; remove them. ok drahn@
2004-02-11Remove duplicates with <sys/conf.h>; ok drahn@Miod Vallat
2004-02-11Return ENOTTY on unhandled ioctls; ok drahn@Miod Vallat
2004-02-11permit installboot to at least compile... remove some crudTheo de Raadt
2004-02-10KNFDaniel Hartmeier
2004-02-10Decrease the initial number of ptys from 64 to 16. If the systemsTodd C. Miller
needs more it will allocate them on demand. OK deraadt@ beck@
2004-02-10Fix off-by-one wrt TTY_LETTERS and minor being out of bounds. MissedTodd C. Miller
when I fixed the other TTY_LETTERS/TTY_SUFFIX off-by-ones.
2004-02-10plug mbuf leak (ip_fragment() always free mbuf on error). tested by cedric,Jun-ichiro itojun Hagino
dhartmei ok
2004-02-10Use SENSOR_FINVALID.Alexander Yurchenko
2004-02-10Use SENSOR_FINVALID.Alexander Yurchenko
help and ok hshoexer@
2004-02-10Add flags field to the sensor structure and an only flag SENSOR_FINVALIDAlexander Yurchenko
which allows to drop information from broken, unwired, disabled, etc sensors. ok hshoexer@
2004-02-10KNFHenning Brauer
2004-02-10Relocation types, used by ld.soDale Rahn
2004-02-10Check for the device existence in cnprobe() as done in match(), to be sureMiod Vallat
we don't try to attach a phantom console. It seems that some late 187 models do not have cl0 at the expected address...
2004-02-10check TF_SIGNATURE when calculating the mss; add TCPOLEN_SIGLEN andMarkus Friedl
avoid magic constants; ok henning@
2004-02-10Fix cnprobe() and cninit() prototypes.Miod Vallat
Also, provide a better test for bugtty attachment.
2004-02-10Make pfsync work correctly with IP options on 64-bit alignmentRyan Thomas McBride
sensitive CPUs. Pointed out by deraadt@.
2004-02-10Add the ptm device to pty(4). By opening /dev/ptm and using the PTMGETTodd C. Miller
ioctl(2), an unprivileged process may allocate a pty and have its owner and mode set appropriately. This means that programs such as xterm and screen no longer need to be setuid. Programs using the openpty() function require zero changes and will "just work". Designed by beck@ and deraadt@; changes by beck@ with cleanup (and a rewrite of the vnode bits) by art@ and tweaks/bugfixes by me. Tested by many.
2004-02-10Adjust comment now that number of ptys is dynamic.Todd C. Miller
2004-02-10Dynamically allocate space for ptys; adapted from NetBSD by beck@Todd C. Miller
2004-02-10Allow /boot to load read-only data segments in ELF kernels.Tom Cosgrove
Thanks to miod@ for testing on many archs. ok deraadt@.
2004-02-10Make debug_init void debug_init(void), like nearly all of the otherTom Cosgrove
functions that machdep() calls. ok deraadt@
2004-02-10Enable interrupts before halt when we error out. Allows use ofTom Cosgrove
Ctl-Alt-Del to reboot in case of failure. Much testing nick@; thanks. ok weingart@, deraadt@.
2004-02-09remove debugging printfMichael Shalayeff