summaryrefslogtreecommitdiffstats
path: root/release
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove references to now-obsolete XFree86 source collection (use thejkh2000-01-043-9/+1
| | | | port, it's far better).
* Add new code for HTTP proxy support.jkh2000-01-041-0/+183
| | | | | Submitted by: Philipp Mergenthaler <un1i@rz.uni-karlsruhe.de> PR: 11316
* Add support for FTP installation via HTTP proxies.jkh2000-01-045-1/+57
| | | | | Submitted by: Philipp Mergenthaler <un1i@rz.uni-karlsruhe.de> PR: 11316
* Ignore SIGPIPE by default.jkh2000-01-041-0/+1
| | | | | Submitted by: Philipp Mergenthaler <un1i@rz.uni-karlsruhe.de> PR: 13900
* kernel space savings allow reactivation of NFS installs.jkh2000-01-035-5/+0
|
* nuke debugging symbols from kern.flp kernels.jkh2000-01-031-0/+1
|
* Only print "couldn't install distributions" popup if anyjkh1999-12-291-3/+5
| | | | | actual distributions were found to go along with the residual mask value.
* This commit adds device driver support for the ADMtek AN986 Pegasuswpaul1999-12-285-6/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | USB ethernet chip. Adapters that use this chip include the LinkSys USB100TX. There are a few others, but I'm not certain of their availability in the U.S. I used an ADMtek eval board for development. Note that while the ADMtek chip is a 100Mbps device, you can't really get 100Mbps speeds over USB. Regardless, this driver uses miibus to allow speed and duplex mode selection as well as autonegotiation. Building and kldloading the driver as a module is also supported. Note that in order to make this driver work, I had to make what some may consider an ugly hack to sys/dev/usb/usbdi.c. The usbd_transfer() function will use tsleep() for synchronous transfers that don't complete right away. This is a problem since there are times when we need to do sync transfers from an interrupt context (i.e. when reading registers from the MAC via the control endpoint), where tsleep() us a no-no. My hack allows the driver to have the code poll for transfer completion subject to the xfer->timeout timeout rather that calling tsleep(). This hack is controlled by a quirk entry and is only enabled for the ADMtek device. Now, I'm sure there are a few of you out there ready to jump on me and suggest some other approach that doesn't involve a busy wait. The only solution that might work is to handle the interrupts in a kernel thread, where you may have something resembling a process context that makes it okay to tsleep(). This is lovely, except we don't have any mechanism like that now, and I'm not about to implement such a thing myself since it's beyond the scope of driver development. (Translation: I'll be damned if I know how to do it.) If FreeBSD ever aquires such a mechanism, I'll be glad to revisit the driver to take advantage of it. In the meantime, I settled for what I perceived to be the solution that involved the least amount of code changes. In general, the hit is pretty light. Also note that my only USB test box has a UHCI controller: I haven't I don't have a machine with an OHCI controller available. Highlights: - Updated usb_quirks.* to add UQ_NO_TSLEEP quirk for ADMtek part. - Updated usbdevs and regenerated generated files - Updated HARDWARE.TXT and RELNOTES.TXT files - Updated sysinstall/device.c and userconfig.c - Updated kernel configs -- device aue0 is commented out by default - Updated /sys/conf/files - Added new kld module directory
* Sacrifice, for now, NFS and NETGRAPH on the alpha boot floppyjkh1999-12-255-15/+130
| | | | | so that we can get it back onto 1.44MB boot media again. This does not affect the i386 class build.
* configSamba is gone, and is not coming back.dcs1999-12-231-1/+0
|
* Don't barf on the releasename symlink in the ftp area on make rerelease.phk1999-12-221-1/+1
|
* Fix the brain-o which prevented the Custom installation item fromjkh1999-12-221-1/+1
| | | | | | working. It was, as I predicted, a stupid bug and thanks to the submitter for spotting it. I'll also re-roll some 3.4-RELEASE install floppies for this.
* configApache does not exist anymore.dcs1999-12-201-1/+0
| | | | | PR: 9582 Submitted by: Stephan Lagerholm <istephan@unilog.se>
* Install the crunched binaries into /sbin, not /stand. This wasgrog1999-12-202-5/+5
| | | | | | | originally done to track down yet another case of lost init, and is not strictly necessary, but it seems more logical to have binaries in /sbin than in /stand. Previously /sbin and /bin were symlinks to /stand. Now /bin and /stand are symlinks to /sbin.
* Add content. This was one of the files that somehow got checked ingrog1999-12-201-0/+2
| | | | | empty. An empty loader.rc will enable the kernel to boot, but it won't find init (because the MFS file system hasn't been loaded).
* Accept a lot of programs from the first floppy.grog1999-12-201-3/+15
| | | | | | Reenable build of ppp and ipfw. Include pccardd.
* Define RELEASE_CRUNCH as a make variable. Previously it was definedgrog1999-12-201-2/+2
| | | | | | | as a preprocessor variable only. This broke the build of ppp. This problem still exists in the old-style directories. Debugging-help-supplied-by: brian
* Move even more programs to the second floppy as the kernel bloats.grog1999-12-201-10/+2
|
* Install the crunched binaries into /sbin, not /stand. This wasgrog1999-12-201-5/+5
| | | | | | | originally done to track down yet another case of lost init, and is not strictly necessary, but it seems more logical to have binaries in /sbin than in /stand. Previously /sbin and /bin were symlinks to /stand. Now /bin and /stand are symlinks to /sbin.
* Handle building individual targets better. It's still broken; thegrog1999-12-201-41/+37
| | | | | | | | | | | | | | only way to be sure the build works correctly is to do a 'make all'. But with these changes, it's easier to test individual targets. In particular, ensure that the vnode file systems are mounted before writing to them. Ensure that we don't get CVS directories on our floppies. Use kgzip instead of kzip to compress the loader. This saves a few kB. Remove some test cruft.
* Whoops, this function is supposed to return a boolean status, notjkh1999-12-201-1/+1
| | | | flags.
* Do better things with router configuration (use proper display variable,jkh1999-12-192-2/+7
| | | | for one thing - it's router_enable to check, not router).
* Whoops, I broke the doc browser (not that anyone would notice since nobodyjkh1999-12-191-4/+4
| | | | READS the docs, but anyway.. :). Fix it.
* D'oh! Inserted a clear() in a *very* wrong place with my last commit.jkh1999-12-191-1/+0
|
* Bah, I got the MFC and this commit backwards. :)jkh1999-12-193-4/+2
|
* MFC: can't stop tweaking this compulsively.jkh1999-12-191-1/+10
|
* cosmetics missed in last commit.jkh1999-12-191-14/+29
|
* More cosmetic surgery and a nasty null pointer bug in index.c fixed.jkh1999-12-194-35/+59
|
* Be paranoid about refreshing after an action.jkh1999-12-191-2/+1
|
* Add sn device: smc 91xx based ethernet controllersimp1999-12-181-2/+2
|
* Yet more cosmetic fixes (I have a little time to kill while waiting forjkh1999-12-182-0/+5
| | | | | something else, so I might as well tweak 3.4's look-and-feel for the better while I'm at it - final release build should be sometime later on tonite).
* Add more strategic screen clearsjkh1999-12-181-1/+5
|
* Better screen handling in X desktop setup.jkh1999-12-182-13/+1
| | | | Don't get cute with nested dialogs now.
* Add another strategic screen clear.jkh1999-12-171-1/+7
|
* In retrospect, msgNotify() should leave its contents on the screenjkh1999-12-1715-29/+42
| | | | | longer to give the user something to look at while things are happening. Change it to do so and insert the appropriate screen saves elsewhere.
* Bump default root size to 50MB on i386 (70MB on Alpha).jkh1999-12-171-3/+3
| | | | Requested incessantly by: billf
* Correct slight stuff-up in previous patch.jkh1999-12-162-4/+4
|
* Update to use MD disk instead of MFSjkh1999-12-162-10/+10
|
* Copy the loader.help file to the boot floppy.jkh1999-12-161-0/+1
|
* don't mknod stuff without making sure it's not there first.jkh1999-12-161-0/+1
|
* Correct comment about creating a boot floppy.jkh1999-12-161-3/+4
| | | | Submited by: Jack O'Neill <jack@germanium.xtalwind.net>
* Properly disable COMPAT_3X for alpha.jkh1999-12-151-1/+1
|
* Put up some more helpful dialog boxes.jkh1999-12-152-3/+4
| | | | Adjust some text to make more sense.
* Step #2 of fixing the fixit floppy.joerg1999-12-145-16/+12
| | | | | | | | | | | | | | | | | | | | | Kill duplicates for programs that have been in the boot crunched image as well as on the fixit floppy (pwd, newfs, hostname, test). Our space is really too valuable to have them around there twice. I doubt pwd needs to be there at all since it's a builtin into sh(1) anyway (oh, and the same applies to test(1) IIRC), but heck, leave them by now. Use the new `fixit' target in MAKEDEV to create the /dev nodes on the floppy, instead of including the kitchensink... Finally, tune the values used for creating the floppy. I currently end up with Filesystem 1K-blocks Used Avail Capacity iused ifree %iused /dev/vnn0c 1363 1301 -47 104% 368 14 96% ...which is not quite ideal yet, but at least a working configuration again.
* update to isdn4bsd beta release 0.90hm1999-12-141-16/+4
|
* Document `chown's move.obrien1999-12-142-0/+10
|
* Completely rip-out and redesign sysinstall's refresh model as welljkh1999-12-1421-657/+646
| | | | | | | | | | | | as redoing all the menus to have proper, or at least non-hallucinogenic, keyboard accelerators. This requires my recent update to libdialog to work properly and will probably also exhibit some other "interesting" behavior while the last few missing screen clears are found (which is why I'm not going to MFC immediately). At least now, however, sysinstall does not gratuitously redraw random screens at the drop of a hat and drive serial console installers out of their minds.
* Make kerberos4 conditional.jkh1999-12-142-0/+8
|
* Conditionalize kerberos4 to keep sources in sync.jkh1999-12-141-0/+5
|
* Add a warning about the perils of using an older version of sysinstallsheldonh1999-12-131-6/+14
| | | | | | | to upgrade to a newer version of FreeBSD. PR: 12777 Reported by: wayne@staff.msen.com (Michael R. Wayne)
OpenPOWER on IntegriCloud