summaryrefslogtreecommitdiffstats
path: root/release
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade to XFree86 3.3.6jkh2000-01-113-52/+52
|
* Use GENERIC for both pccard and non-pccard disks now that GENERIC isimp2000-01-101-2/+2
| | | | (or should be) everything that PCCARD is.
* - Revert --strip-all of /kernel on a new installed system (it would workpeter2000-01-101-1/+2
| | | | | | | | | | | with kld etc just fine, but tracebacks would have less information and nm /kernel wouldn't be so good). - Just strip the kernel on the boot disk. This does not affect kld or module loading, there are two symbol tables in a kernel. There is the dynamic linking one (.dynsym+.strtab) with just global symbols and a user symbol table (.symtab+.strtab) with all symbols. BTW; objdump lies and hides the second one. There's a good half a meg or so that can be saved from an average kernel by stripping it.
* Move Fdisk ahead of Lable.obrien2000-01-091-2/+2
| | | | Ok'ed by: JKH
* Strip even more unneeded symbols.jkh2000-01-091-1/+1
| | | | Suggested by: peter
* Add the vendor and device IDs for a whole bunch of additional USBwpaul2000-01-073-4/+39
| | | | | | | | | | | | | | | | | ethernet adapters that are supported by the aue and kue drivers. There are actually a couple more out there from Accton, Asante and EXP Computer, however I was not able to find any Windows device drivers for these on their servers, and hence could not harvest their vendor/device ID info. If somebody has one of these things and can look in the .inf file that comes with the Windows driver, I'd appreciate knowing what it says for 'VID' and 'PID.' Additional adapters include: the D-Link DSB-650 and DSB-650TX, the SMC 2102USB, 2104USB and 2202USB, the ATen UC10T, and the Netgear EA101. These are all mentioned in the man pages, relnotes and LINT. Also correct the date in the kue(4) man page. I wrote this thing on Jan, 4 2000, not 1999.
* Temporarily remove ping from the fixit image (until IPv6 disruptions arejkh2000-01-072-2/+2
| | | | over).
* Add device driver support for USB ethernet adapters based on thewpaul2000-01-055-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | Kawasaki LSI KL5KUSB101B chip, including the LinkSys USB10T, the Entrega NET-USB-E45, the Peracom USB Ethernet Adapter, the 3Com 3c19250 and the ADS Technologies USB-10BT. This device is 10mbs half-duplex only, so there's miibus or ifmedia support. This device also requires firmware to be loaded into it, however KLSI allows redistribution of the firmware images (I specifically asked about this; they said it was ok). Special thanks to Annelise Anderson for getting me in touch with KLSI (eventually) and thanks to KLSI for providing the necessary programming info. Highlights: - Add driver files to /sys/dev/usb - update usbdevs and regenerate attendate files - update usb_quirks.c - Update HARDWARE.TXT and RELNOTES.TXT for i386 and alpha - Update LINT, GENERIC and others for i386, alpha and pc98 - Add man page - Add module - Update sysinstall and userconfig.c
* 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
|
OpenPOWER on IntegriCloud