aboutsummaryrefslogtreecommitdiff
path: root/release
Commit message (Collapse)AuthorAgeFilesLines
...
* Overhaul our boot floppy generation system so that it scales better andJohn Baldwin2004-01-261-179/+175
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | requires minimal care and feeding for future releases. - Consolidate multitude of floppy related constants down to a normal FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2 floppies. Also, cleanup the i386 arch section by not duplicating constants that are the same on both machine types (i386 and pc98). - Update the ZIPNSPLIT macro to generate a file chunks that will actually fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1) seems to be somewhat buggy, so the files generated are slightly larger than the argument passed to split. - Split the release.10 target into 3 targers: floppies.1, floppies.2 and floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined. floppies.1 builds the install floppies, floppies.2 builds the fixit floppy, and floppies.3 generates the md5 sums and READMEs for the floppies/ directory. - Drop the by now largely obsolete and less useful boot.flp picture. This was more useful when the mfsroot lived inside the kernel rather than being loaded from a separate file by the loader. - Only build a single mfsroot containing no modules that is used for all installation methods. - Use split-file.sh to split up a gzipped GENERIC kernel into however many floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits onto 2 additional floppies besides the boot floppy with some room to spare. - If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into however many floppies are needed. Currently it is not defined as the mfsroot.gz fits onto the current boot.flp with room to spare. - Add a 'makeFloppySet' target which builds a floppy set for a file that was split using split-file.sh. - Rename the doMFSKERN target to 'buildBootFloppy' as that more closely matches what it does now. We no longer build a custom BOOTMFS kernel for each boot floppy. - We no longer build a 2.88 boot.flp image to use with emulated CD booting. The non-emulated cdboot works for almost everyone who boots off of CD and if it doesn't work on a particular machine, the user can always boot from the 1.44 floppy images. - We no longer build a driver floppy or stick kernel modules in the mfsroot since we now use a stock kernel when booting from floppy. Notes: svn path=/head/; revision=125052
* Add a script to split a single file up into chunks using split along withJohn Baldwin2004-01-261-0/+39
| | | | | | | | | | | a list file suitable for use with libstand's splitfs filesystem. The first chunk of the file is 16k and has an extension of '.boot' and is meant to be placed on the boot floppy. This is required because the current implementations of gzipfs and bzipfs in libstand want to read in the header of the file each time it is opened. Notes: svn path=/head/; revision=125051
* New release note: SMBFS request signing [1].Bruce A. Mah2004-01-262-4/+44
| | | | | | | | | | Modified release notes: Expand on ULE features [2], provide a further clarification on CVS changes. Submitted by: tjr [1], jeffr [2] Notes: svn path=/head/; revision=125043
* Trim IDE/ATA device list in favor of the list in the ata.4 manpageChristian Brueffer2004-01-252-146/+4
| | | | Notes: svn path=/head/; revision=124988
* New release note: PFIL_HOOKS in GENERIC.Bruce A. Mah2004-01-252-0/+12
| | | | Notes: svn path=/head/; revision=124987
* New release notes: SCHED_ULE default, cdboot buggy BIOS workaround,Bruce A. Mah2004-01-252-4/+80
| | | | | | | | | | | dc(4) sparc64/OFW fix, sk(4) multicast fix, IPsec bugfix, ata(4) bugfixes, GEOM fix, NFSv4 panic fix, NSS large groups fix, CVS security fix. Most (but not all) of these are 5.2-RELEASE errata items. Notes: svn path=/head/; revision=124951
* s/freebsd.org/FreeBSD.org/Bruce A. Mah2004-01-251-1/+1
| | | | Notes: svn path=/head/; revision=124947
* - Run makewhatis(1) in etc/Makefile at the end of "install".Ruslan Ermilov2004-01-221-1/+1
| | | | | | | - Removed redundant and undocumented NO_MAKEDB_RUN knob. Notes: svn path=/head/; revision=124831
* New errata: IPsec bugs. Source material for this errata note was...Bruce A. Mah2004-01-211-0/+14
| | | | | | | Submitted by: Bjoern A. Zeeb < bzeeb at Zabbadoz dot NeT > Notes: svn path=/head/; revision=124801
* Use the reinstallkernel.debug target, now that we have it.Ruslan Ermilov2004-01-211-1/+1
| | | | Notes: svn path=/head/; revision=124777
* Fix "5.x release on 4.x box" support.Makoto Matsushita2004-01-191-1/+5
| | | | | | | | | | | It is required to check /etc/rc.d/ldconfig before use, because ${CHROOT} sandbox is sometimes 4.x world. If /etc/rc.d/ldconfig is not there, run ldconfig(8) directly. Discussed with: imp, obrien, ru Notes: svn path=/head/; revision=124715
* We also want the *_p.a symlinks to be part of the proflibs distribution.Ruslan Ermilov2004-01-181-3/+1
| | | | Notes: svn path=/head/; revision=124661
* Once upon a time we had both "crypto" and "krb5" distributions,Ruslan Ermilov2004-01-171-2/+1
| | | | | | | | | | | | | | | | | | | | | | | and rebuilt some bits with crypto but without Kerberos support (most notably SSH) during "make release", to put them into the "crypto" distribution. Now that we don't ship the separate "krb5" distribution anymore (it's now part of the "crypto" distribuion), don't waste time recompiling SSH bits without crypto and without Kerberos support in an attempt to put them in the "base" distribution -- it just doesn't work as SSH always uses crypto code. We avoid this by not rebuilding KPROGS from kerberos5/Makefile in release/Makefile and adding "libpam" to SPROGS in secure/Makefile to ensure it's still rebuilt without crypto support for the "base" distribution. (Disabling crypto (NOCRYPT) also disables building of Kerberos-related PAM modules, and it's OK to depend on this.) This should be a no-op change saving some "make release" time. Notes: svn path=/head/; revision=124638
* MFRELENG_5_2: Default the snapshot versioning to 5.2.Ruslan Ermilov2004-01-171-2/+2
| | | | | | | | PR: misc/61402 Submitted by: Chris Knight Notes: svn path=/head/; revision=124636
* Improve translation.Hiroki Sato2004-01-171-39/+36
| | | | Notes: svn path=/head/; revision=124608
* Switch manpath for FreeBSD manpages to 5.2-current.Bruce A. Mah2004-01-161-1/+1
| | | | Notes: svn path=/head/; revision=124590
* Add missing '\' in previous change.Yoshihiro Takahashi2004-01-151-1/+1
| | | | Notes: svn path=/head/; revision=124549
* Catch up with the English version:Hiroki Sato2004-01-141-1/+23
| | | | | | | 1.57 -> 1.59 errata/article.sgml Notes: svn path=/head/; revision=124508
* * if-like-constructs now use <TAB>body consistently.David E. O'Brien2004-01-131-85/+109
| | | | | | | | | | * Long statements with '\' continuation now use <4 spaces>continuation consistently. * wraps some long lines * More consistent on how very simular repeated commands are wrapped. Notes: svn path=/head/; revision=124493
* New errata: KUser can corrupt passwd file.Bruce A. Mah2004-01-131-0/+7
| | | | | | | Requested by: scottl, "Eugenia Loli-Queru" <eugenia at osnews dot com> Notes: svn path=/head/; revision=124485
* New errata: NSS problems and workaround [1], GCC typo in releaseBruce A. Mah2004-01-131-0/+14
| | | | | | | | | notes [2]. Submitted by: nectar [1], gerald [2] Notes: svn path=/head/; revision=124484
* Fix a typo.Hiroki Sato2004-01-121-1/+1
| | | | | | | Spotted by: rushani Notes: svn path=/head/; revision=124436
* Use /etc/rc.d/ldconfig script rather than the ldconfig command directly.Yoshihiro Takahashi2004-01-121-1/+1
| | | | | | | Submitted by: matusita Notes: svn path=/head/; revision=124418
* Merge the following from the English version:Hiroki Sato2004-01-123-1236/+228
| | | | | | | | | 1.2 -> 1.3 hardware/amd64/proc-amd64.sgml 1.188 -> 1.210 hardware/common/dev.sgml 1.12 -> 1.13 hardware/i386/proc-i386.sgml Notes: svn path=/head/; revision=124414
* Merge the following from the English version:Hiroki Sato2004-01-121-158/+97
| | | | | | | 1.54 -> 1.57 errata/article.sgml Notes: svn path=/head/; revision=124413
* Opera is i386-only.David E. O'Brien2004-01-121-1/+2
| | | | Notes: svn path=/head/; revision=124412
* Merge the following from the English version:Hiroki Sato2004-01-122-60/+272
| | | | | | | | 1.53 -> 1.54 errata/article.sgml 1.644 -> 1.663.2.5 relnotes/common/new.sgml Notes: svn path=/head/; revision=124410
* Run ldconfig in the chroot environment to find shared libraries inYoshihiro Takahashi2004-01-111-0/+1
| | | | | | | /usr/local/lib. Notes: svn path=/head/; revision=124376
* Fix MINIMALDOCPORTS lists.Yoshihiro Takahashi2004-01-111-2/+1
| | | | Notes: svn path=/head/; revision=124375
* New errata: Mention APIC problems and workarounds, NFSv4 client bug,Bruce A. Mah2004-01-101-2/+36
| | | | | | | | | | | new TCP MSS size/rate limiting feature. Fix a typo. [1] Submitted by: Aniruddha Bohra <bohra at cs dot rutgers dot edu> [1] Notes: svn path=/head/; revision=124352
* New release notes: Changed some TCP tunable defaults, MSS sanityBruce A. Mah2004-01-102-4/+38
| | | | | | | | | | | checks and overload protection, OpenSSH 3.7.1p2. Use digi(4) entity. Bump copyright date. Notes: svn path=/head/; revision=124348
* First 5.2-RELEASE errata, documenting some known issues in theBruce A. Mah2004-01-091-1/+59
| | | | | | | | | | release: xdm(1) black-and-white-ness, ACPI problems, ATA device problems, NFS floppy install requirements, pcm(4) vchan instabilities. Submitted by: scottl, truckman Notes: svn path=/head/; revision=124312
* '+' can also appear in a package file name.David E. O'Brien2004-01-021-1/+6
| | | | | | | | | Reported by: jhb '^' could also appear in a package file name. Notes: svn path=/head/; revision=124088
* Creates an INDEX file suitable for an ISO distribution image containing onlyDavid E. O'Brien2004-01-021-0/+52
| | | | | | | the specified packages. Notes: svn path=/head/; revision=124057
* Merge the following changes from English version:Motoyuki Konno2003-12-291-39/+93
| | | | | | | early-adopter/article.sgml 1.16 -> 1.17 Notes: svn path=/head/; revision=123972
* Put the em and vx drivers back into the kernel so that the mfsroot stopsScott Long2003-12-221-2/+0
| | | | | | | | overflowing. We are one again on the brink of the floppies having major overflow problems. Notes: svn path=/head/; revision=123726
* New release notes: boot0sio, ndis(4), resolver(5) supports timeout:Bruce A. Mah2003-12-122-6/+38
| | | | | | | and attempts:, ipfw(8) -b, ACPI-CA 20031203. Notes: svn path=/head/; revision=123500
* Add hints about nForce3 issuesPeter Wemm2003-12-081-1/+16
| | | | Notes: svn path=/head/; revision=123305
* Urk, add arch attributes to items from my previous commit.Bruce A. Mah2003-12-072-8/+8
| | | | Notes: svn path=/head/; revision=123269
* New release notes: Record the demise of the lmc, dgb, hea, meteor,Bruce A. Mah2003-12-072-6/+28
| | | | | | | and loran drivers. Notes: svn path=/head/; revision=123267
* The lmc, meteor, and loran drivers have been removed from the sourceBruce A. Mah2003-12-072-20/+8
| | | | | | | | | | | tree, so remove them from the hardware notes. The dgb driver has been replaced by the digi driver. The hea driver has been replaced by the en driver. Notes: svn path=/head/; revision=123265
* Bump various entities for 5.2-CURRENT, trim release notes and errata.Bruce A. Mah2003-12-074-1620/+34
| | | | Notes: svn path=/head/; revision=123264
* Whee!Bruce A. Mah2003-12-072-2/+4
| | | | | | | | | Modified release note: kdump(1) -E. Approved by: re (implicitly) Notes: svn path=/head/; revision=123189
* Grrr...get the semantics of these entities right.Bruce A. Mah2003-12-073-3/+3
| | | | | | | Approved by: re (implicitly) Notes: svn path=/head/; revision=123188
* Use sab(4) manpage entity.Bruce A. Mah2003-12-072-2/+2
| | | | | | | Approved by: re (implicitly) Notes: svn path=/head/; revision=123186
* More correctly handle cross-references to USB keyboards and mice.Bruce A. Mah2003-12-072-8/+4
| | | | | | | Approved by: re (implicitly) Notes: svn path=/head/; revision=123184
* More hardware notes device trimming: Remove devices supported byBruce A. Mah2003-12-072-256/+14
| | | | | | | | | | ohci(4), uhci(4), ubsa(4), uftdi(4), uvscom(4), fwohci(4), and sbp(4) in favor of the device lists in their respective manual pages. Approved by: re (implicitly) Notes: svn path=/head/; revision=123183
* New release notes: Logical CPUs for HTT now enabled using BIOSBruce A. Mah2003-12-062-54/+150
| | | | | | | | | | | | | | | | | | | | | | | | settings, options IPFILTER requires options PFIL_HOOKS, last bits of a.out compiler toolchain are gone, acpiconf(8) -i, asf(8), .snap directory for snapshots, kdump(1) -p, last(1) -n, libwrap/tcpdchk(8) support extended tcp_wrappers syntax, repquota(8) -n, savecore(8) -C, uname(1) -i, hardware notes device trimmage, Turkish translation for docs. Modified release notes: Spell "Cronyx-Sigma" correctly in cx(4) item, spell "FireWire" consistently, fix grammer in puc(4) item, move uart(4) note from NIC to generic kernel section, spell "NetGraph" consistently, fix typo in xe(4) note, dynamic linking note more precise, Deleted release notes: -pthread removed (this was reverted). Other: Correct a reference to recent security advisories. Approved by: re (implicitly) Notes: svn path=/head/; revision=123176
* Trim some unnecessary text from bt(4) and mly(4) listings, fix typo inBruce A. Mah2003-12-062-178/+6
| | | | | | | | | | sk(4) listing, trim em(4) devices, trim dgb(4) devices, trim stl(4)/stli(4) devices, trim uaudio(4) devices. Approved by: re (implicitly) Notes: svn path=/head/; revision=123172
* HTT logical processors are now enabled (not disabled) by default, soBruce A. Mah2003-12-061-2/+3
| | | | | | | | | reflect this in the hardware notes. Approved by: re (implicitly) Notes: svn path=/head/; revision=123171