aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* pppd/Makefile:John Polstra1999-04-292-7/+10
| | | | | | | | | | | | Enable MS-CHAP support. release/Makefile: Build a separate NOCRYPT version of pppd, to keep This Great Nation's top-secret cryptographic tools out of the filthy hands of those evil furriners. Notes: svn path=/head/; revision=46179
* Add a test to ti_encap() to try and prevent the transmit producer indexBill Paul1999-04-292-4/+10
| | | | | | | | | | from ever catching up to the transmit consumer index. We can't let this happen because ti_txeof() depends on the assumption that producer == consumer means the ring is empty, and producer != consumer means the ring has some number of active descriptors in it. Notes: svn path=/head/; revision=46177
* Added initial code for VBI capture based on work byRoger Hardiman1999-04-292-72/+448
| | | | | | | | | Hiroki Mori <mori@infocity.co.jp> and reworked by myself. This allows software decoding of teletext, intercast and subtitles via /dev/vbi. Notes: svn path=/head/; revision=46176
* Add support for VBI capture from /dev/vbi.Roger Hardiman1999-04-292-4/+26
| | | | | | | | | | | This will allow software teletext/intercast/subtitles decoding while watching a TV station. Based on code from Hiroki Mori <mori@infocity.co.jp> but reworked by myself. Notes: svn path=/head/; revision=46175
* Added new cards: NEC PK-UG-X017 and I/O DATA GV-BCTV2/PCIRoger Hardiman1999-04-292-18/+434
| | | | | | | | | | Added new tuner: ALPS_TSBH1 (plus FM Radio for ALPS_TSCH5) Added support for BCTV audio mux. Submitted by Hiroki Mori <mori@infocity.co.jp> Notes: svn path=/head/; revision=46174
* Correct typo.Joseph Koshy1999-04-291-2/+2
| | | | | | | | PR: docs/11378 Submitted by: Martin Kammerhofer <dada@balu.kfunigraz.ac.at> Notes: svn path=/head/; revision=46166
* Fix crashes caused by rows=0 or columns=0.Roger Hardiman1999-04-292-12/+90
| | | | | | | | | | | | Add new #ifdef. By defining BKTR_NO_MSP_RESET you can prevent the MSP34xx being reset by the bt848 driver. This is handy if you pre-initialise the MSP34xx stereo audio chip in another operating system first (eg MS Windows). Suggested by: Randal Hopper<aa8vb@ipass.net> Suggested by: Yuri Gindin <yuri@xpert.com> Notes: svn path=/head/; revision=46164
* - Handle mixer read ioctls correctly. They have the same group, number andLuoqi Chen1999-04-294-40/+356
| | | | | | | | argument size as their write counterparts and were handled as write ioctls. - Emulate some cdrom ioctls. Notes: svn path=/head/; revision=46163
* Postpone route_init() until all domains are attached.Luoqi Chen1999-04-293-5/+7
| | | | Notes: svn path=/head/; revision=46161
* sd -> daBill Fumerola1999-04-292-6/+6
| | | | | | | | | | st -> sa This file is out-of-date in other ways as well, but these are pretty big changes. Notes: svn path=/head/; revision=46159
* Add /usr/X11R6/bin to default path also.Jordan K. Hubbard1999-04-281-2/+2
| | | | Notes: svn path=/head/; revision=46158
* Rather than hack config/freebsd.h to contain our hacks for a native compiler,David E. O'Brien1999-04-283-46/+43
| | | | | | | | | | | just include them in tm.h (as built from cc/cc_tools/Makefile). This will reduce the diffs from the vendor sources. Excellent idea by: jdp Notes: svn path=/head/; revision=46157
* pmap_emulate_reference: don't ever lose PV_TABLE_MOD bit on page. IfDmitrij Tejblum1999-04-281-2/+2
| | | | | | | | | | | | PV_TABLE_REF cleared before PV_TABLE_MOD, the page may get fault on read again. On fault on write, pmap_emulate_reference mark the page dirty with vm_page_dirty. That decrease ill effects of the bug. The problem probably become more serious after my rev.1.18 a week ago. Notes: svn path=/head/; revision=46156
* This Implements the mumbled about "Jail" feature.Poul-Henning Kamp1999-04-2864-157/+710
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a seriously beefed up chroot kind of thing. The process is jailed along the same lines as a chroot does it, but with additional tough restrictions imposed on what the superuser can do. For all I know, it is safe to hand over the root bit inside a prison to the customer living in that prison, this is what it was developed for in fact: "real virtual servers". Each prison has an ip number associated with it, which all IP communications will be coerced to use and each prison has its own hostname. Needless to say, you need more RAM this way, but the advantage is that each customer can run their own particular version of apache and not stomp on the toes of their neighbors. It generally does what one would expect, but setting up a jail still takes a little knowledge. A few notes: I have no scripts for setting up a jail, don't ask me for them. The IP number should be an alias on one of the interfaces. mount a /proc in each jail, it will make ps more useable. /proc/<pid>/status tells the hostname of the prison for jailed processes. Quotas are only sensible if you have a mountpoint per prison. There are no privisions for stopping resource-hogging. Some "#ifdef INET" and similar may be missing (send patches!) If somebody wants to take it from here and develop it into more of a "virtual machine" they should be most welcome! Tools, comments, patches & documentation most welcome. Have fun... Sponsored by: http://www.rndassociates.com/ Run for almost a year by: http://www.servetheweb.com/ Notes: svn path=/head/; revision=46155
* Add the jail system call.Poul-Henning Kamp1999-04-281-1/+2
| | | | Notes: svn path=/head/; revision=46154
* s/static foo_devsw_installed = 0;/static int foo_devsw_installed;/.Dmitrij Tejblum1999-04-2852-92/+92
| | | | | | | (Edited automatically) Notes: svn path=/head/; revision=46153
* Deal with new loader syntax in determining how/when to load a userconfigJordan K. Hubbard1999-04-283-48/+21
| | | | | | | | | | | script. Submitted by: "Daniel C. Sobral" <dcs@newsguy.com> Avoided by: jkh Demanded by: The Users Notes: svn path=/head/; revision=46152
* Mention that you can only create a block or char special file usingJoerg Wunsch1999-04-281-0/+5
| | | | | | | mknod(2). Notes: svn path=/head/; revision=46150
* Sync with sys/i386/isa/clock.c revision 1.132.KATO Takenori1999-04-283-3/+9
| | | | Notes: svn path=/head/; revision=46148
* Sync with sys/i386/i386/machdep.c revision 1.332.KATO Takenori1999-04-282-218/+184
| | | | Notes: svn path=/head/; revision=46147
* \begin{bdemode}David E. O'Brien1999-04-281-2/+2
| | | | | | | | sort tcpd* entries \end{bdemode} Notes: svn path=/head/; revision=46146
* Correction of better display under chinese terminal.Foxfair Hu1999-04-281-10/+10
| | | | | | | Submitted by : Peter_Chen.bbs@bbs.csie.nctu.edu.tw Notes: svn path=/head/; revision=46144
* Write config files to /usr/share/skel as well as root's profile.Jordan K. Hubbard1999-04-283-33/+51
| | | | Notes: svn path=/head/; revision=46142
* By popular request, add /usr/local/sbin to this list.Jordan K. Hubbard1999-04-282-4/+4
| | | | Notes: svn path=/head/; revision=46139
* Do the right thing for windowmaker installation if it's picked. Add someJordan K. Hubbard1999-04-283-21/+51
| | | | | | | seat belts for failed desktop installations. Notes: svn path=/head/; revision=46138
* Add two recent developments:Warner Losh1999-04-281-1/+13
| | | | | | | | pccard is busted The cool new SMP stuff Notes: svn path=/head/; revision=46137
* Correct reference to '/dev/rst0' to the more correct "/dev/rsa0".Joseph Koshy1999-04-281-1/+1
| | | | | | | | PR: 11347 Submitted by: Christian Weisgerber Notes: svn path=/head/; revision=46136
* Explain when packets are tesed by the firewall rules and what attributesGuy Helmer1999-04-281-23/+128
| | | | | | | | | of packets can be tested. PR: docs/7437 Notes: svn path=/head/; revision=46135
* Make gdb work with kernel after the SMP vmspace sharing changes.Luoqi Chen1999-04-285-42/+221
| | | | Notes: svn path=/head/; revision=46133
* Allow loadable interface drivers with BPF support to be loaded into a kernelMike Smith1999-04-286-12/+51
| | | | | | | | | | | that doesn't have it. This is achieved by having minimal do-nothing stubs enabled when there are no bpfilter devices configured. Driver modules should be built with BPF enabled for maximum convenience (but can be built without it for maximum performance). Notes: svn path=/head/; revision=46130
* Enable vmspace sharing on SMP. Major changes are,Luoqi Chen1999-04-2892-1975/+1823
| | | | | | | | | | | | | | | | | | | | - %fs register is added to trapframe and saved/restored upon kernel entry/exit. - Per-cpu pages are no longer mapped at the same virtual address. - Each cpu now has a separate gdt selector table. A new segment selector is added to point to per-cpu pages, per-cpu global variables are now accessed through this new selector (%fs). The selectors in gdt table are rearranged for cache line optimization. - fask_vfork is now on as default for both UP and SMP. - Some aio code cleanup. Reviewed by: Alan Cox <alc@cs.rice.edu> John Dyson <dyson@iquest.net> Julian Elischer <julian@whistel.com> Bruce Evans <bde@zeta.org.au> David Greenman <dg@root.com> Notes: svn path=/head/; revision=46129
* .Xr chflags 1 ,Tim Vanderhoek1999-04-271-1/+2
| | | | Notes: svn path=/head/; revision=46125
* Simplify the tunefs example, since tunefs uses getfsfile(). Lots ofMike Smith1999-04-271-3/+3
| | | | | | | | people complain about working out what device their filesystems are mounted on. Notes: svn path=/head/; revision=46124
* Simplify the definition of FBSD_SWITCH_TAKES_ARG, and make sureDavid E. O'Brien1999-04-272-18/+8
| | | | | | | | SWITCH_TAKES_ARG isn't defined (which svr4.h does) when we assign our definition to it. Notes: svn path=/head/; revision=46122
* Eliminate compiler warning about missing type in declaration.John Polstra1999-04-271-3/+2
| | | | | | | | | | Remove useless initialization of static variable to 0. Move static variable declaration into the only function that uses it. Notes: svn path=/head/; revision=46121
* Fix the code that prints the "Initializing PC-card drivers" messageJohn Polstra1999-04-271-4/+3
| | | | | | | | | | | so that the list of drivers is correct. This is a slightly simplified version of the patch from the PR. PR: misc/10544 Submitted by: Christophe Colle <colle@krtkg1.rug.ac.be> Notes: svn path=/head/; revision=46119
* Wait until EGCS 1.2 to use more efficient ``thunks'' to implement C++ vtables.David E. O'Brien1999-04-271-3/+4
| | | | | | | | | | While I have yet to hear of any problems with us using thunks. The EGCS mailing list notes some have problems with it and not using them are a safer default. People wanting to use them, can set the appropiate compiler flag. Notes: svn path=/head/; revision=46118
* o Make package matching for specific package loading use the Latest/Jordan K. Hubbard1999-04-2719-96/+328
| | | | | | | | | | | feature of packages now so that no version info is embedded. o Add a default X desktop menu offering afterstep, enlightenment, KDE, GNOME and Windowmaker desktops instead of the boring twm(1) based one if the user so chooses. This will require a little testing. Notes: svn path=/head/; revision=46117
* Change suser_xxx() to suser() where it applies.Poul-Henning Kamp1999-04-2716-79/+72
| | | | Notes: svn path=/head/; revision=46116
* 1. Remove the hateful EDITOR=ee from root's environment; it's oneJordan K. Hubbard1999-04-272-4/+3
| | | | | | | | | | | thing to use it at startup, when you don't know if the user can handle vi or not, but yet another thing to leave it as a permanent land mine for root. 2. Put /usr/X11R6/bin in path; it makes getting the desktop up a lot easier. Notes: svn path=/head/; revision=46114
* bump __FreeBSD_version to 400005:Poul-Henning Kamp1999-04-271-2/+2
| | | | | | | suser() API changed. Notes: svn path=/head/; revision=46113
* Suser() simplification:Poul-Henning Kamp1999-04-27128-394/+399
| | | | | | | | | | | | | | | | | | | | | | 1: s/suser/suser_xxx/ 2: Add new function: suser(struct proc *), prototyped in <sys/proc.h>. 3: s/suser_xxx(\([a-zA-Z0-9_]*\)->p_ucred, \&\1->p_acflag)/suser(\1)/ The remaining suser_xxx() calls will be scrutinized and dealt with later. There may be some unneeded #include <sys/cred.h>, but they are left as an exercise for Bruce. More changes to the suser() API will come along with the "jail" code. Notes: svn path=/head/; revision=46112
* lpd tries to be clever and checks if RM == my_hostname.Jordan K. Hubbard1999-04-273-3/+25
| | | | | | | | | | | | However, it doesn't check if the remote printer name it is sending it to is the same as the local printer name, and so chokes 'cos "laser" is not a real printer. PR: 7081 Submitted by: David Malone <dwmalone@maths.tcd.ie> Notes: svn path=/head/; revision=46110
* echo ^G^G -> echo \007\007 in loader.rc in kern.flp.Masafumi Max NAKANE1999-04-271-3/+3
| | | | Notes: svn path=/head/; revision=46109
* Mention that set-id bits are not honoured for shell scripts andTim Vanderhoek1999-04-271-1/+8
| | | | | | | | | | filesystems with the "nosuid" option. Mention that syscall tracing is disabled sometimes. PR: misc/11328 Notes: svn path=/head/; revision=46107
* If pkg_info is run with no args, default to "-aI".Jordan K. Hubbard1999-04-271-2/+7
| | | | Notes: svn path=/head/; revision=46105
* Make options like NO_F00F_HACK work (with context sensitive lexical rules).Luoqi Chen1999-04-272-30/+45
| | | | Notes: svn path=/head/; revision=46104
* Specify the ssh command to use for a VPN inline.Brian Somers1999-04-271-7/+3
| | | | Notes: svn path=/head/; revision=46103
* Change ``set device'' so that it parses its arguments as oneBrian Somers1999-04-275-62/+91
| | | | | | | | | | | | | device per argument rather than the old way of concatenating everything then splitting the result at commas and whitespace. Old syntax of ``set device /dev/cuaa0, /dev/cuaa1'' may no longer contain the comma, but syntax such as ``set device "!ssh host ppp -direct label"'' is now possible. Notes: svn path=/head/; revision=46102
* Fix from Justin for transfer negotiations for targets up to target ID 7.Kenneth D. Merry1999-04-261-39/+43
| | | | Notes: svn path=/head/; revision=46099