summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add verbiage to the description of the noexec mount option clarifyingcperciva2005-03-231-0/+5
| | | | | | | that it really wasn't intended as a security feature. Wording mostly by: simon Discussed with: secteam
* The live CD itself no longer has /stand since a long time ago; however,avatar2005-03-231-0/+1
| | | | | | | | | | | | | | there are still a couple of places under src/release such like fixit.profile assumed that system binary can be retrivied from /stand(ex: boot with the live CD and run "disklabel -e" in the fixit CD shell). Since /stand is still functional in fixit floppy, and there are more than one places in src/release needs to be updated(document for example) if we want to make use of something like /mnt2/rescue/vi. This commit try to deal with aforementioned inconsistency with minimal effort by simply create a symbolic link to /rescue. Reviewed by: jhb, sam (mentor)
* Fix use of uninitialized buf[0].pjd2005-03-221-2/+2
| | | | | Reported by: stefanf MFC after: 3 days
* Add support for bus_delete_resource() and make acpi_bus_alloc_gas() donjl2005-03-221-0/+18
| | | | this before setting a new resource.
* MFen: 1.27 -> 1.30delphij2005-03-221-16/+15
| | | | Obtained from: The FreeBSD Simplified Chinese Project CVS
* MFen: 1.13 -> 1.14delphij2005-03-221-5/+5
| | | | Obtained from: The FreeBSD Simplified Chinese Project CVS
* MFen: 1.227.2.14 -> 1.276delphij2005-03-221-235/+47
| | | | Obtained from: The FreeBSD Simplified Chinese Project CVS
* Add mt locale directory, since more and more ports create and use it.krion2005-03-222-0/+8
| | | | | Approved by: kris MFC after: 3 days
* Zaurus expecrs CRC to be in little-endian order, so that convert it into LEsobomax2005-03-221-1/+2
| | | | | | on BE arches. Obtained from: OpenBSD
* Add a possibility to bypass unmodified accounted data to specialglebius2005-03-222-5/+50
| | | | hook(s). Data received on these hook(s) is sent back to ifaceX hook(s).
* New release notes:hrs2005-03-222-0/+6
| | | | cdce(4) USB Communication Device Class Ethernet driver.
* Add USB Communication Device Class Ethernet driver. Originally written forsobomax2005-03-2216-0/+1076
| | | | | | | | | | FreeBSD based on aue(4) it was picked by OpenBSD, then from OpenBSD ported to NetBSD and finally NetBSD version merged with original one goes into FreeBSD. Obtained from: http://www.gank.org/freebsd/cdce/ NetBSD OpenBSD
* Protect against DESTDIR being set during the build of build32.ru2005-03-221-2/+2
| | | | Reported by: pav
* Style: <space><tab> -> <tab>harti2005-03-221-34/+33
|
* Rename struct Path to struct Dir and move it into the C-file. Itharti2005-03-222-28/+29
| | | | is not used outside.
* Remove debugging code that crept in in the last commit.harti2005-03-221-7/+0
|
* Remove Lst_Find() and Lst_FindFrom() now that they aren't needed anymore.harti2005-03-222-48/+8
|
* Remove the last two instances of Lst_Find() calls.harti2005-03-222-55/+35
|
* Use VarParse() inside var.c instead of Var_Parse().harti2005-03-221-20/+33
| | | | | | Patch: 7.163 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Unify callers to Var_Parse() with regard to variable names.harti2005-03-221-27/+26
| | | | | | Patch: 7.162 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Make some callers of VarFind using the same code structure.harti2005-03-221-28/+33
| | | | | | Patch: 7.161 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* De-lispify some if()-expressions by removing extra parantheses.harti2005-03-221-14/+14
| | | | | | | Patch: 7.160 Requested by: harti Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Return a Buf object from VarGetPattern() instead of a char * and a size_t.harti2005-03-223-45/+34
| | | | | | | | Store a Buf object in struct VarPattern instead of a char * and a length. Patch: 7.158 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Use the struct VarPattern's lhs field instead of using an extra variableharti2005-03-221-6/+5
| | | | | | | | to store the left expression of a C modificator. Patch: 7.157 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Merge struct VarREPattern into struct VarPattern. This will help sortingharti2005-03-223-15/+12
| | | | | | | | out common code. Patch: 7.156 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Sort prototypes.harti2005-03-221-18/+18
| | | | | | Patch: 7.155 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Fix indentation.harti2005-03-221-13/+13
| | | | | | Patch: 7.154 (partly) Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Delete an extra empty line.harti2005-03-221-1/+1
| | | | | | Patch: 7.153 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* An automatic variable in a local scope is (conceptionally) destroyed withharti2005-03-221-1/+1
| | | | | | | | | the closing brace so it is unwise to keep a pointer to it. Make the variable static to fix this. Patch: 7.152 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Simplify buffer access by using Buf_Data() and Buf_Peel() whereharti2005-03-228-76/+32
| | | | | | | | appropriate. Patch: 7.147-7.151 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Merge the following from the English version:den2005-03-221-4/+8
| | | | | | 1.830 -> 1.832 relnotes/common/new.sgml Obtained from: The FreeBSD Russian Documentation Project
* Two new functions: Buf_Data() returns a reference to the data inharti2005-03-222-7/+31
| | | | | | | | | the buffer and Buf_AppendBuf() appends a copy of one buffer to another buffer. Patch: 7.146,7.147 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* He who receives ideas from me, receives instruction himself withoutphk2005-03-221-0/+5
| | | | | | lessening mine; as he who lights his taper at mine receives light without darkening me. -- Thomas Jefferson on patents on ideas.
* Remove a temporary variable. Rename pattern to patt to be consistent.harti2005-03-222-217/+92
| | | | | | | | | Remove unreachable code for VAR_NOSUBST - it was never set. Replace redundant code with calls to VarGetPattern(). Patch: 7.143-7.145 Submitted by: Max Okumoto <okumoto@ucsd.edu>
* - Declare mknod in stat.h (in addition to unistd.h), as per XSI.das2005-03-224-11/+38
| | | | | | - Use blksize_t and blkcnt_t in struct stat. - Hide non-standard fields in stat.h when !__BSD_VISIBLE. - Add restrict qualifiers in stat.h.
* Truncate nextboot.conf file on creation, so existing garbage will be removed.pjd2005-03-211-1/+2
| | | | | | Submitted by: Gary Allan <dragonfly@gallan.plus.com> Obtained from: DragonFlyBSD MFC after: 3 days
* Eliminate plt relocation for kse_switchin.davidxu2005-03-214-0/+4
|
* Fix code freeing wrong cred pointer.julian2005-03-211-2/+4
| | | | | | | | | Submitted by: das Noticed by: Coverity tool MFC after: 3 days Note: usually the two pointers point to the same thing but it was still a bug.
* Typo.le2005-03-211-1/+1
|
* - Use the extend method of list objects to append a new list rather than ajhb2005-03-211-11/+6
| | | | | | | bunch of append calls when adding more ports to an existing list. - Remove the compatXY packages from disc1 as they are only intended for use on 5.x (6.x doesn't have them as dists anymore) and on 5.x they aren't packages but are old-fashioned distribution tarballs anyway.
* - Always include x11/xorg on disc1 as it does exist for ia64 (I must havejhb2005-03-211-2/+4
| | | | | | | | | | misread print-cdrom-packages.sh). - Include x11/xorg-manpages and devel/imake-6 since xorg doesn't pull those in as requirements. Not including manpages is a bug IMO. - Add security/freebsd-update to disc2, not sure why I left this one out but I did by accident. Reported by: kensmith (2), cpercival (3)
* Retire print-cdrom-packages.sh as it has been replaced.jhb2005-03-211-218/+0
|
* Add a new package splitting mechanism to replace print-cdrom-packages.sh.jhb2005-03-213-1/+290
| | | | | | | | | | | | | | | | | | The new system tries to be more automated so that there is less work for the re's to do. It also no longer uses a /usr/ports tree as its input, but uses the generated package build including its INDEX file as its input. It parses the INDEX file, determines which packages should go on which ISO images, and then builds full-fledged trees of packages that can be added as an argument to mkisofs along with the tree built by 'make release' to build a full CD image. The INDEX files in the populated trees are generated with volume media number to make use of sysinstall's multiple volume support so that the user is kindly prompted to insert the appropriate disc for a package if it is not on the current disc. There is still some more tweaking to be done here, but this part needs to be committed. This stuff will all be used to prep the 5.4 release as well. Tested by: kensmith, others on re@ Reviewed by: re
* Make sure status variable is always initialized. Why didn't this show up inphilip2005-03-211-1/+1
| | | | my testing? *grmbl*
* Use a designator for initializing only one member of the nlistkeramida2005-03-212-6/+6
| | | | | | | | structs, making pstat WARNS=3 clean on i386, sparc64 and amd64. Bump WARNS level to 3. Approved by: sam, pjd
* New release notes:hrs2005-03-212-0/+8
| | | | pstat(8) -h option.
* - Add a -h flag to pstat to print swap sizes in "human readable"keramida2005-03-213-24/+50
| | | | | | | | | | | | | | | | | | | format, with humanize_number(3). - Move the common parts of the code that prints the sizes for a single swap device and the total to a single function to avoid repeating the humanize_number() stuff all over the place. - Change the type of CONVERT() from intmax_t to int64_t, since this makes calling humanize_number() easier but cast the values to intmax_t before printing them, to make use of the %jd format that printf() supports. - Document the new -h flag in the manpage and bump its date. Approved by: pjd Useful tips: brooks MFC after: 2 weeks
* MFC: CARP (Common Address Redundancy Protocol).hrs2005-03-212-2/+2
|
* Refactor node so that it does not modify mbuf contents. Next step wouldglebius2005-03-211-19/+68
| | | | | | | | | | | | | be pass-thru mode, when traffic is not copied by ng_tee, but passed thru ng_netflow. Changes made: - In ng_netflow_rcvdata() do all necessary pulluping: Ethernet header, IP header, and TCP/UDP header. - Pass only pointer to struct ip to ng_netflow_flow_add(). Any TCP/UDP headers are guaranteed to by after it. - Merge make_flow_rec() function into ng_netflow_flow_add().
* Refactor node so that it does not modify mbuf contents. Next step wouldglebius2005-03-213-100/+67
| | | | | | | | | | | | | be pass-thru mode, when traffic is not copied by ng_tee, but passed thru ng_netflow. Changes made: - In ng_netflow_rcvdata() do all necessary pulluping: Ethernet header, IP header, and TCP/UDP header. - Pass only pointer to struct ip to ng_netflow_flow_add(). Any TCP/UDP headers are guaranteed to by after it. - Merge make_flow_rec() function into ng_netflow_flow_add().
OpenPOWER on IntegriCloud