ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/src/release/0.7.8
Revision 7559 - Directory Listing - [select for diffs]
Modified Thu May 19 22:01:36 2016 UTC (7 years, 10 months ago) by root
Copied from: stable/0.7 revision 7558
Diff to previous 7556
MidnightBSD 0.7.8

Revision 7556 - Directory Listing - [select for diffs]
Modified Thu May 19 12:39:40 2016 UTC (7 years, 10 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7551
MidnightBSD 0.7.8

Revision 7551 - Directory Listing - [select for diffs]
Modified Thu May 5 08:09:14 2016 UTC (7 years, 10 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7546
MidnightBSD 0.7.7-RELEASE

Revision 7546 - Directory Listing - [select for diffs]
Modified Thu May 5 07:49:43 2016 UTC (7 years, 10 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7498
OpenSSL security patch

The padding check in AES-NI CBC MAC was rewritten to be in constant time
by making sure that always the same bytes are read and compared against
either the MAC or padding bytes. But it no longer checked that there was
enough data to have both the MAC and padding bytes. [CVE-2016-2107]

An overflow can occur in the EVP_EncodeUpdate() function which is used for
Base64 encoding of binary data. [CVE-2016-2105]

An overflow can occur in the EVP_EncryptUpdate() function, however it is
believed that there can be no overflows in internal code due to this problem.
[CVE-2016-2106]

When ASN.1 data is read from a BIO using functions such as d2i_CMS_bio()
a short invalid encoding can casuse allocation of large amounts of memory
potentially consuming excessive resources or exhausting memory.
[CVE-2016-2109]

Revision 7498 - Directory Listing - [select for diffs]
Modified Thu Mar 24 03:53:54 2016 UTC (8 years ago) by laffer1
Original Path: stable/0.7
Diff to previous 7470
fix some warnings

Revision 7470 - Directory Listing - [select for diffs]
Modified Thu Mar 17 12:47:38 2016 UTC (8 years ago) by laffer1
Original Path: stable/0.7
Diff to previous 7468
        Incorrect argument validation in sysarch(2)

        A special combination of sysarch(2) arguments, specify a request to
        uninstall a set of descriptors from the LDT.  The start descriptor
        is cleared and the number of descriptors are provided.  Due to invalid
        use of a signed intermediate value in the bounds checking during argument
        validity verification, unbound zero'ing of the process LDT and adjacent
        memory can be initiated from usermode.

        Patch obtained from FreeBSD.

Revision 7468 - Directory Listing - [select for diffs]
Modified Thu Mar 17 12:36:44 2016 UTC (8 years ago) by laffer1
Original Path: stable/0.7
Diff to previous 7465
        MidnightBSD 0.7.6 RELEASE

        OpenSSH doesn't have the luck of the Irish.

        Fix a security issue with OpenSSH X11 forwarding that can allow an attacker
        run shell commands on the call to xauth.

Revision 7465 - Directory Listing - [select for diffs]
Modified Thu Mar 10 14:14:32 2016 UTC (8 years ago) by laffer1
Original Path: stable/0.7
Diff to previous 7464
MidnightBSD 0.7.5 RELEASE

Revision 7464 - Directory Listing - [select for diffs]
Modified Thu Mar 10 14:11:16 2016 UTC (8 years ago) by laffer1
Original Path: stable/0.7
Diff to previous 7463
mention openssl patch

Revision 7463 - Directory Listing - [select for diffs]
Modified Thu Mar 10 14:09:36 2016 UTC (8 years ago) by laffer1
Original Path: stable/0.7
Diff to previous 7449
OpenSSL security patch for DROWN

A cross-protocol attack was discovered that could lead to decryption of TLS
sessions by using a server supporting SSLv2 and EXPORT cipher suites as a
Bleichenbacher RSA padding oracle.  Note that traffic between clients and
non-vulnerable servers can be decrypted provided another server supporting
SSLv2 and EXPORT ciphers (even with a different protocol such as SMTP, IMAP
or POP3) shares the RSA keys of the non-vulnerable server.  This vulnerability
is known as DROWN.  [CVE-2016-0800]

A double free bug was discovered when OpenSSL parses malformed DSA private
keys and could lead to a DoS attack or memory corruption for applications that
receive DSA private keys from untrusted sources.  This scenario is considered
rare.  [CVE-2016-0705]

The SRP user database lookup method SRP_VBASE_get_by_user had confusing memory
management semantics; the returned pointer was sometimes newly allocated, and
sometimes owned by the callee.  The calling code has no way of distinguishing
these two cases.  [CVE-2016-0798]

In the BN_hex2bn function, the number of hex digits is calculated using an int
value |i|.  Later |bn_expand| is called with a value of |i * 4|.  For large
values of |i| this can result in |bn_expand| not allocating any memory because
|i * 4| is negative.  This can leave the internal BIGNUM data field as NULL
leading to a subsequent NULL pointer dereference.  For very large values of
|i|, the calculation |i * 4| could be a positive value smaller than |i|.  In
this case memory is allocated to the internal BIGNUM data field, but it is
insufficiently sized leading to heap corruption.  A similar issue exists in
BN_dec2bn.  This could have security consequences if BN_hex2bn/BN_dec2bn is
ever called by user applications with very large untrusted hex/dec data.  This
is anticipated to be a rare occurrence.  [CVE-2016-0797]

The internal |fmtstr| function used in processing a "%s" formatted string in
the BIO_*printf functions could overflow while calculating the length of
a string and cause an out-of-bounds read when printing very long strings.
[CVE-2016-0799]

A side-channel attack was found which makes use of cache-bank conflicts on the
Intel Sandy-Bridge microarchitecture which could lead to the recovery of RSA
keys. [CVE-2016-0702]

s2_srvr.c did not enforce that clear-key-length is 0 for non-export ciphers.
If clear-key bytes are present for these ciphers, they displace encrypted-key
bytes.  [CVE-2016-0703]

s2_srvr.c overwrites the wrong bytes in the master key when applying
Bleichenbacher protection for export cipher suites.  [CVE-2016-0704]

Obtained from: OpenSSL & FreeBSD

Revision 7449 - Directory Listing - [select for diffs]
Modified Fri Feb 26 23:50:34 2016 UTC (8 years, 1 month ago) by laffer1
Original Path: stable/0.7
Diff to previous 7443
MFC: add mport_list_index function needed by the new mport-manager

Revision 7443 - Directory Listing - [select for diffs]
Modified Wed Feb 3 05:39:21 2016 UTC (8 years, 1 month ago) by laffer1
Original Path: stable/0.7
Diff to previous 7442
linuxolator security update

Revision 7442 - Directory Listing - [select for diffs]
Modified Wed Feb 3 05:38:49 2016 UTC (8 years, 1 month ago) by laffer1
Original Path: stable/0.7
Diff to previous 7439
A programming error in the Linux compatibility layer could cause the
issetugid(2) system call to return incorrect information.

Obtained from: FreeBSD

Revision 7439 - Directory Listing - [select for diffs]
Modified Sat Jan 30 18:07:14 2016 UTC (8 years, 1 month ago) by laffer1
Original Path: stable/0.7
Diff to previous 7434
MidnightBSD 0.7.4 RELEASE

OpenSSL CVE-2015-3197

        A malicious client can negotiate SSLv2 ciphers that have been disabled on
        the server and complete SSLv2 handshakes even if all SSLv2 ciphers have
        been disabled, provided that the SSLv2 protocol was not also disabled via
        SSL_OP_NO_SSLv2.

Revision 7434 - Directory Listing - [select for diffs]
Modified Fri Jan 15 02:29:45 2016 UTC (8 years, 2 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7432
Disable roaming to prevent OpenSSH security issue in the client

Revision 7432 - Directory Listing - [select for diffs]
Modified Fri Jan 15 02:21:49 2016 UTC (8 years, 2 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7428
turn off roaming.

Revision 7428 - Directory Listing - [select for diffs]
Modified Fri Jan 15 00:17:09 2016 UTC (8 years, 2 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7427
Fix 3 issues in OpenSSL

Revision 7427 - Directory Listing - [select for diffs]
Modified Fri Jan 15 00:06:28 2016 UTC (8 years, 2 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7424
MidnightBSD 0.7.3. Fix two issues with linuxolator

Revision 7424 - Directory Listing - [select for diffs]
Modified Thu Jan 14 13:45:37 2016 UTC (8 years, 2 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7422
document SCTP update

Revision 7422 - Directory Listing - [select for diffs]
Modified Thu Jan 14 13:43:09 2016 UTC (8 years, 2 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7420
A lack of proper input checks in the ICMPv6 processing in the SCTP stack
can lead to either a failed kernel assertion or to a NULL pointer
dereference.  In either case, a kernel panic will follow.

Obtained from: FreeBSD

Revision 7420 - Directory Listing - [select for diffs]
Modified Thu Jan 14 13:25:45 2016 UTC (8 years, 2 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7417
TCP MD5 signature denial of service fix

Revision 7417 - Directory Listing - [select for diffs]
Modified Thu Jan 14 13:04:37 2016 UTC (8 years, 2 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7343
MidnightBSD 0.7.2-RELEASE. Fix a security issue with bsnmpd configuration file installation.

Revision 7343 - Directory Listing - [select for diffs]
Modified Sat Oct 3 02:21:32 2015 UTC (8 years, 5 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7340
Revised rpcbind(8) patch to fix issues with NIS

Revision 7340 - Directory Listing - [select for diffs]
Modified Wed Sep 30 23:55:42 2015 UTC (8 years, 5 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7339
bump os version

Revision 7339 - Directory Listing - [select for diffs]
Modified Wed Sep 30 23:55:09 2015 UTC (8 years, 5 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7304
patch rpcbind in 0.7

Revision 7304 - Directory Listing - [select for diffs]
Modified Sat Sep 5 21:55:19 2015 UTC (8 years, 6 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7295
document annoyance

Revision 7295 - Directory Listing - [select for diffs]
Modified Fri Sep 4 21:38:25 2015 UTC (8 years, 6 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7293
 rename to flags

Revision 7293 - Directory Listing - [select for diffs]
Modified Fri Sep 4 21:34:23 2015 UTC (8 years, 6 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7287
sync usb with current

Revision 7287 - Directory Listing - [select for diffs]
Modified Sun Aug 30 16:40:28 2015 UTC (8 years, 6 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7286
document build order change.

Revision 7286 - Directory Listing - [select for diffs]
Modified Sun Aug 30 16:39:15 2015 UTC (8 years, 6 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7285
fix bootstrap to include kerberos tools and m4

Revision 7285 - Directory Listing - [select for diffs]
Modified Sun Aug 30 16:32:15 2015 UTC (8 years, 6 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7280
fix build with newer libarchive

Revision 7280 - Directory Listing - [select for diffs]
Modified Tue Aug 25 22:36:49 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7279
document stable branch creation

Revision 7279 - Directory Listing - [select for diffs]
Modified Tue Aug 25 22:36:14 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7278
mention security fixes

Revision 7278 - Directory Listing - [select for diffs]
Modified Tue Aug 25 22:34:21 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7277
fix the dates. copy and paste can go wrong

Revision 7277 - Directory Listing - [select for diffs]
Modified Tue Aug 25 22:32:09 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: stable/0.7
Diff to previous 7270
add the security patches for openssh w/ pam login and amd64 GS register handling

Revision 7270 - Directory Listing - [select for diffs]
Modified Sun Aug 23 18:57:51 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: stable/0.7
Copied from: trunk revision 7269
Diff to previous 7269
Create 0.7 stable branch.

Revision 7269 - Directory Listing - [select for diffs]
Modified Thu Aug 20 02:12:25 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7268
update list of usb devices

Revision 7268 - Directory Listing - [select for diffs]
Modified Tue Aug 18 23:16:28 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7267
more libarchive updates

Revision 7267 - Directory Listing - [select for diffs]
Modified Tue Aug 18 23:14:53 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7266
fix bundle read after libarchive update

Revision 7266 - Directory Listing - [select for diffs]
Modified Tue Aug 18 23:13:58 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7265
update deprected functions from libarchive 3.

Revision 7265 - Directory Listing - [select for diffs]
Modified Tue Aug 18 23:08:22 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7262
cleanup code

Revision 7262 - Directory Listing - [select for diffs]
Modified Tue Aug 18 20:53:31 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7261
Fix a security vulnerability with expat.

Revision 7261 - Directory Listing - [select for diffs]
Modified Sun Aug 16 17:20:47 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7260
fix os

Revision 7260 - Directory Listing - [select for diffs]
Modified Sat Aug 15 16:59:39 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7259
update makefile for new libarchive

Revision 7259 - Directory Listing - [select for diffs]
Modified Sat Aug 15 16:59:11 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7258
fix cpio build after libarchive update

Revision 7258 - Directory Listing - [select for diffs]
Modified Sat Aug 15 14:42:20 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7257
add stdarg to config

Revision 7257 - Directory Listing - [select for diffs]
Modified Sat Aug 15 13:43:22 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7256
update list of old libs to remove

Revision 7256 - Directory Listing - [select for diffs]
Modified Sat Aug 15 13:37:24 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7255
update config for libarchive 3.1.2

Revision 7255 - Directory Listing - [select for diffs]
Modified Sat Aug 15 13:30:00 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7254
libc now builds with clang

Revision 7254 - Directory Listing - [select for diffs]
Modified Sat Aug 15 13:28:54 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7253
setmode(3) now returns errno consistently on error.

Obtained from: NetBSD

Revision 7253 - Directory Listing - [select for diffs]
Modified Sat Aug 15 13:27:03 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7252
do not use free() without stdlib.h

Revision 7252 - Directory Listing - [select for diffs]
Modified Sat Aug 15 00:46:40 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7251
libarchive 3.1.2

Revision 7251 - Directory Listing - [select for diffs]
Modified Fri Aug 14 21:44:59 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7250
document GNU coreutils compatibily for date

Revision 7250 - Directory Listing - [select for diffs]
Modified Fri Aug 14 21:43:59 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7249
make date(1) behave like GNU date when the -r option cant be interpreted as a number.

Revision 7249 - Directory Listing - [select for diffs]
Modified Fri Aug 14 14:56:56 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7248
bump midnightbsd version after wait6 system call addition

Revision 7248 - Directory Listing - [select for diffs]
Modified Fri Aug 14 14:39:58 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7247
add userland piece for wait6 system call

Revision 7247 - Directory Listing - [select for diffs]
Modified Fri Aug 14 14:20:09 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7244
add the kernel piece of wait6 system call

Revision 7244 - Directory Listing - [select for diffs]
Modified Wed Aug 12 23:56:21 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7243
document yesterday

Revision 7243 - Directory Listing - [select for diffs]
Modified Wed Aug 12 22:49:34 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7242
regenerate syscall

Revision 7242 - Directory Listing - [select for diffs]
Modified Wed Aug 12 21:58:53 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7241
add newer intel chip definitions

Revision 7241 - Directory Listing - [select for diffs]
Modified Wed Aug 12 21:54:31 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7240
Improve *access*() paramter name consistency.

Code currently mixes use of flags and mode.  Fix that.

Obtained from: FreeBSD revision 227691

Revision 7240 - Directory Listing - [select for diffs]
Modified Wed Aug 12 21:48:33 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7239
finish changes needed on dev code for clang

Revision 7239 - Directory Listing - [select for diffs]
Modified Wed Aug 12 02:00:24 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7238
fix more const issues with ste, safe, sis, ske, re, ral, pci, mps

Revision 7238 - Directory Listing - [select for diffs]
Modified Wed Aug 12 01:52:04 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7237
remove duplicate const

Revision 7237 - Directory Listing - [select for diffs]
Modified Wed Aug 12 01:41:19 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7236
remove useless const

Revision 7236 - Directory Listing - [select for diffs]
Modified Wed Aug 12 01:37:40 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7235
fix more const issues and memory allocation

Revision 7235 - Directory Listing - [select for diffs]
Modified Wed Aug 12 01:33:52 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7234
use newer memory allocation style

Revision 7234 - Directory Listing - [select for diffs]
Modified Wed Aug 12 01:20:39 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7233
sync cas with freebsd 9-stable and fix another const warning in bge

Revision 7233 - Directory Listing - [select for diffs]
Modified Wed Aug 12 01:15:18 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7232
deconst this sucker

Revision 7232 - Directory Listing - [select for diffs]
Modified Wed Aug 12 01:11:48 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7231
init some variables so we can silence clang

Revision 7231 - Directory Listing - [select for diffs]
Modified Wed Aug 12 00:40:39 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7230
readability

Revision 7230 - Directory Listing - [select for diffs]
Modified Wed Aug 12 00:17:21 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7229
allow ata to compile with clang

Revision 7229 - Directory Listing - [select for diffs]
Modified Wed Aug 12 00:12:48 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7228
add AMD HUDSON2 sata controllers and defines for JMicron 362 and intel lynxpoint chips

Revision 7228 - Directory Listing - [select for diffs]
Modified Wed Aug 12 00:12:03 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7227
remove const for ite

Revision 7227 - Directory Listing - [select for diffs]
Modified Wed Aug 12 00:11:41 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7226
jmicroc 362

Revision 7226 - Directory Listing - [select for diffs]
Modified Wed Aug 12 00:11:20 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7225
nvidia and marvell should not use const twice

Revision 7225 - Directory Listing - [select for diffs]
Modified Wed Aug 12 00:07:04 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7224
remove more crazy const

Revision 7224 - Directory Listing - [select for diffs]
Modified Tue Aug 11 23:53:38 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7223
drop duplicate const

Revision 7223 - Directory Listing - [select for diffs]
Modified Tue Aug 11 22:05:20 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7222
remove duplicate const

Revision 7222 - Directory Listing - [select for diffs]
Modified Tue Aug 11 21:36:31 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7221
fix two compiler warnings

Revision 7221 - Directory Listing - [select for diffs]
Modified Sun Aug 9 23:56:13 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7220
xz 5.0.8

Revision 7220 - Directory Listing - [select for diffs]
Modified Sun Aug 9 23:55:47 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7217
xz 5.0.8

Revision 7217 - Directory Listing - [select for diffs]
Modified Sun Aug 9 23:45:39 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7216
code cleanup

Revision 7216 - Directory Listing - [select for diffs]
Modified Sat Aug 8 05:01:32 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7215
document syslog in libmport

Revision 7215 - Directory Listing - [select for diffs]
Modified Sat Aug 8 04:57:19 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7214
add syslog support to libmport. when installing or uninstalling, it will be logged via LOG_NOTICE facility

Revision 7214 - Directory Listing - [select for diffs]
Modified Thu Aug 6 01:35:50 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7213
need this for compat43

Revision 7213 - Directory Listing - [select for diffs]
Modified Thu Aug 6 01:29:03 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7210
add a guard

Revision 7210 - Directory Listing - [select for diffs]
Modified Thu Aug 6 00:10:00 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7209
document routed and bsd patch fixes

Revision 7209 - Directory Listing - [select for diffs]
Modified Thu Aug 6 00:05:29 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7208
dont allow traffic from outside interfaces on the output path

Revision 7208 - Directory Listing - [select for diffs]
Modified Thu Aug 6 00:00:59 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7207
Fix a shell injection vulnerability in patch.

Revision 7207 - Directory Listing - [select for diffs]
Modified Sun Aug 2 19:53:24 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7206
upgrade configuration

Revision 7206 - Directory Listing - [select for diffs]
Modified Sun Aug 2 14:30:03 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7205
Document libjansson

Revision 7205 - Directory Listing - [select for diffs]
Modified Sun Aug 2 14:27:39 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7204
add libjansson

Revision 7204 - Directory Listing - [select for diffs]
Modified Sun Aug 2 14:27:05 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7203
add jansson library

Revision 7203 - Directory Listing - [select for diffs]
Modified Sun Aug 2 14:25:49 2015 UTC (8 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 7200
add jansson

Revision 7200 - Directory Listing - [select for diffs]
Modified Wed Jul 29 00:47:57 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7199
document patch change

Revision 7199 - Directory Listing - [select for diffs]
Modified Wed Jul 29 00:45:52 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7198
get rid of gnu patch

Revision 7198 - Directory Listing - [select for diffs]
Modified Wed Jul 29 00:45:20 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7195
add bsd patch

Revision 7195 - Directory Listing - [select for diffs]
Modified Wed Jul 29 00:37:33 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7194
mention security patches

Revision 7194 - Directory Listing - [select for diffs]
Modified Wed Jul 29 00:35:21 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7192
Fix two OpenSSH security issues:

CVE-2014-2653 and CVE-2015-5600

Attackers can bypass MaxAuthTries and brute force passwords. Clients will
not properly validate DNS SSHFP records that offer a certificate. (rarely used)

Revision 7192 - Directory Listing - [select for diffs]
Modified Wed Jul 29 00:31:09 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7191
tcp resassembly bug

Revision 7191 - Directory Listing - [select for diffs]
Modified Wed Jul 29 00:30:12 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7190
TCP Resassemly resource exhaustion bug:

There is a mistake with the introduction of VNET, which converted the
global limit on the number of segments that could belong to reassembly
queues into a per-VNET limit.  Because mbufs are allocated from a
global pool, in the presence of a sufficient number of VNETs, the
total number of mbufs attached to reassembly queues can grow to the
total number of mbufs in the system, at which point all network
traffic would cease.

Obtained from: FreeBSD 8

Revision 7190 - Directory Listing - [select for diffs]
Modified Tue Jul 28 11:57:01 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7189
tag

Revision 7189 - Directory Listing - [select for diffs]
Modified Tue Jul 28 11:56:11 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7188
enable wheel by default

Revision 7188 - Directory Listing - [select for diffs]
Modified Tue Jul 28 11:46:31 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7187
update the startup scripts to work with the new kerberos

Revision 7187 - Directory Listing - [select for diffs]
Modified Tue Jul 28 11:10:51 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7186
mention openssl, heimdal and cpucontrol updates.

Revision 7186 - Directory Listing - [select for diffs]
Modified Tue Jul 28 11:07:30 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7185
syncup remaining fixes

Revision 7185 - Directory Listing - [select for diffs]
Modified Tue Jul 28 11:03:45 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7184
tag

Revision 7184 - Directory Listing - [select for diffs]
Modified Tue Jul 28 01:26:28 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7183
remove files not used.

Revision 7183 - Directory Listing - [select for diffs]
Modified Tue Jul 28 01:15:21 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7182
sync-up telnet code

Revision 7182 - Directory Listing - [select for diffs]
Modified Tue Jul 28 01:14:43 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7181
update for newer kerberos code

Revision 7181 - Directory Listing - [select for diffs]
Modified Tue Jul 28 01:14:30 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7180
update for newer kerberos code

Revision 7180 - Directory Listing - [select for diffs]
Modified Tue Jul 28 01:14:10 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7179
add subdirectory to include path for telnet

Revision 7179 - Directory Listing - [select for diffs]
Modified Tue Jul 28 01:12:43 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7178
update include to match new code

Revision 7178 - Directory Listing - [select for diffs]
Modified Tue Jul 28 01:12:16 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7177
update header to match new code

Revision 7177 - Directory Listing - [select for diffs]
Modified Tue Jul 28 01:11:59 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7176
tag

Revision 7176 - Directory Listing - [select for diffs]
Modified Tue Jul 28 00:49:35 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7175
use cpuid_count for cpuctl

Revision 7175 - Directory Listing - [select for diffs]
Modified Tue Jul 28 00:43:18 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7174
add via support to cpucontrol(8)

Revision 7174 - Directory Listing - [select for diffs]
Modified Sun Jul 26 23:59:10 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7173
add kerberos configuration for OpenSSH

Revision 7173 - Directory Listing - [select for diffs]
Modified Sun Jul 26 22:13:12 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7172
avoid NULL dereference

Revision 7172 - Directory Listing - [select for diffs]
Modified Sun Jul 26 21:59:33 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7171
Avoid integer overflow and reading past EOF with elf headers.

Obtained from: FreeBSD 10-stable

Revision 7171 - Directory Listing - [select for diffs]
Modified Sun Jul 26 21:50:20 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7170
remove unused files

Revision 7170 - Directory Listing - [select for diffs]
Modified Sun Jul 26 19:25:24 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7169
Improve the error message when powerd fails

Revision 7169 - Directory Listing - [select for diffs]
Modified Sun Jul 26 19:19:42 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7168
check for null

Revision 7168 - Directory Listing - [select for diffs]
Modified Sun Jul 26 18:22:27 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7167
sqlite 3.8.10.2 imported

Revision 7167 - Directory Listing - [select for diffs]
Modified Sun Jul 26 18:20:52 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7164
sqlite 3.8.10.2

Revision 7164 - Directory Listing - [select for diffs]
Modified Sun Jul 26 17:42:19 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7163
document sort update

Revision 7163 - Directory Listing - [select for diffs]
Modified Sun Jul 26 17:36:28 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7162
more cleanup

Revision 7162 - Directory Listing - [select for diffs]
Modified Sun Jul 26 17:28:41 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7161
remove auth

Revision 7161 - Directory Listing - [select for diffs]
Modified Sun Jul 26 17:28:24 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7160
remove some unused code and disable some code that is causing issues

Revision 7160 - Directory Listing - [select for diffs]
Modified Sun Jul 26 17:28:14 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7159
remove some unused code and disable some code that is causing issues

Revision 7159 - Directory Listing - [select for diffs]
Modified Sun Jul 26 17:18:43 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7158
drop not makefile

Revision 7158 - Directory Listing - [select for diffs]
Modified Sun Jul 26 17:12:20 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7157
tag

Revision 7157 - Directory Listing - [select for diffs]
Modified Sun Jul 26 17:12:05 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7156
add some examples

Revision 7156 - Directory Listing - [select for diffs]
Modified Sun Jul 26 17:10:42 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7155
update sort

Revision 7155 - Directory Listing - [select for diffs]
Modified Sun Jul 26 17:05:25 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7154
cleanup some headers

Revision 7154 - Directory Listing - [select for diffs]
Modified Sun Jul 26 17:05:13 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7153
bring in some man page cleanup

Revision 7153 - Directory Listing - [select for diffs]
Modified Sun Jul 26 15:18:09 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7152
sync libgssapi with FreeBSD 10 stable

Revision 7152 - Directory Listing - [select for diffs]
Modified Sun Jul 26 03:07:40 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7151
fix compatibility with kerberos heimdal 1.5.2

Revision 7151 - Directory Listing - [select for diffs]
Modified Sun Jul 26 00:58:07 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7150
They've gone to plaid.

Revision 7150 - Directory Listing - [select for diffs]
Modified Sat Jul 25 20:20:22 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7149
change the build order of the kerberos tools for the new release

Revision 7149 - Directory Listing - [select for diffs]
Modified Sat Jul 25 20:18:42 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7148
add kerberos 5 directory for include files

Revision 7148 - Directory Listing - [select for diffs]
Modified Sat Jul 25 19:24:41 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7147
cleanup botched merge

Revision 7147 - Directory Listing - [select for diffs]
Modified Sat Jul 25 19:24:30 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7146
clean botched merge

Revision 7146 - Directory Listing - [select for diffs]
Modified Sat Jul 25 19:18:30 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7145
tag

Revision 7145 - Directory Listing - [select for diffs]
Modified Sat Jul 25 19:18:22 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7144
fix a botched merge

Revision 7144 - Directory Listing - [select for diffs]
Modified Sat Jul 25 19:18:11 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7143
update the list

Revision 7143 - Directory Listing - [select for diffs]
Modified Sat Jul 25 19:17:59 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7142
chage the order

Revision 7142 - Directory Listing - [select for diffs]
Modified Sat Jul 25 19:17:48 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7141
revert the readme change

Revision 7141 - Directory Listing - [select for diffs]
Modified Sat Jul 25 19:06:06 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7140
document reallocarray in libc

Revision 7140 - Directory Listing - [select for diffs]
Modified Sat Jul 25 19:03:20 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7139
Bring in reallocarray(3) from OpenBSD CURRENT.

The reallocarray() function is similar to realloc() except it operates on nmemb members of size size and checks for integer overflow in the calculation nmemb * size.

Revision 7139 - Directory Listing - [select for diffs]
Modified Sat Jul 25 04:23:17 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7138
remove old files

Revision 7138 - Directory Listing - [select for diffs]
Modified Fri Jul 24 22:40:44 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7137
CVS updating is gone

Revision 7137 - Directory Listing - [select for diffs]
Modified Fri Jul 24 22:32:08 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7136
bump version after openssl update

Revision 7136 - Directory Listing - [select for diffs]
Modified Fri Jul 24 22:31:33 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7135
bump the bootstrap versions on some recently updated utilities.

Revision 7135 - Directory Listing - [select for diffs]
Modified Fri Jul 24 22:26:52 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7134
up the minimum version to build on

Revision 7134 - Directory Listing - [select for diffs]
Modified Fri Jul 24 21:30:10 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7133
merge heimdal 1.5.2

Revision 7133 - Directory Listing - [select for diffs]
Modified Fri Jul 24 20:43:36 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7132
cleanup

Revision 7132 - Directory Listing - [select for diffs]
Modified Fri Jul 24 20:42:11 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7129
start merge of 1.5.2

Revision 7129 - Directory Listing - [select for diffs]
Modified Fri Jul 24 19:02:18 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7128
tag

Revision 7128 - Directory Listing - [select for diffs]
Modified Fri Jul 24 19:01:42 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7127
rename xlist

Revision 7127 - Directory Listing - [select for diffs]
Modified Wed Jul 22 15:02:23 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7123
        Fix a bug where TCP connections transitioning to LAST_ACK
        state can get stuck. This can result in a denial of service.

Revision 7123 - Directory Listing - [select for diffs]
Modified Tue Jul 21 23:40:51 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7122
add files

Revision 7122 - Directory Listing - [select for diffs]
Modified Tue Jul 21 23:39:47 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7121
add man pages

Revision 7121 - Directory Listing - [select for diffs]
Modified Tue Jul 21 23:36:48 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7120
Update OpenSSL to 1.0.1o. Use basic build setup from FreeBSD 10-stable.

Revision 7120 - Directory Listing - [select for diffs]
Modified Tue Jul 21 23:33:22 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7119
Sync fetch with FreeBSD 10-stable. Also introduce SSL support

Revision 7119 - Directory Listing - [select for diffs]
Modified Tue Jul 21 23:32:00 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7118
do some merge cleanup

Revision 7118 - Directory Listing - [select for diffs]
Modified Tue Jul 21 23:23:45 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7117
merge openssl 1.0.1o

Revision 7117 - Directory Listing - [select for diffs]
Modified Tue Jul 21 15:38:55 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7116
add jail support

Revision 7116 - Directory Listing - [select for diffs]
Modified Tue Jul 21 14:31:05 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7115
fix build of fifolog with lex & yacc updates.

Revision 7115 - Directory Listing - [select for diffs]
Modified Tue Jul 21 13:05:45 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7114
config was deleted

Revision 7114 - Directory Listing - [select for diffs]
Modified Sun Jul 19 14:04:13 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7113
update config after lex/yacc

Revision 7113 - Directory Listing - [select for diffs]
Modified Sun Jul 19 13:58:36 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7112
include stdlib for free

Revision 7112 - Directory Listing - [select for diffs]
Modified Sun Jul 19 13:56:48 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7111
fix build with newer lex/yacc

Revision 7111 - Directory Listing - [select for diffs]
Modified Sat Jul 18 22:17:29 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7110
lower warns

Revision 7110 - Directory Listing - [select for diffs]
Modified Sat Jul 18 20:58:04 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7109
sync mklocale with FreeBSD 10 stable

Revision 7109 - Directory Listing - [select for diffs]
Modified Sat Jul 18 20:55:30 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7108
replace line numbers to avoid shadow declaration warnings after lex/yacc update

Revision 7108 - Directory Listing - [select for diffs]
Modified Sat Jul 18 19:58:54 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7107
sync up mkcsmapper with freebsd 10

Revision 7107 - Directory Listing - [select for diffs]
Modified Sat Jul 18 19:56:50 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7106
set noinput

Revision 7106 - Directory Listing - [select for diffs]
Modified Sat Jul 18 11:10:19 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7105
fix build of find(1) with updated yacc

Revision 7105 - Directory Listing - [select for diffs]
Modified Sat Jul 18 00:35:13 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7104
allow for NO_INPUT and NO_UNPUT to work with several usr.bin utilities

Revision 7104 - Directory Listing - [select for diffs]
Modified Fri Jul 17 15:45:45 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7101
update bc.  sync with OpenBSD and FreeBSD 10 stable

Revision 7101 - Directory Listing - [select for diffs]
Modified Fri Jul 17 12:06:23 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7100
fix build with new yacc

Revision 7100 - Directory Listing - [select for diffs]
Modified Thu Jul 16 23:49:23 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7099
name changed to le_name_numints

Revision 7099 - Directory Listing - [select for diffs]
Modified Thu Jul 16 22:44:48 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7098
set to warns zero for now

Revision 7098 - Directory Listing - [select for diffs]
Modified Thu Jul 16 22:44:15 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7097
set to warns zero until we can fix yacc

Revision 7097 - Directory Listing - [select for diffs]
Modified Thu Jul 16 11:54:03 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7096
fix build

Revision 7096 - Directory Listing - [select for diffs]
Modified Thu Jul 16 11:52:35 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7095
tag

Revision 7095 - Directory Listing - [select for diffs]
Modified Thu Jul 16 11:52:10 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7094
fix build of devd with new lex/yacc versions

Revision 7094 - Directory Listing - [select for diffs]
Modified Wed Jul 15 12:11:04 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7093
document libmport changes on @sample and @shell

Revision 7093 - Directory Listing - [select for diffs]
Modified Wed Jul 15 12:08:26 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7092
refactor to print a friendly message if the files do not match

Revision 7092 - Directory Listing - [select for diffs]
Modified Wed Jul 15 11:25:25 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7091
partial fix. we are now generating the sample file correctly. on deinstall it is always removed though

Revision 7091 - Directory Listing - [select for diffs]
Modified Wed Jul 15 11:07:03 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7090
add register/unregister functions for shells and wire in.  Now @shell will include a shell in /etc/shells automatically!

Revision 7090 - Directory Listing - [select for diffs]
Modified Wed Jul 15 01:45:45 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7089
delete sample file if it matches md5 hash

Revision 7089 - Directory Listing - [select for diffs]
Modified Wed Jul 15 01:28:03 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7088
reimplement mport_copy_file to use C code rather than system() cp to improve performance. Also, modify mport to create a copy of .sample files without the file extension if there isnt already a file. This is often used for config files and it helps the user get a default

Revision 7088 - Directory Listing - [select for diffs]
Modified Sun Jul 12 17:42:35 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7087
teach libmport about @shell. We want to take this a step farther and "register" the shell next.

Revision 7087 - Directory Listing - [select for diffs]
Modified Sun Jul 12 16:41:02 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7086
fix libipsec build with the new lex/byacc

Revision 7086 - Directory Listing - [select for diffs]
Modified Thu Jul 9 21:45:37 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7085
midnightbsd 7002 includes ZFS lz4, lex, byacc, m4 updates

Revision 7085 - Directory Listing - [select for diffs]
Modified Thu Jul 9 21:38:48 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7084
restore from a previous botched commit

Revision 7084 - Directory Listing - [select for diffs]
Modified Thu Jul 9 21:38:17 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7083
update byacc version

Revision 7083 - Directory Listing - [select for diffs]
Modified Thu Jul 9 21:35:39 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7082
update m4 from openbsd/freebsd 10 stable

Revision 7082 - Directory Listing - [select for diffs]
Modified Thu Jul 9 21:33:44 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7080
add byacc to contrib

Revision 7080 - Directory Listing - [select for diffs]
Modified Thu Jul 9 20:52:30 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7079
update flex mention

Revision 7079 - Directory Listing - [select for diffs]
Modified Thu Jul 9 20:52:06 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7078
flex 2.5.39

Revision 7078 - Directory Listing - [select for diffs]
Modified Thu Jul 9 20:51:56 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7077
flex 2.5.39

Revision 7077 - Directory Listing - [select for diffs]
Modified Thu Jul 9 12:39:16 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7072
add flex to contrib

Revision 7072 - Directory Listing - [select for diffs]
Modified Thu Jul 9 01:54:40 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7071
free memory properly on verify

Revision 7071 - Directory Listing - [select for diffs]
Modified Thu Jul 9 01:45:26 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7070
fix a memory leak

Revision 7070 - Directory Listing - [select for diffs]
Modified Thu Jul 9 01:36:52 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7069
fix a small memory leak.

Revision 7069 - Directory Listing - [select for diffs]
Modified Thu Jul 2 23:06:11 2015 UTC (8 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 7068
introduce lz4 compression into our ZFS implementation.

Revision 7068 - Directory Listing - [select for diffs]
Modified Wed Jun 24 00:01:12 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7067
increase client requirements for compatibility with openssl updates

Revision 7067 - Directory Listing - [select for diffs]
Modified Sun Jun 21 19:01:47 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7066
bump midnightbsd version after zfs trim and mport changes

Revision 7066 - Directory Listing - [select for diffs]
Modified Sun Jun 21 19:01:11 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7065
delete old files

Revision 7065 - Directory Listing - [select for diffs]
Modified Sun Jun 21 18:59:54 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7063
document the new service stop feature in mport packages

Revision 7063 - Directory Listing - [select for diffs]
Modified Sun Jun 21 18:48:44 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7062
add support for stopping a service if it exists automatically!

Revision 7062 - Directory Listing - [select for diffs]
Modified Sat Jun 20 23:40:02 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7061
sync tools

Revision 7061 - Directory Listing - [select for diffs]
Modified Sat Jun 20 23:25:50 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7060
remove unused tests.

Revision 7060 - Directory Listing - [select for diffs]
Modified Sat Jun 20 23:24:57 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7059
revert change that breaks gcc builds

Revision 7059 - Directory Listing - [select for diffs]
Modified Sat Jun 20 23:14:13 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7058
remove unit tests. we dont use them.

Revision 7058 - Directory Listing - [select for diffs]
Modified Sat Jun 20 23:10:46 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7057
remove unused items in utils

Revision 7057 - Directory Listing - [select for diffs]
Modified Sat Jun 20 23:09:57 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7056
make static

Revision 7056 - Directory Listing - [select for diffs]
Modified Sat Jun 20 23:09:37 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7055
make static

Revision 7055 - Directory Listing - [select for diffs]
Modified Sat Jun 20 23:08:42 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7054
switch to compiler.mk

Revision 7054 - Directory Listing - [select for diffs]
Modified Sat Jun 20 19:15:33 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7053
allow the -d option to work without additional arguments for OpenBSD/FreeBSD compatibility with mktemp

Revision 7053 - Directory Listing - [select for diffs]
Modified Sat Jun 20 00:08:35 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7052
add headers for now

Revision 7052 - Directory Listing - [select for diffs]
Modified Sat Jun 20 00:07:52 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7051
remove example.c

Revision 7051 - Directory Listing - [select for diffs]
Modified Fri Jun 19 22:09:54 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7050
update version

Revision 7050 - Directory Listing - [select for diffs]
Modified Fri Jun 19 21:33:02 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7049
we need to properly port this, but at least define midnightbsd macros for now

Revision 7049 - Directory Listing - [select for diffs]
Modified Fri Jun 19 12:17:44 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7048
drop the sparc build file

Revision 7048 - Directory Listing - [select for diffs]
Modified Fri Jun 19 03:20:50 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7047
set warns 6

Revision 7047 - Directory Listing - [select for diffs]
Modified Fri Jun 19 02:30:27 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7046
Introduce trim support for ZFS

Revision 7046 - Directory Listing - [select for diffs]
Modified Fri Jun 19 01:10:07 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7045
bring in a sanity check from CheriBSD to stop people from running make with no target

Revision 7045 - Directory Listing - [select for diffs]
Modified Fri Jun 19 01:05:49 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7044
set keyword

Revision 7044 - Directory Listing - [select for diffs]
Modified Fri Jun 19 01:05:07 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7043
handle rename here too

Revision 7043 - Directory Listing - [select for diffs]
Modified Fri Jun 19 01:04:12 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7042
rename configuration files. this should have been done years ago

Revision 7042 - Directory Listing - [select for diffs]
Modified Fri Jun 19 00:57:24 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7041
bring in a useful feature from FreeBSD. Generate SSL certificates automatically for sendmail

Revision 7041 - Directory Listing - [select for diffs]
Modified Fri Jun 19 00:16:01 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7040
adjust address families.

Revision 7040 - Directory Listing - [select for diffs]
Modified Fri Jun 19 00:14:30 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7039
require FILESYSTEMS for many items. print detail with zfs mount

Revision 7039 - Directory Listing - [select for diffs]
Modified Thu Jun 18 23:57:39 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7038
sendmail obviously needs to depend on file systems

Revision 7038 - Directory Listing - [select for diffs]
Modified Thu Jun 18 23:56:47 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7037
refactor so that we depend on FILESYSTEMS rather than cleanvar. it is cleaner

Revision 7037 - Directory Listing - [select for diffs]
Modified Thu Jun 18 17:00:55 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7036
increase the default DH parameters for client conections to 1024 to match server and work with modern openssl

Revision 7036 - Directory Listing - [select for diffs]
Modified Sun Jun 14 20:48:59 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7035
fix locked

Revision 7035 - Directory Listing - [select for diffs]
Modified Sun Jun 14 20:43:25 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7034
add lock and unlock commands

Revision 7034 - Directory Listing - [select for diffs]
Modified Sun Jun 14 20:43:09 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7033
fix setting locked param

Revision 7033 - Directory Listing - [select for diffs]
Modified Sun Jun 14 20:42:45 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7032
whitespace

Revision 7032 - Directory Listing - [select for diffs]
Modified Sun Jun 14 18:41:58 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7031
add a method to view locks on mport

Revision 7031 - Directory Listing - [select for diffs]
Modified Sun Jun 14 18:35:07 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7030
list locks

Revision 7030 - Directory Listing - [select for diffs]
Modified Sun Jun 14 18:09:32 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7029
add initial docs for locks

Revision 7029 - Directory Listing - [select for diffs]
Modified Sun Jun 14 18:02:34 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7028
Add support for locking and unlocking packages to libmport. This will allow a user to block update or delete operations on packages

Revision 7028 - Directory Listing - [select for diffs]
Modified Sat Jun 13 20:47:07 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7027
sudo 1.7.8p2

Revision 7027 - Directory Listing - [select for diffs]
Modified Sat Jun 13 20:43:00 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7026
sudo 1.7.8p1. include a patch for runaslist match

Revision 7026 - Directory Listing - [select for diffs]
Modified Sat Jun 13 20:42:24 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7025
define bsd source

Revision 7025 - Directory Listing - [select for diffs]
Modified Sat Jun 13 14:10:14 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7024
mention tzdata and openssl 0.9.8zg

Revision 7024 - Directory Listing - [select for diffs]
Modified Sat Jun 13 14:09:21 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7017
tzdata 2015d

Revision 7017 - Directory Listing - [select for diffs]
Modified Fri Jun 12 15:50:33 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7016
fix typo

Revision 7016 - Directory Listing - [select for diffs]
Modified Fri Jun 12 15:31:06 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7012
merge openssl 0.9.8zg

Revision 7012 - Directory Listing - [select for diffs]
Modified Wed Jun 10 12:13:58 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7011
i had updated file to 5.19 but not the config file version

Revision 7011 - Directory Listing - [select for diffs]
Modified Wed Jun 10 12:12:23 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7010
remove old configure script

Revision 7010 - Directory Listing - [select for diffs]
Modified Wed Jun 10 12:10:41 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7009
remove blank file

Revision 7009 - Directory Listing - [select for diffs]
Modified Sun Jun 7 01:10:43 2015 UTC (8 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 7008
import /bin/sh from FreeBSD 9.2

Revision 7008 - Directory Listing - [select for diffs]
Modified Fri May 22 22:50:06 2015 UTC (8 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 7003
Disable ACPI and P4TCC throttling by default. Power consumption is not the intended purpose of P4TCC and it is rarely good at doing so.

Revision 7003 - Directory Listing - [select for diffs]
Modified Sun Apr 26 15:15:41 2015 UTC (8 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 7002
make the link to mtree

Revision 7002 - Directory Listing - [select for diffs]
Modified Sun Apr 19 15:56:54 2015 UTC (8 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 7001
bump package version to 0.7

Revision 7001 - Directory Listing - [select for diffs]
Modified Sun Apr 19 15:55:17 2015 UTC (8 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6999
bump version to 0.7 on current.

Revision 6999 - Directory Listing - [select for diffs]
Modified Sun Apr 19 15:47:59 2015 UTC (8 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6998
bump kernel version to make it easier to detect changes

Revision 6998 - Directory Listing - [select for diffs]
Modified Sat Apr 18 22:51:24 2015 UTC (8 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6995
update sqlite to 3.8.9 to fix several security issues

Revision 6995 - Directory Listing - [select for diffs]
Modified Sat Apr 18 18:10:02 2015 UTC (8 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6993
add preliminary support for sample files aka @sample in the plist. This currently only installs the sample file, but eventually will do some additional steps.

Revision 6993 - Directory Listing - [select for diffs]
Modified Wed Apr 8 01:29:54 2015 UTC (8 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6992
document new security issues that we fixed based on FreeBSD patches for the same issues.

Revision 6992 - Directory Listing - [select for diffs]
Modified Wed Apr 8 01:28:07 2015 UTC (8 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6991
The Neighbor Discover Protocol allows a local router to advertise a
suggested Current Hop Limit value of a link, which will replace
Current Hop Limit on an interface connected to the link on the MidnightBSD
system.

Revision 6991 - Directory Listing - [select for diffs]
Modified Wed Apr 8 01:25:39 2015 UTC (8 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6987
fix a possible overflow issue

Revision 6987 - Directory Listing - [select for diffs]
Modified Fri Mar 20 01:18:50 2015 UTC (9 years ago) by laffer1
Original Path: trunk
Diff to previous 6986
updated mDNSResponder

Revision 6986 - Directory Listing - [select for diffs]
Modified Fri Mar 20 01:18:21 2015 UTC (9 years ago) by laffer1
Original Path: trunk
Diff to previous 6983
mDNSResponder 561.1.1

Revision 6983 - Directory Listing - [select for diffs]
Modified Fri Mar 20 00:53:47 2015 UTC (9 years ago) by laffer1
Original Path: trunk
Diff to previous 6982
updated mksh

Revision 6982 - Directory Listing - [select for diffs]
Modified Fri Mar 20 00:53:29 2015 UTC (9 years ago) by laffer1
Original Path: trunk
Diff to previous 6981
mksh R50e

Revision 6981 - Directory Listing - [select for diffs]
Modified Fri Mar 20 00:52:48 2015 UTC (9 years ago) by laffer1
Original Path: trunk
Diff to previous 6978
mksh R50e

Revision 6978 - Directory Listing - [select for diffs]
Modified Fri Mar 20 00:28:49 2015 UTC (9 years ago) by laffer1
Original Path: trunk
Diff to previous 6973
openssl 0.9.8zf

Revision 6973 - Directory Listing - [select for diffs]
Modified Fri Mar 13 10:57:27 2015 UTC (9 years ago) by laffer1
Original Path: trunk
Diff to previous 6972
handle data as null

Revision 6972 - Directory Listing - [select for diffs]
Modified Sun Mar 8 18:12:42 2015 UTC (9 years ago) by laffer1
Original Path: trunk
Diff to previous 6971
mark incompatible with GNU

Revision 6971 - Directory Listing - [select for diffs]
Modified Sat Mar 7 02:55:43 2015 UTC (9 years ago) by laffer1
Original Path: trunk
Diff to previous 6968
Upgrade to openssl 0.9.8ze

Revision 6968 - Directory Listing - [select for diffs]
Modified Wed Feb 25 14:44:54 2015 UTC (9 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 6967
document security patches for bind and igmp

Revision 6967 - Directory Listing - [select for diffs]
Modified Wed Feb 25 14:43:47 2015 UTC (9 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 6962
Fix two security vulnerabilities.

Revision 6962 - Directory Listing - [select for diffs]
Modified Fri Feb 6 13:57:11 2015 UTC (9 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 6960
Revert revisions 6952-6954, aka udp lite support. This is not ready for primetime yet.

Revision 6960 - Directory Listing - [select for diffs]
Modified Thu Jan 1 15:20:16 2015 UTC (9 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6959
happy new year

Revision 6959 - Directory Listing - [select for diffs]
Modified Mon Dec 15 13:30:15 2014 UTC (9 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6958
add port routing for wildcat point.

Revision 6958 - Directory Listing - [select for diffs]
Modified Sun Dec 14 15:11:43 2014 UTC (9 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6955
skip printing the twiddle as frequently.  this speeds up serial output for boots on consoles

Revision 6955 - Directory Listing - [select for diffs]
Modified Thu Dec 11 13:04:28 2014 UTC (9 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6954
Fix a DOS attack on libmagic

Revision 6954 - Directory Listing - [select for diffs]
Modified Thu Nov 27 15:08:44 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6953
add missing header for udplite

Revision 6953 - Directory Listing - [select for diffs]
Modified Sun Nov 16 20:44:21 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6952
Add FreeBSD's udplite(4) man page.

Revision 6952 - Directory Listing - [select for diffs]
Modified Sun Nov 16 20:36:05 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6951
UDP Lite aka RFC 3828 support.

Revision 6951 - Directory Listing - [select for diffs]
Modified Sun Nov 16 18:34:35 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6950
turn on pthread

Revision 6950 - Directory Listing - [select for diffs]
Modified Fri Nov 14 01:33:09 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6949
free memory

Revision 6949 - Directory Listing - [select for diffs]
Modified Fri Nov 14 01:31:50 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6948
print out something if the package does not exist in the index. This can happen if a newer blessed magus run does not contain a package due to removal or failure.

Revision 6948 - Directory Listing - [select for diffs]
Modified Wed Nov 12 13:27:51 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6947
free memory originally pointed at

Revision 6947 - Directory Listing - [select for diffs]
Modified Wed Nov 12 13:20:55 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6946
if we cant find the package in the index, its probably not currently available in the package system. mention that to the user

Revision 6946 - Directory Listing - [select for diffs]
Modified Wed Nov 12 13:09:51 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6945
use the mport version compare to check for os updates on packages instead

Revision 6945 - Directory Listing - [select for diffs]
Modified Wed Nov 12 13:08:55 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6944
turn on threading libs

Revision 6944 - Directory Listing - [select for diffs]
Modified Wed Nov 12 13:08:06 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6943
thread safety is exposing pthread functions now

Revision 6943 - Directory Listing - [select for diffs]
Modified Wed Nov 12 03:45:22 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6942
change the load detection to take into account the number of cpus in the system for atrun

Revision 6942 - Directory Listing - [select for diffs]
Modified Wed Nov 12 03:18:46 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6941
link against pthread

Revision 6941 - Directory Listing - [select for diffs]
Modified Wed Nov 12 02:52:24 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6940
use isatty to try to avoid crazy output on magus

Revision 6940 - Directory Listing - [select for diffs]
Modified Mon Nov 10 15:59:07 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6938
fix symlink

Revision 6938 - Directory Listing - [select for diffs]
Modified Mon Nov 10 01:51:30 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6937
drop gdbm file directory

Revision 6937 - Directory Listing - [select for diffs]
Modified Mon Nov 10 01:50:39 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6933
fix building perl during buildworld when the GDBM port is installed.

Revision 6933 - Directory Listing - [select for diffs]
Modified Thu Nov 6 12:04:30 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6932
timezone data updated

Revision 6932 - Directory Listing - [select for diffs]
Modified Thu Nov 6 12:03:52 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6926
tzdata 2014i

Revision 6926 - Directory Listing - [select for diffs]
Modified Wed Nov 5 03:39:25 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6925
dont leak kernel memory with setlogin call

Revision 6925 - Directory Listing - [select for diffs]
Modified Wed Nov 5 03:37:38 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6924
fix order that the threading library is included to stop a possible denial of service against sshd

Revision 6924 - Directory Listing - [select for diffs]
Modified Mon Nov 3 02:13:14 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6921
merge sqlite 3.8.7

Revision 6921 - Directory Listing - [select for diffs]
Modified Mon Nov 3 02:05:20 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6920
serf 1.3.8

Revision 6920 - Directory Listing - [select for diffs]
Modified Mon Nov 3 02:00:53 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6913
merge serf 1.3.8

Revision 6913 - Directory Listing - [select for diffs]
Modified Sat Nov 1 00:01:13 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6912
handle midnightbsd

Revision 6912 - Directory Listing - [select for diffs]
Modified Sat Nov 1 00:00:07 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6911
midnightbsd

Revision 6911 - Directory Listing - [select for diffs]
Modified Fri Oct 31 23:59:17 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6910
midnightbsd

Revision 6910 - Directory Listing - [select for diffs]
Modified Fri Oct 31 23:57:23 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6908
save and free pw_class like all other char members of struct passwd. This fixes "login_getclass: unknown class" errors.

Revision 6908 - Directory Listing - [select for diffs]
Modified Fri Oct 31 23:12:35 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6907
tftp with ssl

Revision 6907 - Directory Listing - [select for diffs]
Modified Fri Oct 31 23:00:43 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6906
update for 20141031

Revision 6906 - Directory Listing - [select for diffs]
Modified Fri Oct 31 22:54:10 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6905
add tnftp 20141031

Revision 6905 - Directory Listing - [select for diffs]
Modified Fri Oct 31 22:53:30 2014 UTC (9 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6901
drop old version

Revision 6901 - Directory Listing - [select for diffs]
Modified Thu Oct 30 00:58:22 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6898
turn off gdbm from base perl

Revision 6898 - Directory Listing - [select for diffs]
Modified Tue Oct 28 11:55:52 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6897
OpenSSL 0.9.8zc

Revision 6897 - Directory Listing - [select for diffs]
Modified Tue Oct 28 11:53:50 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6894
merge OpenSSL 0.9.8zc

Revision 6894 - Directory Listing - [select for diffs]
Modified Tue Oct 28 02:15:39 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6893
comment out

Revision 6893 - Directory Listing - [select for diffs]
Modified Tue Oct 28 02:03:23 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6892
fix no option

Revision 6892 - Directory Listing - [select for diffs]
Modified Tue Oct 28 01:27:11 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6891
Revert 6727. Very bad idea

Revision 6891 - Directory Listing - [select for diffs]
Modified Mon Oct 27 23:55:39 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6888
use the major version only

Revision 6888 - Directory Listing - [select for diffs]
Modified Thu Oct 23 12:32:17 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6886
change the order of default algorithms. DES has to be last so that old apps dont crash

Revision 6886 - Directory Listing - [select for diffs]
Modified Tue Oct 21 22:34:00 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6885
Mention security patches. Note this list is not the same as 0.5 because of the different OpenSSL version in progress.

Revision 6885 - Directory Listing - [select for diffs]
Modified Tue Oct 21 22:32:29 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6884
The namei facility will leak a small amount of kernel memory every
time a sandboxed process looks up a nonexistent path name.

Obtained from: FreeBSD

Revision 6884 - Directory Listing - [select for diffs]
Modified Tue Oct 21 22:30:33 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6883
The input path in routed(8) will accept queries from any source and
attempt to answer them.  However, the output path assumes that the
destination address for the response is on a directly connected
network.

Obtained from: FreeBSD

Revision 6883 - Directory Listing - [select for diffs]
Modified Tue Oct 21 22:29:37 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6882
Due to a missing length check in the code that handles DNS parameters,
a malformed router advertisement message can result in a stack buffer
overflow in rtsold(8).

Obtained from: FreeBSD

Revision 6882 - Directory Listing - [select for diffs]
Modified Tue Oct 21 22:27:35 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6876
default bmake to off so we still use freebsd make until things can settle

Revision 6876 - Directory Listing - [select for diffs]
Modified Thu Oct 16 01:28:34 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6875
tag

Revision 6875 - Directory Listing - [select for diffs]
Modified Thu Oct 16 01:24:08 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6874
link ar against libz

Revision 6874 - Directory Listing - [select for diffs]
Modified Sun Oct 12 20:52:13 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6873
we dont do sparc anymore

Revision 6873 - Directory Listing - [select for diffs]
Modified Sun Oct 12 20:51:44 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6872
regen man pages for openssl

Revision 6872 - Directory Listing - [select for diffs]
Modified Sun Oct 12 20:48:00 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6871
merge 0.9.8zb

Revision 6871 - Directory Listing - [select for diffs]
Modified Sun Oct 12 20:42:37 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6870
merge

Revision 6870 - Directory Listing - [select for diffs]
Modified Sun Oct 12 20:37:16 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6867
tag

Revision 6867 - Directory Listing - [select for diffs]
Modified Sat Oct 11 17:18:19 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6866
generate new key types for sshd when needed or on initial run

Revision 6866 - Directory Listing - [select for diffs]
Modified Sat Oct 11 17:14:08 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6865
audit linux

Revision 6865 - Directory Listing - [select for diffs]
Modified Sat Oct 11 17:06:48 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6862
Upgrade to OpenSSH 6.6p1 in 0.6-CURRENT

Revision 6862 - Directory Listing - [select for diffs]
Modified Sat Oct 11 16:23:48 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6861
update xz

Revision 6861 - Directory Listing - [select for diffs]
Modified Sat Oct 11 16:23:22 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6858
merge xz 5.0.7

Revision 6858 - Directory Listing - [select for diffs]
Modified Sat Oct 11 14:17:35 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6857
add opsys to user agent

Revision 6857 - Directory Listing - [select for diffs]
Modified Sat Oct 11 14:08:20 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6856
mport usage has a whitespace issue

Revision 6856 - Directory Listing - [select for diffs]
Modified Sat Oct 11 13:48:12 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6853
we no longer do branches so uname output is condensed and conforms to most other unices.

Revision 6853 - Directory Listing - [select for diffs]
Modified Sat Oct 11 13:36:56 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6851
fix units for terabyte suffix

Revision 6851 - Directory Listing - [select for diffs]
Modified Sat Oct 11 12:28:09 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6850
update mksh to R50d

Revision 6850 - Directory Listing - [select for diffs]
Modified Sat Oct 11 12:27:14 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6849
mksh R50d

Revision 6849 - Directory Listing - [select for diffs]
Modified Sat Oct 11 12:26:44 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6846
merge mksh R50d

Revision 6846 - Directory Listing - [select for diffs]
Modified Fri Oct 10 12:37:45 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6845
only set permissions on a real file and not a symlink. this was causing an error condition and a failed install. while here, fix ASSET_DIR so that it is handled like dirrm

Revision 6845 - Directory Listing - [select for diffs]
Modified Fri Oct 10 10:58:45 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6844
update configuration

Revision 6844 - Directory Listing - [select for diffs]
Modified Fri Oct 10 10:56:06 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6841
update mksh version

Revision 6841 - Directory Listing - [select for diffs]
Modified Sat Oct 4 14:23:36 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6840
mksh

Revision 6840 - Directory Listing - [select for diffs]
Modified Sat Oct 4 14:22:39 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6837
merge mksh R50c

Revision 6837 - Directory Listing - [select for diffs]
Modified Fri Oct 3 12:40:25 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6836
set keywords

Revision 6836 - Directory Listing - [select for diffs]
Modified Fri Oct 3 12:39:58 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6835
tag

Revision 6835 - Directory Listing - [select for diffs]
Modified Fri Oct 3 12:37:57 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6834
update cpu feature detection logic

Revision 6834 - Directory Listing - [select for diffs]
Modified Fri Oct 3 12:37:30 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6833
add partial virtio support to amd64 generic. scsi is still broken until cam is updated

Revision 6833 - Directory Listing - [select for diffs]
Modified Fri Oct 3 12:06:02 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6832
add marketing speak

Revision 6832 - Directory Listing - [select for diffs]
Modified Fri Oct 3 12:03:30 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6831
remove modules override from xenhvm amd64 configuration

Revision 6831 - Directory Listing - [select for diffs]
Modified Fri Oct 3 12:03:02 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6830
add quota and tcp offload to generic amd64

Revision 6830 - Directory Listing - [select for diffs]
Modified Fri Oct 3 12:02:41 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6829
turn off several modules for xen

Revision 6829 - Directory Listing - [select for diffs]
Modified Fri Oct 3 12:01:21 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6828
add quota and tcp offload to generic

Revision 6828 - Directory Listing - [select for diffs]
Modified Fri Oct 3 11:56:38 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6827
add compiler version

Revision 6827 - Directory Listing - [select for diffs]
Modified Fri Oct 3 11:56:17 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6826
add note about TCP_OFFLOAD

Revision 6826 - Directory Listing - [select for diffs]
Modified Fri Oct 3 11:54:09 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6825
add options for tcp offload, vm, cam, etc

Revision 6825 - Directory Listing - [select for diffs]
Modified Fri Oct 3 11:50:26 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6824
add sometimes uninitialized flag

Revision 6824 - Directory Listing - [select for diffs]
Modified Fri Oct 3 04:12:00 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6823
teach about utf8

Revision 6823 - Directory Listing - [select for diffs]
Modified Fri Oct 3 04:10:32 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6822
Introduce the l flag

Set an exclusive advisory lock on the standard output file descriptor.

Revision 6822 - Directory Listing - [select for diffs]
Modified Fri Oct 3 03:59:08 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6821
pprint out in proper hex

Revision 6821 - Directory Listing - [select for diffs]
Modified Fri Oct 3 03:58:37 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6820
turn off firewire and turn on hw random number generators

Revision 6820 - Directory Listing - [select for diffs]
Modified Fri Oct 3 03:58:09 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6819
add rdrand option for ivybridge cpus

Revision 6819 - Directory Listing - [select for diffs]
Modified Fri Oct 3 03:57:31 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6818
add additional registers.

Revision 6818 - Directory Listing - [select for diffs]
Modified Fri Oct 3 03:56:55 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6817
add initial seed status

Revision 6817 - Directory Listing - [select for diffs]
Modified Fri Oct 3 03:54:34 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6816
import newer strlcpy from openbsd/freebsd with post k&r headers

Revision 6816 - Directory Listing - [select for diffs]
Modified Fri Oct 3 03:53:12 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6815
add arc4 seeding constants

Revision 6815 - Directory Listing - [select for diffs]
Modified Fri Oct 3 03:52:29 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6814
bump midnightbsd version

Revision 6814 - Directory Listing - [select for diffs]
Modified Fri Oct 3 01:44:58 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6813
fix an inverted logic problem with random

Revision 6813 - Directory Listing - [select for diffs]
Modified Fri Oct 3 01:16:07 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6812
drop sparc makefile

Revision 6812 - Directory Listing - [select for diffs]
Modified Thu Oct 2 12:06:36 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6811
sqlite 3.8.6

Revision 6811 - Directory Listing - [select for diffs]
Modified Thu Oct 2 12:05:57 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6810
resolve

Revision 6810 - Directory Listing - [select for diffs]
Modified Thu Oct 2 12:04:33 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6807
merge sqlite 3.8.6

Revision 6807 - Directory Listing - [select for diffs]
Modified Thu Oct 2 11:43:58 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6806
add logwrap.c as part of sudo 1.7.8

Revision 6806 - Directory Listing - [select for diffs]
Modified Thu Oct 2 11:43:43 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6805
sudo 1.7.8

Revision 6805 - Directory Listing - [select for diffs]
Modified Thu Oct 2 03:33:42 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6804
sudo 1.7.6p2

Revision 6804 - Directory Listing - [select for diffs]
Modified Thu Oct 2 03:32:57 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6803
sudo 1.7.6p2

Revision 6803 - Directory Listing - [select for diffs]
Modified Thu Oct 2 03:20:49 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6802
sudo 1.7.5

Revision 6802 - Directory Listing - [select for diffs]
Modified Thu Oct 2 03:17:17 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6801
add toke_util.c for new sudo

Revision 6801 - Directory Listing - [select for diffs]
Modified Thu Oct 2 02:19:31 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6800
mksh/libmport updates

Revision 6800 - Directory Listing - [select for diffs]
Modified Thu Oct 2 02:17:54 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6799
merge R50b

Revision 6799 - Directory Listing - [select for diffs]
Modified Thu Oct 2 02:17:33 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6798
build ok

Revision 6798 - Directory Listing - [select for diffs]
Modified Thu Oct 2 02:13:50 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6797
doh

Revision 6797 - Directory Listing - [select for diffs]
Modified Thu Oct 2 02:12:37 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6796
mksh R50b

Revision 6796 - Directory Listing - [select for diffs]
Modified Thu Oct 2 02:12:15 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6795
oops

Revision 6795 - Directory Listing - [select for diffs]
Modified Thu Oct 2 02:11:54 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6794
mksh R50b

Revision 6794 - Directory Listing - [select for diffs]
Modified Thu Oct 2 02:04:41 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6793
first pass at supporting permissions aka chmod, chown, chgrp as well as @dir command

Revision 6793 - Directory Listing - [select for diffs]
Modified Thu Oct 2 01:16:08 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6792
add mport_get_uid/mport_get_gid

Revision 6792 - Directory Listing - [select for diffs]
Modified Thu Oct 2 01:09:47 2014 UTC (9 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6789
update database version when upgrading the schema

Revision 6789 - Directory Listing - [select for diffs]
Modified Sun Sep 28 14:31:26 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6788
drop objc runtime base install. it gets updated too frequently

Revision 6788 - Directory Listing - [select for diffs]
Modified Sun Sep 28 14:29:14 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6787
install mtree as fmtree

Revision 6787 - Directory Listing - [select for diffs]
Modified Sun Sep 28 14:08:57 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6786
depending on MK_BMAKE flag, turn on netbsd make or freebsd make.  If bmake is on, install freebsd make as fmake

Revision 6786 - Directory Listing - [select for diffs]
Modified Sun Sep 28 14:07:51 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6785
add bmake option

Revision 6785 - Directory Listing - [select for diffs]
Modified Sun Sep 28 13:17:47 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6784
we are a BSD

Revision 6784 - Directory Listing - [select for diffs]
Modified Sun Sep 28 13:11:51 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6781
Merge bmake onto the main branch.

Revision 6781 - Directory Listing - [select for diffs]
Modified Sat Sep 27 00:47:52 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6780
if cpe isnt defined by mport.create, use alloca to create a null terminated string to appese sqlite

Revision 6780 - Directory Listing - [select for diffs]
Modified Sun Sep 21 18:04:57 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6779
teach mport create about cpe

Revision 6779 - Directory Listing - [select for diffs]
Modified Sun Sep 21 18:02:05 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6778
teach mport command about cpe

Revision 6778 - Directory Listing - [select for diffs]
Modified Sun Sep 21 17:47:19 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6777
add CPE column to mport bundles and the master list.  bump the MPORT database version to 3 as well as the bundle version

Revision 6777 - Directory Listing - [select for diffs]
Modified Sat Sep 20 17:37:25 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6776
min cpu i486. use amd64 hack from freebsd

Revision 6776 - Directory Listing - [select for diffs]
Modified Fri Sep 19 23:23:36 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6773
setup autoprops for src

Revision 6773 - Directory Listing - [select for diffs]
Modified Wed Sep 17 01:39:28 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6772
add midnightbsd

Revision 6772 - Directory Listing - [select for diffs]
Modified Wed Sep 17 01:37:14 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6771
fix missing file

Revision 6771 - Directory Listing - [select for diffs]
Modified Wed Sep 17 01:35:34 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6770
fix missing file

Revision 6770 - Directory Listing - [select for diffs]
Modified Wed Sep 17 01:32:06 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6768
fix missing file

Revision 6768 - Directory Listing - [select for diffs]
Modified Tue Sep 16 23:42:27 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6766
20140916:
        Fix a security issue with TCP SYN.

        When a segment with the SYN flag for an already existing connection arrives,
        the TCP stack tears down the connection, bypassing a check that the
        sequence number in the segment is in the expected window.

Obtained from:	FreeBSD

Revision 6766 - Directory Listing - [select for diffs]
Modified Sun Sep 14 03:55:54 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6765
sync drm2 with freebsd 9.2

Revision 6765 - Directory Listing - [select for diffs]
Modified Sun Sep 14 03:55:20 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6764
sync drm2 with freebsd 9.2

Revision 6764 - Directory Listing - [select for diffs]
Modified Sun Sep 14 03:52:52 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6763
sync drm2 with freebsd 9.2

Revision 6763 - Directory Listing - [select for diffs]
Modified Sun Sep 14 02:00:49 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6762
subdir parallel

Revision 6762 - Directory Listing - [select for diffs]
Modified Sun Sep 14 01:25:53 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6761
add subdir parallel

Revision 6761 - Directory Listing - [select for diffs]
Modified Sun Sep 14 01:21:07 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6760
teach SUBDIR_PARALLEL

Revision 6760 - Directory Listing - [select for diffs]
Modified Sun Sep 14 01:11:01 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6759
port newer tzsetup(8) from FreeBSD 9-stable

Revision 6759 - Directory Listing - [select for diffs]
Modified Sun Sep 14 01:07:20 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6758
set default acline status to unknown

Revision 6758 - Directory Listing - [select for diffs]
Modified Sun Sep 14 01:06:05 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6757
Add etcupdate(8) utility from FreeBSD 9-stable

Revision 6757 - Directory Listing - [select for diffs]
Modified Sun Sep 14 01:00:50 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6754
minor patch

Revision 6754 - Directory Listing - [select for diffs]
Modified Tue Sep 9 23:14:38 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6750
Security update for openssl.

The receipt of a specifically crafted DTLS handshake message may cause OpenSSL
to consume large amounts of memory. [CVE-2014-3506]

The receipt of a specifically crafted DTLS packet could cause OpenSSL to leak
memory. [CVE-2014-3507]

A flaw in OBJ_obj2txt may cause pretty printing functions such as
X509_name_oneline, X509_name_print_ex et al. to leak some information from
the stack. [CVE-2014-3508]

OpenSSL DTLS clients enabling anonymous (EC)DH ciphersuites are subject to
a denial of service attack. [CVE-2014-3510]

Revision 6750 - Directory Listing - [select for diffs]
Modified Tue Sep 9 16:02:11 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6749
clearenv(3) was borked
MFC after: 1 week

Revision 6749 - Directory Listing - [select for diffs]
Modified Tue Sep 9 15:54:55 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6748
fix environment nulling

Revision 6748 - Directory Listing - [select for diffs]
Modified Sat Sep 6 19:00:02 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6747
add gid_from_group and friends

Revision 6747 - Directory Listing - [select for diffs]
Modified Sat Sep 6 18:53:03 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6746
update symbol map

Revision 6746 - Directory Listing - [select for diffs]
Modified Sat Sep 6 18:46:52 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6745
update pwcache(3) from NetBSD

Revision 6745 - Directory Listing - [select for diffs]
Modified Sat Sep 6 15:54:57 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6744
bump osversion for current and mport

Revision 6744 - Directory Listing - [select for diffs]
Modified Fri Sep 5 04:30:02 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6742
sync libusb with freebsd 9.2-release

Revision 6742 - Directory Listing - [select for diffs]
Modified Wed Sep 3 12:15:49 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6740
update man to use 0.6 as default os version now and also add freebsd releases

Revision 6740 - Directory Listing - [select for diffs]
Modified Wed Sep 3 00:17:00 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6739
document 0.6

Revision 6739 - Directory Listing - [select for diffs]
Modified Wed Sep 3 00:15:59 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6738
0.6-CURRENT now

Revision 6738 - Directory Listing - [select for diffs]
Modified Wed Sep 3 00:14:19 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6737
update some of the quirks with freebsd 9-stable and also add a custom quirk for the corsair k70 keyboard.

Revision 6737 - Directory Listing - [select for diffs]
Modified Tue Sep 2 23:51:28 2014 UTC (9 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6735
update device list

Revision 6735 - Directory Listing - [select for diffs]
Modified Sat Aug 30 01:24:12 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6734
get rid of old bind binaries

Revision 6734 - Directory Listing - [select for diffs]
Modified Sat Aug 30 01:17:16 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6733
remove old geom and libc from an upgrade

Revision 6733 - Directory Listing - [select for diffs]
Modified Sat Aug 30 01:12:59 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6732
oops.. static files should not be OLD_LIBS

Revision 6732 - Directory Listing - [select for diffs]
Modified Sat Aug 30 01:10:46 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6731
remove old libs

Revision 6731 - Directory Listing - [select for diffs]
Modified Sat Aug 30 00:47:01 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6730
set errno

Revision 6730 - Directory Listing - [select for diffs]
Modified Sat Aug 30 00:45:07 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6729
add the stub

Revision 6729 - Directory Listing - [select for diffs]
Modified Fri Aug 29 22:21:17 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6728
conditional iconv

Revision 6728 - Directory Listing - [select for diffs]
Modified Fri Aug 29 22:19:26 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6727
explicitly turn off atomic builtins

Revision 6727 - Directory Listing - [select for diffs]
Modified Fri Aug 29 21:11:32 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6726
Sync with newer freebsd releases.

Revision 6726 - Directory Listing - [select for diffs]
Modified Fri Aug 29 21:09:52 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6725
refine dep

Revision 6725 - Directory Listing - [select for diffs]
Modified Fri Aug 29 21:08:50 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6724
define MAKE cmd

Revision 6724 - Directory Listing - [select for diffs]
Modified Wed Aug 27 11:51:08 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6723
Perl 5.18.2

MidnightBSD version 5007

Revision 6723 - Directory Listing - [select for diffs]
Modified Wed Aug 27 11:48:15 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6722
re-add missing file

Revision 6722 - Directory Listing - [select for diffs]
Modified Wed Aug 27 11:40:36 2014 UTC (9 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6719
Merge perl 5.18.2

Revision 6719 - Directory Listing - [select for diffs]
Modified Wed Jul 30 21:37:49 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6718
in the backward compatibility case, we still want to shutdown the jail cleanly

Revision 6718 - Directory Listing - [select for diffs]
Modified Mon Jul 28 11:05:29 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6717
note the jail behavior change.

Revision 6717 - Directory Listing - [select for diffs]
Modified Mon Jul 28 10:46:42 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6716
turn off jails by default. This was pointed out by Dan Langille on his blog

Revision 6716 - Directory Listing - [select for diffs]
Modified Fri Jul 11 01:43:35 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6715
remove

Revision 6715 - Directory Listing - [select for diffs]
Modified Fri Jul 11 01:43:04 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6713
remove file

Revision 6713 - Directory Listing - [select for diffs]
Modified Thu Jul 10 12:18:18 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6712
Fix a security vulnerability in the control message API.

Buffer is not properly cleared before sharing with userland.

Revision 6712 - Directory Listing - [select for diffs]
Modified Tue Jul 1 22:52:56 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6711
change build version

Revision 6711 - Directory Listing - [select for diffs]
Modified Tue Jul 1 12:24:57 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6710
mksh R50

Revision 6710 - Directory Listing - [select for diffs]
Modified Tue Jul 1 12:24:18 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6709
commit pre-built gen files for now.

Revision 6709 - Directory Listing - [select for diffs]
Modified Tue Jul 1 12:14:03 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6706
merge in mksh R50

Revision 6706 - Directory Listing - [select for diffs]
Modified Mon Jun 30 23:58:12 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6705
add bsd.compiler.mk from freebsd.

Revision 6705 - Directory Listing - [select for diffs]
Modified Mon Jun 30 23:55:54 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6704
update file to 5.19

Revision 6704 - Directory Listing - [select for diffs]
Modified Mon Jun 30 23:54:13 2014 UTC (9 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 6703
update the mime list

Revision 6703 - Directory Listing - [select for diffs]
Modified Mon Jun 30 12:28:30 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6702
move things around for the build

Revision 6702 - Directory Listing - [select for diffs]
Modified Mon Jun 30 12:24:10 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6701
add cdf_time

Revision 6701 - Directory Listing - [select for diffs]
Modified Mon Jun 30 12:17:21 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6700
update config.h for file 5.19

Revision 6700 - Directory Listing - [select for diffs]
Modified Mon Jun 30 12:06:08 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6699
move files around to match compile env

Revision 6699 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:58:43 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6698
Merge file 5.19

Revision 6698 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:58:41 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6697
Merge file 5.19

Revision 6697 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:58:30 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6696
Merge file 5.19

Revision 6696 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:58:02 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6695
Merge file 5.19

Revision 6695 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:57:27 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6694
Merge file 5.19

Revision 6694 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:57:06 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6693
Merge file 5.19

Revision 6693 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:56:57 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6692
Merge file 5.19

Revision 6692 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:56:48 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6691
Merge file 5.19

Revision 6691 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:56:42 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6690
Merge file 5.19

Revision 6690 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:56:33 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6689
Merge file 5.19

Revision 6689 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:56:28 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6688
Merge file 5.19

Revision 6688 - Directory Listing - [select for diffs]
Modified Mon Jun 30 11:56:00 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6685
Merge file 5.19

Revision 6685 - Directory Listing - [select for diffs]
Modified Sun Jun 29 14:47:35 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6683
drop bad import

Revision 6683 - Directory Listing - [select for diffs]
Modified Sun Jun 29 14:45:47 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6682
Import file 5.19

Revision 6682 - Directory Listing - [select for diffs]
Modified Sun Jun 15 18:46:12 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6681
cleanvar should be here

Revision 6681 - Directory Listing - [select for diffs]
Modified Sun Jun 15 18:45:19 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6680
update examples

Revision 6680 - Directory Listing - [select for diffs]
Modified Sun Jun 15 18:44:26 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6679
disable hast account

Revision 6679 - Directory Listing - [select for diffs]
Modified Sun Jun 15 18:43:33 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6678
set props

Revision 6678 - Directory Listing - [select for diffs]
Modified Sun Jun 15 18:42:24 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6677
we are on xterm now

Revision 6677 - Directory Listing - [select for diffs]
Modified Sun Jun 15 17:52:17 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6676
set props

Revision 6676 - Directory Listing - [select for diffs]
Modified Sun Jun 15 16:45:14 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6675
set keywords

Revision 6675 - Directory Listing - [select for diffs]
Modified Sun Jun 15 16:44:46 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6674
update page

Revision 6674 - Directory Listing - [select for diffs]
Modified Sun Jun 15 16:44:15 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6673
support setting up an alternate kernel env on nextboot

Revision 6673 - Directory Listing - [select for diffs]
Modified Sun Jun 15 16:42:05 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6672
drop dup ;

Revision 6672 - Directory Listing - [select for diffs]
Modified Sun Jun 15 16:41:35 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6671
document rfc4620

Revision 6671 - Directory Listing - [select for diffs]
Modified Sun Jun 15 16:40:55 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6670
support frfc 4620

Revision 6670 - Directory Listing - [select for diffs]
Modified Sun Jun 15 16:39:50 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6669
free memory

Revision 6669 - Directory Listing - [select for diffs]
Modified Sun Jun 15 16:38:48 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6668
drop sunlabel

Revision 6668 - Directory Listing - [select for diffs]
Modified Fri Jun 13 02:07:22 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6667
sanity

Revision 6667 - Directory Listing - [select for diffs]
Modified Fri Jun 13 02:05:34 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6666
remove unneeded lib

Revision 6666 - Directory Listing - [select for diffs]
Modified Fri Jun 13 02:04:51 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6665
improve ledgability

Revision 6665 - Directory Listing - [select for diffs]
Modified Fri Jun 13 02:04:14 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6664
deal with proxy and redirect in a more sane way

Revision 6664 - Directory Listing - [select for diffs]
Modified Fri Jun 13 02:03:56 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6663
style(9)

Revision 6663 - Directory Listing - [select for diffs]
Modified Fri Jun 13 02:01:38 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6662
increase max redirects to follow

Revision 6662 - Directory Listing - [select for diffs]
Modified Fri Jun 13 01:55:47 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6661
add perm redirect

Revision 6661 - Directory Listing - [select for diffs]
Modified Fri Jun 6 03:02:04 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6660
fix build and spelling.

Revision 6660 - Directory Listing - [select for diffs]
Modified Fri Jun 6 01:26:03 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6659
openssl

Revision 6659 - Directory Listing - [select for diffs]
Modified Fri Jun 6 00:23:02 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6657
OpenSSL security updates.

Revision 6657 - Directory Listing - [select for diffs]
Modified Wed Jun 4 12:28:41 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6656
mention sendmail and ktrace

Revision 6656 - Directory Listing - [select for diffs]
Modified Wed Jun 4 12:27:04 2014 UTC (9 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 6654
Security updates for sendmail and ktrace

Related to 0.4-RELEASE-p11

Revision 6654 - Directory Listing - [select for diffs]
Modified Sat May 3 04:27:36 2014 UTC (9 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 6652
tag

Revision 6652 - Directory Listing - [select for diffs]
Modified Wed Apr 30 12:20:44 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6651
TCP reassembly

Revision 6651 - Directory Listing - [select for diffs]
Modified Wed Apr 30 12:19:24 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6650
Fix a TCP reassembly bug that could result in a DOS attack.

Obtained from: FreeBSD

Revision 6650 - Directory Listing - [select for diffs]
Modified Tue Apr 22 11:15:32 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6649
Remove old libz

Revision 6649 - Directory Listing - [select for diffs]
Modified Tue Apr 22 11:12:10 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6648
Remove DNSSEC check. We don't have that granularity configured. How did that get in there?

Revision 6648 - Directory Listing - [select for diffs]
Modified Sun Apr 20 23:46:16 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6647
explict no_man

Revision 6647 - Directory Listing - [select for diffs]
Modified Sun Apr 20 23:38:55 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6646
turn off builtins

Revision 6646 - Directory Listing - [select for diffs]
Modified Sun Apr 20 23:35:23 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6645
explicitly say no man

Revision 6645 - Directory Listing - [select for diffs]
Modified Sun Apr 20 23:31:41 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6644
force no iconv

Revision 6644 - Directory Listing - [select for diffs]
Modified Sun Apr 20 23:20:57 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6643
fix build of svn

Revision 6643 - Directory Listing - [select for diffs]
Modified Sun Apr 13 15:01:52 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6642
make things strict, and fix an include bug

Revision 6642 - Directory Listing - [select for diffs]
Modified Sat Apr 12 00:42:21 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6641
bump version for openssl patch, nfs server fix and libz bump to 1.2.7

Revision 6641 - Directory Listing - [select for diffs]
Modified Sat Apr 12 00:39:15 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6640
prop change

Revision 6640 - Directory Listing - [select for diffs]
Modified Sat Apr 12 00:38:29 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6639
prop change

Revision 6639 - Directory Listing - [select for diffs]
Modified Sat Apr 12 00:37:58 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6638
prop change

Revision 6638 - Directory Listing - [select for diffs]
Modified Sat Apr 12 00:37:25 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6637
update zlib to 1.2.7

Revision 6637 - Directory Listing - [select for diffs]
Modified Sat Apr 12 00:36:33 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6634
Update libz/zlib to 1.2.7

Revision 6634 - Directory Listing - [select for diffs]
Modified Thu Apr 10 10:26:49 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6632
propset

Revision 6632 - Directory Listing - [select for diffs]
Modified Wed Apr 9 11:46:01 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6629
fix a deadlock in nfs server

Revision 6629 - Directory Listing - [select for diffs]
Modified Wed Apr 9 11:38:49 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6628
Fix CVE-2014-0076 in OpenSSL

Revision 6628 - Directory Listing - [select for diffs]
Modified Mon Apr 7 11:14:00 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6627
set prop

Revision 6627 - Directory Listing - [select for diffs]
Modified Mon Apr 7 11:13:34 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6626
set prop

Revision 6626 - Directory Listing - [select for diffs]
Modified Mon Apr 7 11:13:31 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6625
set prop

Revision 6625 - Directory Listing - [select for diffs]
Modified Mon Apr 7 11:11:55 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6624
set prop

Revision 6624 - Directory Listing - [select for diffs]
Modified Mon Apr 7 11:10:57 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6623
set prop

Revision 6623 - Directory Listing - [select for diffs]
Modified Mon Apr 7 11:10:23 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6622
set prop

Revision 6622 - Directory Listing - [select for diffs]
Modified Mon Apr 7 11:09:42 2014 UTC (9 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 6621
set prop

Revision 6621 - Directory Listing - [select for diffs]
Modified Sat Mar 22 15:12:32 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6620
bump midnightbsd version after devstats permission change.

Revision 6620 - Directory Listing - [select for diffs]
Modified Sat Mar 22 15:11:25 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6619
For gstat, allow users to run as non root. Also, remove giant lock from devstat

del props for cvs2svn:cvs-rev

Revision 6619 - Directory Listing - [select for diffs]
Modified Tue Mar 18 04:12:10 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6618
return usage on mport exec without specifying package names for install, update or delete

Revision 6618 - Directory Listing - [select for diffs]
Modified Tue Mar 18 03:06:29 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6617
change the behavior of check if older to allow for upgrades based on old os versions

Revision 6617 - Directory Listing - [select for diffs]
Modified Tue Mar 18 03:05:55 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6616
implement os version check function as part of the private api

Revision 6616 - Directory Listing - [select for diffs]
Modified Sun Mar 16 21:28:10 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6614
reserved vars

Revision 6614 - Directory Listing - [select for diffs]
Modified Sat Mar 1 20:47:31 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6613
n _pthread_kill(), if passed pthread is current thread, do not send
the signal second time, by adding the missed else before if statement.

Obtained from:	FreeBSD

Revision 6613 - Directory Listing - [select for diffs]
Modified Sat Mar 1 20:17:55 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6612
dont leak memory

Revision 6612 - Directory Listing - [select for diffs]
Modified Sat Mar 1 20:09:53 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6611
ugh.. use calloc here

Revision 6611 - Directory Listing - [select for diffs]
Modified Sat Mar 1 18:48:19 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6610
try to deal with os version in upgrade checks. force new update

Revision 6610 - Directory Listing - [select for diffs]
Modified Sat Mar 1 18:47:36 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6609
try to create the downloads directory if it does not exist.

Revision 6609 - Directory Listing - [select for diffs]
Modified Sat Mar 1 18:32:34 2014 UTC (10 years ago) by laffer1
Original Path: trunk
Diff to previous 6606
Change formatting for regular list and updates list to use consistent spacing. it is easier to read.  Also, fix a bug with update detection that was causing os version checking to be incorrect

Revision 6606 - Directory Listing - [select for diffs]
Modified Thu Jan 23 00:13:58 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6605
username bump

Revision 6605 - Directory Listing - [select for diffs]
Modified Thu Jan 23 00:12:59 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6604
increase maximum username size to 32 characters. This is already the case for utmpx.h. This improves compatibility with samba and active directory domains as they include DOMAIN/username

Revision 6604 - Directory Listing - [select for diffs]
Modified Thu Jan 16 01:49:42 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6603
bump midnightbsd version after mmap and hardware tunable for random

Revision 6603 - Directory Listing - [select for diffs]
Modified Thu Jan 16 01:48:00 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6602
fix crash with vm system

Revision 6602 - Directory Listing - [select for diffs]
Modified Thu Jan 16 01:45:51 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6601
add tunable to disable hardware random number generator and default to 0 (no hardware random)

Revision 6601 - Directory Listing - [select for diffs]
Modified Wed Jan 15 00:57:52 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6599
mention security updates

Revision 6599 - Directory Listing - [select for diffs]
Modified Wed Jan 15 00:43:39 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6598
fix a security issue in bind

Revision 6598 - Directory Listing - [select for diffs]
Modified Wed Jan 15 00:41:44 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6597
fix a bug in bsnmpd

The bsnmpd(8) daemon is prone to a stack-based buffer-overflow when it
has received a specifically crafted GETBULK PDU request.

Revision 6597 - Directory Listing - [select for diffs]
Modified Thu Jan 2 04:31:31 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6596
remove named

Revision 6596 - Directory Listing - [select for diffs]
Modified Thu Jan 2 04:31:09 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6595
remove named and enable svn:keywords

Revision 6595 - Directory Listing - [select for diffs]
Modified Wed Jan 1 19:30:44 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6594
drop favicon

Revision 6594 - Directory Listing - [select for diffs]
Modified Wed Jan 1 18:17:26 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6593
happy new year

Revision 6593 - Directory Listing - [select for diffs]
Modified Wed Jan 1 16:04:36 2014 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6592
update copyright for 2014

Revision 6592 - Directory Listing - [select for diffs]
Modified Tue Dec 31 20:20:33 2013 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6591
bump shared lib

Revision 6591 - Directory Listing - [select for diffs]
Modified Mon Dec 30 18:11:21 2013 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6590
sync acpi with freebsd 9.2

Revision 6590 - Directory Listing - [select for diffs]
Modified Mon Dec 30 18:11:10 2013 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6589
sync acpi with freebsd 9.2

Revision 6589 - Directory Listing - [select for diffs]
Modified Mon Dec 30 18:10:48 2013 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6588
sync acpi with freebsd 9.2

Revision 6588 - Directory Listing - [select for diffs]
Modified Mon Dec 30 06:10:21 2013 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6587
revert

Revision 6587 - Directory Listing - [select for diffs]
Modified Mon Dec 30 05:54:41 2013 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6586
script_kvars static

Revision 6586 - Directory Listing - [select for diffs]
Modified Mon Dec 30 04:30:51 2013 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6585
Update script(1) based on FreeBSD 9.2 with filemon support

Revision 6585 - Directory Listing - [select for diffs]
Modified Mon Dec 30 04:27:01 2013 UTC (10 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 6584
toe

Revision 6584 - Directory Listing - [select for diffs]
Modified Mon Dec 30 04:18:34 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6583
drop warns

Revision 6583 - Directory Listing - [select for diffs]
Modified Mon Dec 30 04:16:12 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6582
configure for midnightbsd

Revision 6582 - Directory Listing - [select for diffs]
Modified Mon Dec 30 04:08:49 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6581
bump midnightbsd version. we have changed a lot of drivers

Revision 6581 - Directory Listing - [select for diffs]
Modified Mon Dec 30 04:06:17 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6580
remove freebsd legacy checks

Revision 6580 - Directory Listing - [select for diffs]
Modified Mon Dec 30 03:48:20 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6579
bring in changes from freebsd 9.2 to filemon

Revision 6579 - Directory Listing - [select for diffs]
Modified Mon Dec 30 03:40:52 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6578
make things static

Revision 6578 - Directory Listing - [select for diffs]
Modified Mon Dec 30 03:40:31 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6577
remove duplicate const.

Revision 6577 - Directory Listing - [select for diffs]
Modified Sun Dec 29 20:44:13 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6576
do not delay for P-state transition unless we want the result.

Revision 6576 - Directory Listing - [select for diffs]
Modified Sun Dec 29 20:41:54 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6575
fix powerd on newer AMD CPUs such as the 8150.

Revision 6575 - Directory Listing - [select for diffs]
Modified Sun Dec 29 20:31:14 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6574
fix logic reversal in setting auto_mode flag

Revision 6574 - Directory Listing - [select for diffs]
Modified Sun Dec 29 20:27:53 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6573
tag

Revision 6573 - Directory Listing - [select for diffs]
Modified Sun Dec 29 20:22:11 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6572
disable the 82815 chip

Revision 6572 - Directory Listing - [select for diffs]
Modified Sun Dec 29 18:41:09 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6571
Document recent changes to USB, em(4), igb(4) and ixgbe(4)

Revision 6571 - Directory Listing - [select for diffs]
Modified Sun Dec 29 17:50:49 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6570
Disable XHCI port routing in case of several error conditions known to happen on intel Z87 chipsets.  Obtained from: FreeBSD 9-stable (r255965)

Revision 6570 - Directory Listing - [select for diffs]
Modified Sat Dec 28 15:32:07 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6569
free/claim softc

Revision 6569 - Directory Listing - [select for diffs]
Modified Sat Dec 28 15:29:32 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6568
add definitions for claim/free

Revision 6568 - Directory Listing - [select for diffs]
Modified Sat Dec 28 15:28:46 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6567
Update USB stack

Obtained from: FreeBSD 9.2

Revision 6567 - Directory Listing - [select for diffs]
Modified Sat Dec 28 15:28:26 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6566
Update USB stack

Obtained from:	FreeBSD 9.2

Revision 6566 - Directory Listing - [select for diffs]
Modified Sat Dec 28 15:27:54 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6565
Update USB stack

Obtained from: FreeBSD 9.2

Revision 6565 - Directory Listing - [select for diffs]
Modified Sat Dec 28 15:25:37 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6564
update USB device list

Revision 6564 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:36:42 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6563
update man pages and tag them

Revision 6563 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:34:49 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6562
remove cvs2svn:cvs-rev prop

Revision 6562 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:31:51 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6561
remove cvs2svn:cvs-rev prop

Revision 6561 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:31:30 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6560
add new consts

Revision 6560 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:30:47 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6559
Update em(4) and igb(4) based on FreeBSD 9.2 driver

Revision 6559 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:30:04 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6558
update ixgbe(4) based on freebsd 9.2

Revision 6558 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:28:53 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6557
update oce(4) based on freebsd 9.2

Revision 6557 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:28:08 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6556
Update vxge(4) based on FreeBSD 9.2

Revision 6556 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:26:58 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6555
drop sparc64

Revision 6555 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:25:51 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6554
introduce several new drbr_* functions

Revision 6554 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:25:10 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6553
add putback. Obtained From: FreeBSD

Revision 6553 - Directory Listing - [select for diffs]
Modified Sat Dec 28 14:24:33 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6552
remove sparc64 files

Revision 6552 - Directory Listing - [select for diffs]
Modified Sat Dec 28 03:35:56 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6551
inet/inet6

Revision 6551 - Directory Listing - [select for diffs]
Modified Sat Dec 28 03:35:44 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6550
inet/inet6

Revision 6550 - Directory Listing - [select for diffs]
Modified Mon Dec 23 13:44:58 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6549
warns 0

Revision 6549 - Directory Listing - [select for diffs]
Modified Mon Dec 23 13:42:11 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6548
change versioning

Revision 6548 - Directory Listing - [select for diffs]
Modified Mon Dec 23 13:36:35 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6547
set keywords prop

Revision 6547 - Directory Listing - [select for diffs]
Modified Mon Dec 23 13:34:26 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6546
 update man page and set svn:keywords prop

Revision 6546 - Directory Listing - [select for diffs]
Modified Mon Dec 23 13:33:24 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6545
jail handling

Revision 6545 - Directory Listing - [select for diffs]
Modified Mon Dec 23 13:31:41 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6544
initialize pointers to null

Revision 6544 - Directory Listing - [select for diffs]
Modified Mon Dec 23 13:31:03 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6543
cleanup man

Revision 6543 - Directory Listing - [select for diffs]
Modified Mon Dec 23 13:23:17 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6542
dont check usr/local/lib when building as gdbm can freak out

Revision 6542 - Directory Listing - [select for diffs]
Modified Mon Dec 23 13:14:20 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6541
remove aout support.

Revision 6541 - Directory Listing - [select for diffs]
Modified Mon Dec 23 02:57:59 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6540
add support for detecting when plugged in

Revision 6540 - Directory Listing - [select for diffs]
Modified Sun Dec 22 23:32:39 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6539
add netbsd compatibility lib

Revision 6539 - Directory Listing - [select for diffs]
Modified Sun Dec 22 23:29:34 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6538
tag

Revision 6538 - Directory Listing - [select for diffs]
Modified Sun Dec 22 23:16:42 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6537
tag

Revision 6537 - Directory Listing - [select for diffs]
Modified Sun Dec 22 23:14:10 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6536
add missing svn keyword prop

Revision 6536 - Directory Listing - [select for diffs]
Modified Sun Dec 22 22:20:11 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6535
svn:keywords

Revision 6535 - Directory Listing - [select for diffs]
Modified Sun Dec 22 22:19:31 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6534
svn:keywords

Revision 6534 - Directory Listing - [select for diffs]
Modified Sun Dec 22 22:14:38 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6533
update props and config

Revision 6533 - Directory Listing - [select for diffs]
Modified Sun Dec 22 22:09:15 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6532
add missing user

Revision 6532 - Directory Listing - [select for diffs]
Modified Sun Dec 22 22:08:18 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6531
update os list

Revision 6531 - Directory Listing - [select for diffs]
Modified Sun Dec 22 21:55:56 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6530
update entropy from freebsd 9.2 version

Revision 6530 - Directory Listing - [select for diffs]
Modified Sun Dec 22 21:52:45 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6529
makekey is deprecated

Revision 6529 - Directory Listing - [select for diffs]
Modified Sun Dec 22 21:49:43 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6528
handle offset

Revision 6528 - Directory Listing - [select for diffs]
Modified Sun Dec 22 21:48:28 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6527
strsep

Revision 6527 - Directory Listing - [select for diffs]
Modified Sun Dec 22 21:45:05 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6526
update docs

Revision 6526 - Directory Listing - [select for diffs]
Modified Sun Dec 22 21:44:07 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6525
drop duplicate ;

Revision 6525 - Directory Listing - [select for diffs]
Modified Sun Dec 22 21:43:29 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6524
add new min / max frequency flags

Obtained from:	FreeBSD

Revision 6524 - Directory Listing - [select for diffs]
Modified Sun Dec 22 21:37:59 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6523
support ipv6

Revision 6523 - Directory Listing - [select for diffs]
Modified Sun Dec 22 21:35:25 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6522
test for errors

Revision 6522 - Directory Listing - [select for diffs]
Modified Sun Dec 22 21:32:26 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6521
sync make with freebsd 9.2

Revision 6521 - Directory Listing - [select for diffs]
Modified Sun Dec 22 21:23:07 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6520
drop sparc

Revision 6520 - Directory Listing - [select for diffs]
Modified Sun Dec 22 16:30:23 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6519
fix a bug where we show the osversion always.. fat fingers

Revision 6519 - Directory Listing - [select for diffs]
Modified Sun Dec 22 16:29:12 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6518
allow verbose to show os version for -u flag.

Revision 6518 - Directory Listing - [select for diffs]
Modified Fri Dec 20 23:55:58 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6517
update rel

Revision 6517 - Directory Listing - [select for diffs]
Modified Fri Dec 20 23:41:05 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6516
turn on svn keywords

Revision 6516 - Directory Listing - [select for diffs]
Modified Fri Dec 20 23:33:19 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6515
drop cvs2svn prop

Revision 6515 - Directory Listing - [select for diffs]
Modified Fri Dec 20 23:32:25 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6514
drop cvs2svn prop

Revision 6514 - Directory Listing - [select for diffs]
Modified Fri Dec 20 23:12:28 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6513
clang 3.3

Revision 6513 - Directory Listing - [select for diffs]
Modified Fri Dec 20 23:11:53 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6512
clang 3.3

Revision 6512 - Directory Listing - [select for diffs]
Modified Fri Dec 20 23:10:52 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6511
remove clang 3.1 stuff

Revision 6511 - Directory Listing - [select for diffs]
Modified Fri Dec 20 23:05:28 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6510
clang 3.3

Revision 6510 - Directory Listing - [select for diffs]
Modified Fri Dec 20 13:44:09 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6508
fix build by forcing move of generated header. bsd.dep.mk should be doing this for us

Revision 6508 - Directory Listing - [select for diffs]
Modified Fri Dec 20 01:25:33 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6507
Merge in clang

Revision 6507 - Directory Listing - [select for diffs]
Modified Fri Dec 20 01:22:46 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6505
remove useless file

Revision 6505 - Directory Listing - [select for diffs]
Modified Fri Dec 20 01:19:36 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6504
Merge in llvm 3.3

Revision 6504 - Directory Listing - [select for diffs]
Modified Fri Dec 20 01:18:48 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6500
Remove llvm from contrib so that we can do proper merges with the new version

Revision 6500 - Directory Listing - [select for diffs]
Modified Thu Dec 19 14:02:58 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6499
Remove i4b (never added) from include directory.

Remove unwind.h as it's incomplete from clang

Revision 6499 - Directory Listing - [select for diffs]
Modified Thu Dec 19 13:42:55 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6498
do not install partial unwind.h.  This should come from libcxxrt anyway

Revision 6498 - Directory Listing - [select for diffs]
Modified Thu Dec 19 03:58:25 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6497
bring in patches right before the gplv3 license change that we missed.

Revision 6497 - Directory Listing - [select for diffs]
Modified Sun Dec 15 06:44:13 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6496
treat packages of a different os release as updatable

Revision 6496 - Directory Listing - [select for diffs]
Modified Sun Dec 15 06:32:39 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6495
osrelease is public now

Revision 6495 - Directory Listing - [select for diffs]
Modified Sun Dec 15 06:32:04 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6494
make mport_get_osrelease a public api

Revision 6494 - Directory Listing - [select for diffs]
Modified Sun Dec 15 06:27:48 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6493
whitespace

Revision 6493 - Directory Listing - [select for diffs]
Modified Sun Dec 15 06:24:28 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6492
include os release information

Revision 6492 - Directory Listing - [select for diffs]
Modified Sun Dec 15 06:10:57 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6491
During real install, set the os version that the package reports as

Revision 6491 - Directory Listing - [select for diffs]
Modified Sun Dec 15 06:10:34 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6490
remove package file if it fails hash verification so we can download again easily

Revision 6490 - Directory Listing - [select for diffs]
Modified Sun Dec 15 05:57:46 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6489
Create os_release in packages of the master database to indicate what os_release the installed package is for.

This is important because we may be upgrading from 0.4 to 0.5. We want to be able to indicate to the user that we have old packages or force upgrade functionality on them.

Revision 6489 - Directory Listing - [select for diffs]
Modified Sun Dec 15 03:59:49 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6488
Remove sparc man pages

Revision 6488 - Directory Listing - [select for diffs]
Modified Sat Dec 14 23:13:08 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6487
Fix an apple bug that's causing resolving not to work.

Revision 6487 - Directory Listing - [select for diffs]
Modified Sat Dec 14 19:59:36 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6486
add allocaddrinfo(3)

Revision 6486 - Directory Listing - [select for diffs]
Modified Thu Dec 12 03:09:55 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6485
make reentrant

Revision 6485 - Directory Listing - [select for diffs]
Modified Thu Dec 12 03:03:31 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6484
remove sparc64

Revision 6484 - Directory Listing - [select for diffs]
Modified Thu Dec 12 03:02:50 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6483
add default for mdnsresponder

Revision 6483 - Directory Listing - [select for diffs]
Modified Thu Dec 12 03:02:00 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6482
mdnsresponder for mDNSResponderPosix

Revision 6482 - Directory Listing - [select for diffs]
Modified Thu Dec 12 02:57:33 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6481
add mDNSResponderPosix

Revision 6481 - Directory Listing - [select for diffs]
Modified Thu Dec 12 02:45:09 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6480
fix build

Revision 6480 - Directory Listing - [select for diffs]
Modified Thu Dec 12 02:35:25 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6479
fix ipv6 properties to avoid freakouts

Revision 6479 - Directory Listing - [select for diffs]
Modified Thu Dec 12 02:35:03 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6478
update build config for new mDNSResponder

Revision 6478 - Directory Listing - [select for diffs]
Modified Thu Dec 12 01:42:36 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6477
mDNSResponder 541

Revision 6477 - Directory Listing - [select for diffs]
Modified Thu Dec 12 01:41:54 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6471
prepare for the new version of mDNSResponder

Revision 6471 - Directory Listing - [select for diffs]
Modified Sun Dec 8 00:20:32 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6470
allow logging to init.log when terminal is not availabe.

Revision 6470 - Directory Listing - [select for diffs]
Modified Sat Dec 7 23:57:11 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6469
we are not including ffi in base now

Revision 6469 - Directory Listing - [select for diffs]
Modified Sat Dec 7 23:54:44 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6468
remove cvs2svn prop

Revision 6468 - Directory Listing - [select for diffs]
Modified Sat Dec 7 23:44:19 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6467
Drop sparc64 arch

Revision 6467 - Directory Listing - [select for diffs]
Modified Sat Dec 7 23:38:44 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6466
do not commit this file as it is generated

Revision 6466 - Directory Listing - [select for diffs]
Modified Fri Dec 6 01:28:09 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6465
OpenSSH 6.4p1

Revision 6465 - Directory Listing - [select for diffs]
Modified Fri Dec 6 01:27:08 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6464
Upgrade OpenSSH to 6.4p1

Revision 6464 - Directory Listing - [select for diffs]
Modified Thu Dec 5 23:31:40 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6461
Merge in OpenSSH 6.4p1

Revision 6461 - Directory Listing - [select for diffs]
Modified Wed Dec 4 03:47:58 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6460
nsupdate should come from ports

Revision 6460 - Directory Listing - [select for diffs]
Modified Wed Dec 4 03:46:11 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6459
turn on svn keywords

Revision 6459 - Directory Listing - [select for diffs]
Modified Wed Dec 4 03:45:15 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6458
upgrade libfetch

Revision 6458 - Directory Listing - [select for diffs]
Modified Wed Dec 4 03:37:56 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6457
bump after perl update

Revision 6457 - Directory Listing - [select for diffs]
Modified Wed Dec 4 02:49:09 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6456
Document less & perl updates

Revision 6456 - Directory Listing - [select for diffs]
Modified Wed Dec 4 02:16:25 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6455
cvs is dead.

Revision 6455 - Directory Listing - [select for diffs]
Modified Wed Dec 4 02:11:00 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6454
add missing file

Revision 6454 - Directory Listing - [select for diffs]
Modified Wed Dec 4 02:10:19 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6453
remove old files

Revision 6453 - Directory Listing - [select for diffs]
Modified Wed Dec 4 01:19:50 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6452
remove files from old perl version

Revision 6452 - Directory Listing - [select for diffs]
Modified Wed Dec 4 00:48:19 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6451
remove files from previous perl version

Revision 6451 - Directory Listing - [select for diffs]
Modified Tue Dec 3 23:53:36 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6450
cleanup some bad files

Revision 6450 - Directory Listing - [select for diffs]
Modified Tue Dec 3 23:49:35 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6449
fix properties on upgrade file

Revision 6449 - Directory Listing - [select for diffs]
Modified Tue Dec 3 23:37:00 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6448
add missing file

Revision 6448 - Directory Listing - [select for diffs]
Modified Tue Dec 3 23:33:50 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6447
this is missing from the merge

Revision 6447 - Directory Listing - [select for diffs]
Modified Tue Dec 3 21:56:04 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6446
Perl 5.18

Revision 6446 - Directory Listing - [select for diffs]
Modified Tue Dec 3 00:51:33 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6445
perl 5.18.1 merge

Revision 6445 - Directory Listing - [select for diffs]
Modified Mon Dec 2 21:32:26 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6444
perl 5.18.1 merge

Revision 6444 - Directory Listing - [select for diffs]
Modified Mon Dec 2 21:30:11 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6443
perl 5.18.1 merge

Revision 6443 - Directory Listing - [select for diffs]
Modified Mon Dec 2 21:28:58 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6442
perl 5.18.1 merge

Revision 6442 - Directory Listing - [select for diffs]
Modified Mon Dec 2 21:28:27 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6441
perl 5.18.1 merge

Revision 6441 - Directory Listing - [select for diffs]
Modified Mon Dec 2 21:27:48 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6440
perl 5.18.1 merge

Revision 6440 - Directory Listing - [select for diffs]
Modified Mon Dec 2 21:27:05 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6439
perl 5.18.1 merge

Revision 6439 - Directory Listing - [select for diffs]
Modified Mon Dec 2 21:26:09 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6438
perl 5.18.1 merge

Revision 6438 - Directory Listing - [select for diffs]
Modified Mon Dec 2 21:18:17 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6437
perl 5.18.1 merge

Revision 6437 - Directory Listing - [select for diffs]
Modified Mon Dec 2 20:17:19 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6436
ignore tinderbox and make world files

Revision 6436 - Directory Listing - [select for diffs]
Modified Mon Dec 2 20:13:28 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6431
set props

Revision 6431 - Directory Listing - [select for diffs]
Modified Sun Dec 1 22:32:34 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6427
Merge less v458 to trunk

Revision 6427 - Directory Listing - [select for diffs]
Modified Sat Nov 30 23:59:44 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6426
remove named from base

Revision 6426 - Directory Listing - [select for diffs]
Modified Sat Nov 30 22:52:34 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6425
ffi is not connected to the build, save disk space

Revision 6425 - Directory Listing - [select for diffs]
Modified Sat Nov 30 22:34:04 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6054
reset props for svn keywords

Revision 6054 - Directory Listing - [select for diffs]
Modified Fri Nov 29 22:01:59 2013 UTC (10 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 6053
gettext is incompatible with our implementation due to an optimization.  Import a patch from FreeBSD Current to resolve this issue

Revision 6053 - Directory Listing - [select for diffs]
Modified Wed Nov 27 03:52:03 2013 UTC (10 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6052
tag

Revision 6052 - Directory Listing - [select for diffs]
Modified Wed Nov 27 03:43:11 2013 UTC (10 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6051
tag header files

Revision 6051 - Directory Listing - [select for diffs]
Modified Wed Nov 27 03:39:02 2013 UTC (10 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6050
tag c files

Revision 6050 - Directory Listing - [select for diffs]
Modified Wed Nov 27 03:38:23 2013 UTC (10 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6049
fix tag

Revision 6049 - Directory Listing - [select for diffs]
Modified Wed Nov 27 03:37:33 2013 UTC (10 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6048
forced commit to get it on head branch

Revision 6048 - Directory Listing - [select for diffs]
Modified Wed Nov 27 03:37:01 2013 UTC (10 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6047
tag to force on main branch

Revision 6047 - Directory Listing - [select for diffs]
Modified Wed Nov 27 03:32:31 2013 UTC (10 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 6046
tag

Revision 6046 - Directory Listing - [select for diffs]
Modified Sun Oct 6 15:18:51 2013 UTC (10 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6045
add additional ces protocol constants

Revision 6045 - Directory Listing - [select for diffs]
Modified Fri Oct 4 16:05:20 2013 UTC (10 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6044
add RWTUN flag

Revision 6044 - Directory Listing - [select for diffs]
Modified Fri Oct 4 11:37:49 2013 UTC (10 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6043
rarpd updated.

Revision 6043 - Directory Listing - [select for diffs]
Modified Fri Oct 4 11:36:04 2013 UTC (10 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 6042
- Add IFT_L2VLAN (vlan(4)) support.
- Add a -P option to support PID files. When -a is specified
  /var/run/rarpd.pid is used by default, and when an interface is
  specified /var/run/rarpd.<ifname>.pid is used by default.

Obtained from: FreeBSD 9.2-RELEASE

Revision 6042 - Directory Listing - [select for diffs]
Modified Sun Sep 22 16:54:46 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6041
sync with freebsd 10-current

Revision 6041 - Directory Listing - [select for diffs]
Modified Wed Sep 18 00:36:21 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6040
Start populating os_release.  needs more work

Revision 6040 - Directory Listing - [select for diffs]
Modified Wed Sep 18 00:28:49 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6039
os release

Revision 6039 - Directory Listing - [select for diffs]
Modified Tue Sep 17 12:54:09 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6038
fib gets bigger.

Revision 6038 - Directory Listing - [select for diffs]
Modified Tue Sep 17 12:41:51 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6037
Add a fib field to mbuf rather than the hack that was there using flag bit fields.

Obtained from: FreeBSD

Revision 6037 - Directory Listing - [select for diffs]
Modified Wed Sep 11 01:00:05 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6035
style9

Revision 6035 - Directory Listing - [select for diffs]
Modified Tue Sep 10 23:08:47 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6034
fix tagging

Revision 6034 - Directory Listing - [select for diffs]
Modified Tue Sep 10 23:08:26 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6033
drop warns 6 it is default

Revision 6033 - Directory Listing - [select for diffs]
Modified Tue Sep 10 23:06:31 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6032
use midnightbsd boot types

Revision 6032 - Directory Listing - [select for diffs]
Modified Tue Sep 10 23:03:58 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6031
Security updates in nullfs and ifioctl

Revision 6031 - Directory Listing - [select for diffs]
Modified Tue Sep 10 23:02:50 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6030
Remove old pecoff files.

Revision 6030 - Directory Listing - [select for diffs]
Modified Tue Sep 10 23:01:59 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6029
Use SUBDIR rather that dynamically set vars

Revision 6029 - Directory Listing - [select for diffs]
Modified Sun Sep 8 15:46:04 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6028
Isolate the global TTE list lock from data and other locks to prevent false sharing

Revision 6028 - Directory Listing - [select for diffs]
Modified Sun Sep 8 15:42:09 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6027
we refactored this on x86 and didnt do it here

Revision 6027 - Directory Listing - [select for diffs]
Modified Sun Sep 8 15:37:43 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6026
Some of these definitions were moved into the contrib directory as a patch to groff.

Others are missing and needed to be updated here.

Revision 6026 - Directory Listing - [select for diffs]
Modified Sun Sep 8 15:31:53 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6025
update list of symbols for man pages.  Include newer MidnightBSD, FreeBSD, Dragonfly and NetBSD releases. Include newer POSIX and library hints.

Revision 6025 - Directory Listing - [select for diffs]
Modified Sat Sep 7 19:50:08 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6024
print the mport version on usage()

Revision 6024 - Directory Listing - [select for diffs]
Modified Sat Sep 7 19:49:51 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6023
Introduce new functions:

mport_version() (public) to display bundle version and currently running os.

mport_get_osrelease() (private util) to get the os release from sysctl

Packate stubs now include the OS version the package was created for in the meta table as os_release key. This way, we know what OS version the package was built for. Fetching packages currently relies on a static define in the mport tool and this may go dynamic in the future.

It might be useful to install old packages in newer os versions in some scenarios such as jails.

Also, bump the fetch url to 0.5 for 0.5-CURRENT as we're starting to tinker with the package format.  The idea is to assume packages are for old releases if they don't include the meta[os_release] and allow a new mechanism to upgrade all packages for those built on the current release when we do major updates.

Revision 6023 - Directory Listing - [select for diffs]
Modified Sat Sep 7 12:44:22 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6022
add missing define, CLOCK_PROCESS_CPUTIME_ID

Revision 6022 - Directory Listing - [select for diffs]
Modified Sun Sep 1 18:07:11 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6021
Add XEN kernel configurations

Revision 6021 - Directory Listing - [select for diffs]
Modified Sun Sep 1 15:06:58 2013 UTC (10 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 6020
tag

Revision 6020 - Directory Listing - [select for diffs]
Modified Thu Aug 29 01:04:23 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6018
Increase dirhashreclaimage to 60.

This is the number of seconds to keep items in the cache before they are eligable for removal in low memory situations.

As this only amounts to a few megabytes on most systems, it is not significant memory use and the cache time outweighs the hit in RAM usage.

Revision 6018 - Directory Listing - [select for diffs]
Modified Sat Aug 24 20:13:37 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6017
svnlite is now in base.

Revision 6017 - Directory Listing - [select for diffs]
Modified Sat Aug 24 20:11:46 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6016
Connect svn (lite) to the build.

Revision 6016 - Directory Listing - [select for diffs]
Modified Sat Aug 24 19:53:34 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6014
svn options

Revision 6014 - Directory Listing - [select for diffs]
Modified Sat Aug 24 19:50:00 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6012
Virgin import of serf 1.2.1

Revision 6012 - Directory Listing - [select for diffs]
Modified Sat Aug 24 19:47:40 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6010
Virgin import of APR 1.4.8

Revision 6010 - Directory Listing - [select for diffs]
Modified Sat Aug 24 19:47:03 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6008
Virgin import of APR-UTIL 1.5.2

Revision 6008 - Directory Listing - [select for diffs]
Modified Sat Aug 24 19:37:10 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6006
Virgin import of Apache Subversion 1.8.1

Revision 6006 - Directory Listing - [select for diffs]
Modified Sat Aug 24 19:33:44 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6004
This commit was generated by cvs2svn to compensate for changes in r6005,
which included commits to RCS files with non-trunk default branches.
Revision 6004 - Directory Listing - [select for diffs]
Modified Sat Aug 24 14:10:16 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6003
MidnightBSD bug fixes.

Revision 6003 - Directory Listing - [select for diffs]
Modified Sat Aug 24 13:51:51 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6002
Fixed sendmail bug.

Revision 6002 - Directory Listing - [select for diffs]
Modified Sat Aug 24 13:49:37 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6001
this may get replaced by libobjc2 someday, but this is not the right place for it.

Revision 6001 - Directory Listing - [select for diffs]
Modified Sat Aug 24 13:49:14 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 6000
remove libobjc.  if we want to re-add this to base, it should be libobjc2 anyway.

Revision 6000 - Directory Listing - [select for diffs]
Modified Sat Aug 24 12:31:28 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5999
move midnightbsd before freebsd because __FreeBSD__ is still set inside gcc. it probably should not be at this point

Revision 5999 - Directory Listing - [select for diffs]
Modified Sat Aug 24 12:14:38 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5998
add sparc

Revision 5998 - Directory Listing - [select for diffs]
Modified Sat Aug 24 12:08:36 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5997
tag

Revision 5997 - Directory Listing - [select for diffs]
Modified Sat Aug 24 12:03:40 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5996
get rid of bogus makefile, fix syntax of mount points in man page and usage

Revision 5996 - Directory Listing - [select for diffs]
Modified Sat Aug 24 12:01:07 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5995
bug fix

Revision 5995 - Directory Listing - [select for diffs]
Modified Sat Aug 24 11:55:38 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5994
revert sendmail 8.14.7 "fix" for AAAA records as it is incompatible with Microsoft DNS servers. A pach is coming in the next relase

Revision 5994 - Directory Listing - [select for diffs]
Modified Sat Aug 24 03:26:11 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5993
patch time shim

Revision 5993 - Directory Listing - [select for diffs]
Modified Fri Aug 23 22:44:14 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5992
Introduce libmap.d in /usr/local/etc/

Revision 5992 - Directory Listing - [select for diffs]
Modified Fri Aug 23 22:42:22 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5991
Include /usr/local/etc/libmap.d/ by default.

Revision 5991 - Directory Listing - [select for diffs]
Modified Fri Aug 23 22:29:41 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5990
add srcid, product and description as required by named main.c

Revision 5990 - Directory Listing - [select for diffs]
Modified Fri Aug 23 00:52:37 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5989
BIND 9.8.5-P2 was imported

Revision 5989 - Directory Listing - [select for diffs]
Modified Fri Aug 23 00:42:38 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5988
we need isc_regex

Revision 5988 - Directory Listing - [select for diffs]
Modified Thu Aug 22 22:56:16 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5987
we dont need win32

Revision 5987 - Directory Listing - [select for diffs]
Modified Thu Aug 22 22:55:20 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5985
Resolve conflicts.

Revision 5985 - Directory Listing - [select for diffs]
Modified Thu Aug 22 22:52:03 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5983
This commit was generated by cvs2svn to compensate for changes in r5984,
which included commits to RCS files with non-trunk default branches.
Revision 5983 - Directory Listing - [select for diffs]
Modified Thu Aug 22 21:41:06 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5982
merge changes from freebsd 9.1-release

Revision 5982 - Directory Listing - [select for diffs]
Modified Thu Aug 22 12:54:37 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5981
3.7.17

Revision 5981 - Directory Listing - [select for diffs]
Modified Thu Aug 22 12:53:54 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5980
add conditionals to make this thing work

Revision 5980 - Directory Listing - [select for diffs]
Modified Thu Aug 22 12:36:31 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5978
update upgrade instructions.

Revision 5978 - Directory Listing - [select for diffs]
Modified Thu Aug 22 12:35:20 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5976
This commit was generated by cvs2svn to compensate for changes in r5977,
which included commits to RCS files with non-trunk default branches.
Revision 5976 - Directory Listing - [select for diffs]
Modified Thu Aug 22 12:27:41 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5975
xz 5.0.4

Revision 5975 - Directory Listing - [select for diffs]
Modified Thu Aug 22 12:25:34 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5973
update instructions

Revision 5973 - Directory Listing - [select for diffs]
Modified Thu Aug 22 12:23:09 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5971
This commit was generated by cvs2svn to compensate for changes in r5972,
which included commits to RCS files with non-trunk default branches.
Revision 5971 - Directory Listing - [select for diffs]
Modified Thu Aug 22 12:16:54 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5969
Forgot to document sendmail update

Revision 5969 - Directory Listing - [select for diffs]
Modified Thu Aug 22 11:51:54 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5968
Security vulnerabilities patched.

Revision 5968 - Directory Listing - [select for diffs]
Modified Thu Aug 22 11:49:37 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5967
Fix two security vulnerabilities.

Fix an integer overflow in IP_MSFILTER (IP MULTICAST). This could be exploited to read memory by a user process.

When initializing the SCTP state cookie being sent in INIT-ACK chunks,
a buffer allocated from the kernel stack is not completely initialized.

Patches obtained from: FreeBSD

Revision 5967 - Directory Listing - [select for diffs]
Modified Sun Aug 18 22:05:10 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5966
we no longer need /var/db/pkg

Revision 5966 - Directory Listing - [select for diffs]
Modified Sat Aug 17 19:35:56 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5965
clarity

Revision 5965 - Directory Listing - [select for diffs]
Modified Sat Aug 17 19:35:00 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5964
add debug statement and use strncmp to be on the safe side

Revision 5964 - Directory Listing - [select for diffs]
Modified Sat Aug 17 19:34:37 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5961
print out the md5 hash with it.

Revision 5961 - Directory Listing - [select for diffs]
Modified Wed Aug 14 22:35:48 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5959
This commit was generated by cvs2svn to compensate for changes in r5960,
which included commits to RCS files with non-trunk default branches.
Revision 5959 - Directory Listing - [select for diffs]
Modified Wed Aug 14 22:32:16 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5958
mksh R48 imported.

Revision 5958 - Directory Listing - [select for diffs]
Modified Wed Aug 14 22:31:38 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5957
Update for R48

Revision 5957 - Directory Listing - [select for diffs]
Modified Wed Aug 14 22:27:03 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5956
update attributes list

Revision 5956 - Directory Listing - [select for diffs]
Modified Wed Aug 14 22:16:34 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5955
update version number

Revision 5955 - Directory Listing - [select for diffs]
Modified Wed Aug 14 22:14:23 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5954
no ico

Revision 5954 - Directory Listing - [select for diffs]
Modified Wed Aug 14 22:13:45 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5952
resolve conflicts

Revision 5952 - Directory Listing - [select for diffs]
Modified Wed Aug 14 22:11:50 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5950
This commit was generated by cvs2svn to compensate for changes in r5951,
which included commits to RCS files with non-trunk default branches.
Revision 5950 - Directory Listing - [select for diffs]
Modified Sat Aug 10 21:34:15 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5949
add link for clearenv(3) to getenv(3) man page.

Revision 5949 - Directory Listing - [select for diffs]
Modified Sat Aug 10 21:31:20 2013 UTC (10 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5946
Implement clearenv(3)

This never made it into the POSIX standards, but it's popular in some Linux circles and POSIX bindings for Fortran 77 require it.

Revision 5946 - Directory Listing - [select for diffs]
Modified Sun Jul 28 15:44:17 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5944
Fix a security vulnerability in nfs server where the incorrect credentials can be used (like root) to access a file.

Revision 5944 - Directory Listing - [select for diffs]
Modified Sun Jul 28 15:42:06 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5943
bind can crash on malfored rdata

Revision 5943 - Directory Listing - [select for diffs]
Modified Thu Jul 18 02:50:41 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5942
make static

Revision 5942 - Directory Listing - [select for diffs]
Modified Thu Jul 18 02:43:51 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5941
make static

Revision 5941 - Directory Listing - [select for diffs]
Modified Thu Jul 18 02:38:15 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5940
default to DT_CHR

Revision 5940 - Directory Listing - [select for diffs]
Modified Thu Jul 18 02:34:31 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5939
make several items static

Revision 5939 - Directory Listing - [select for diffs]
Modified Thu Jul 18 02:28:17 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5938
add Dlink DFE-520TX nic

Revision 5938 - Directory Listing - [select for diffs]
Modified Thu Jul 18 02:23:56 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5937
check length before trying to access array

Revision 5937 - Directory Listing - [select for diffs]
Modified Thu Jul 18 02:13:12 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5936
document POSIX functionality

Revision 5936 - Directory Listing - [select for diffs]
Modified Thu Jul 18 02:12:11 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5935
work around kernel bug

Revision 5935 - Directory Listing - [select for diffs]
Modified Thu Jul 18 02:10:10 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5934
add -y flag.  Obtained from: FreeBSD 9-stable

Revision 5934 - Directory Listing - [select for diffs]
Modified Thu Jul 18 01:58:36 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5933
mention virtio(4) and mport patch

Revision 5933 - Directory Listing - [select for diffs]
Modified Thu Jul 18 01:56:32 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5932
add man pages for virtio(4)

Revision 5932 - Directory Listing - [select for diffs]
Modified Thu Jul 18 01:52:40 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5931
add virtio module

Revision 5931 - Directory Listing - [select for diffs]
Modified Thu Jul 18 01:50:49 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5930
add makefiles for building virtio module

Revision 5930 - Directory Listing - [select for diffs]
Modified Thu Jul 18 01:47:43 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5929
add virtio.  Note the scsi port isn't done yet.

Revision 5929 - Directory Listing - [select for diffs]
Modified Thu Jul 18 01:47:10 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5926
add virtio

Revision 5926 - Directory Listing - [select for diffs]
Modified Wed Jul 10 22:57:59 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5925
add 0.4 config

Revision 5925 - Directory Listing - [select for diffs]
Modified Wed Jul 10 22:57:46 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5920
Sync tinderbox with DES's version for FreeBSD.

Revision 5920 - Directory Listing - [select for diffs]
Modified Wed Jul 3 10:59:40 2013 UTC (10 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5917
Fix an init issue on fxp with dhclient

Revision 5917 - Directory Listing - [select for diffs]
Modified Fri Jun 21 00:46:25 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5916
fix regression

Revision 5916 - Directory Listing - [select for diffs]
Modified Tue Jun 18 12:32:37 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5915
Due to insufficient permission checks in the virtual memory system, a
tracing process (such as a debugger) may be able to modify portions of
the traced process's address space to which the traced process itself
does not have write access.

This error can be exploited to allow unauthorized modification of an
arbitrary file to which the attacker has read access, but not write
access.  Depending on the file and the nature of the modifications,
this can result in privilege escalation.

To exploit this vulnerability, an attacker must be able to run
arbitrary code with user privileges on the target system.

Obtained from: FreeBSD

Revision 5915 - Directory Listing - [select for diffs]
Modified Sun Jun 16 00:29:18 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5914
rebrand

Revision 5914 - Directory Listing - [select for diffs]
Modified Fri Jun 14 00:18:08 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5912
Remove additional old files

Revision 5912 - Directory Listing - [select for diffs]
Modified Wed Jun 12 21:38:34 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5911
Update OS list

Revision 5911 - Directory Listing - [select for diffs]
Modified Wed Jun 12 21:26:57 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5909
add copyright notice per authors doing upstream

Revision 5909 - Directory Listing - [select for diffs]
Modified Wed Jun 12 21:22:19 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5908
bump osreldate as current is now 0.5

Revision 5908 - Directory Listing - [select for diffs]
Modified Wed Jun 12 21:21:00 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5906
0.5-CURRENT now

Revision 5906 - Directory Listing - [select for diffs]
Modified Wed Jun 12 12:09:47 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5903
RELENG_0_4 branch created.

Revision 5903 - Directory Listing - [select for diffs]
Modified Wed Jun 12 11:43:27 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5902
change format specified

Revision 5902 - Directory Listing - [select for diffs]
Modified Wed Jun 12 11:38:31 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5901
Remove 3&4 clauses from BSDL per NetBSD updates from the author.

Revision 5901 - Directory Listing - [select for diffs]
Modified Tue Jun 11 11:53:33 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5900
remove these old files

Revision 5900 - Directory Listing - [select for diffs]
Modified Tue Jun 11 11:52:43 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5899
add path to UTMPX file

Revision 5899 - Directory Listing - [select for diffs]
Modified Tue Jun 11 11:46:54 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5898
fix config define

Revision 5898 - Directory Listing - [select for diffs]
Modified Tue Jun 11 11:45:34 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5897
we do x86-64

Revision 5897 - Directory Listing - [select for diffs]
Modified Sun Jun 9 17:15:10 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5896
revert the %ld as we cant build on i386

Revision 5896 - Directory Listing - [select for diffs]
Modified Sun Jun 9 13:32:19 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5895
tag and sync with freebsd 9.1

Revision 5895 - Directory Listing - [select for diffs]
Modified Sun Jun 9 13:30:51 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5894
tag

Revision 5894 - Directory Listing - [select for diffs]
Modified Sat Jun 8 16:02:42 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5893
tag

Revision 5893 - Directory Listing - [select for diffs]
Modified Thu Jun 6 00:44:00 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5892
generalize description as its not just k8

Revision 5892 - Directory Listing - [select for diffs]
Modified Thu Jun 6 00:33:32 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5891
reconnect sensors here.

Revision 5891 - Directory Listing - [select for diffs]
Modified Wed Jun 5 23:56:12 2013 UTC (10 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 5890
in freebsd 8, kthread functions were renamed kproc as they really create processes

Revision 5890 - Directory Listing - [select for diffs]
Modified Mon May 13 01:59:14 2013 UTC (10 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 5889
support relative paths with -m flag

Revision 5889 - Directory Listing - [select for diffs]
Modified Fri May 10 18:22:33 2013 UTC (10 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 5888
Update protocols list from IANA

Revision 5888 - Directory Listing - [select for diffs]
Modified Tue May 7 18:56:43 2013 UTC (10 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 5887
update release script

Revision 5887 - Directory Listing - [select for diffs]
Modified Tue May 7 18:52:00 2013 UTC (10 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 5886
midnightbsd ufs

Revision 5886 - Directory Listing - [select for diffs]
Modified Tue May 7 18:51:41 2013 UTC (10 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 5885
midnightbsd file system type

Revision 5885 - Directory Listing - [select for diffs]
Modified Sun May 5 16:19:45 2013 UTC (10 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 5884
catch up

Revision 5884 - Directory Listing - [select for diffs]
Modified Sun May 5 16:18:06 2013 UTC (10 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 5883
catch up make.conf examples

Revision 5883 - Directory Listing - [select for diffs]
Modified Sat May 4 23:40:22 2013 UTC (10 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 5882
note the hints file hack so we can watch out for it on the next upgrade.

Revision 5882 - Directory Listing - [select for diffs]
Modified Sat May 4 23:39:24 2013 UTC (10 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 5881
change hints file to support threading enabled on current

Revision 5881 - Directory Listing - [select for diffs]
Modified Sat May 4 20:29:12 2013 UTC (10 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 5880
file is in TCSHDIR rather than .CURDIR This breaks world builds

Revision 5880 - Directory Listing - [select for diffs]
Modified Sat May 4 15:53:37 2013 UTC (10 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 5879
Remove old resources.

Revision 5879 - Directory Listing - [select for diffs]
Modified Mon Apr 29 22:28:19 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5878
Fix a security vulnerability in nfsserver which can allow clients who send malformed requests (readdir) with a file as the path can corrupt memory or do other nasty things.

Fix obtained from: FreeBSD

Revision 5878 - Directory Listing - [select for diffs]
Modified Fri Apr 19 12:18:10 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5877
Remove additional files that are outdated.

Revision 5877 - Directory Listing - [select for diffs]
Modified Fri Apr 19 12:15:41 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5876
ssh-vulnkey was removed in current.

Revision 5876 - Directory Listing - [select for diffs]
Modified Thu Apr 18 01:20:22 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5875
sync from freebsd

Revision 5875 - Directory Listing - [select for diffs]
Modified Thu Apr 18 01:17:42 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5874
merge from freebsd.

Revision 5874 - Directory Listing - [select for diffs]
Modified Thu Apr 18 01:12:47 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5873
rc.subr - Improve shell compatibility.
network.subr - conditionalize ipv6 rtadvd

Revision 5873 - Directory Listing - [select for diffs]
Modified Thu Apr 18 00:54:28 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5872
Sun is dead.

Revision 5872 - Directory Listing - [select for diffs]
Modified Thu Apr 18 00:52:05 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5871
Update copyright due to inclusion of newer FreeBSD code.

Revision 5871 - Directory Listing - [select for diffs]
Modified Thu Apr 18 00:43:16 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5870
Remove unused files.

Revision 5870 - Directory Listing - [select for diffs]
Modified Wed Apr 17 22:56:54 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5869
update see also list

Revision 5869 - Directory Listing - [select for diffs]
Modified Wed Apr 17 22:47:20 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5868
tag and fix port def

Revision 5868 - Directory Listing - [select for diffs]
Modified Wed Apr 17 22:41:48 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5867
update build setup

Revision 5867 - Directory Listing - [select for diffs]
Modified Sun Apr 14 17:23:52 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5866
We need to refactor this, but at least set it to use the mport tool rather than pkg_add

Revision 5866 - Directory Listing - [select for diffs]
Modified Sun Apr 14 15:47:52 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5865
re-add vm.4th

Revision 5865 - Directory Listing - [select for diffs]
Modified Sun Apr 14 04:15:48 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5864
get the correct name

Revision 5864 - Directory Listing - [select for diffs]
Modified Sun Apr 14 04:07:38 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5863
change shell option location.

Revision 5863 - Directory Listing - [select for diffs]
Modified Sat Apr 6 19:19:41 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5862
drop freebsd tag

Revision 5862 - Directory Listing - [select for diffs]
Modified Sat Apr 6 14:26:43 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5861
change directory

Revision 5861 - Directory Listing - [select for diffs]
Modified Sat Apr 6 05:01:30 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5860
change text

Revision 5860 - Directory Listing - [select for diffs]
Modified Sat Apr 6 04:41:31 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5859
fix  string comparison.

Revision 5859 - Directory Listing - [select for diffs]
Modified Sat Apr 6 04:25:45 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5858
add text to track some targets and clean up the exclusion rules

Revision 5858 - Directory Listing - [select for diffs]
Modified Thu Apr 4 13:12:26 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5857
remove unused files

Revision 5857 - Directory Listing - [select for diffs]
Modified Thu Apr 4 13:10:45 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5856
improve allocation/error handling

Revision 5856 - Directory Listing - [select for diffs]
Modified Thu Apr 4 00:20:04 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5855
add missing file

Revision 5855 - Directory Listing - [select for diffs]
Modified Tue Apr 2 22:45:24 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5854
BIND  & OpenSSL security updates.

Revision 5854 - Directory Listing - [select for diffs]
Modified Tue Apr 2 22:44:45 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5853
Bump MidnightBSD version for bind and openssl security updates.

Revision 5853 - Directory Listing - [select for diffs]
Modified Tue Apr 2 22:43:24 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5852
There is a security hole in bind that allows an attacker to consume all memory.  Turn of regex to work around the issue.

Revision 5852 - Directory Listing - [select for diffs]
Modified Tue Apr 2 22:41:51 2013 UTC (10 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 5851
Security update for OpenSSL to 0.98y

Revision 5851 - Directory Listing - [select for diffs]
Modified Sun Mar 24 15:44:50 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5850
drop invalid syntax

Revision 5850 - Directory Listing - [select for diffs]
Modified Sat Mar 23 16:33:33 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5849
revert clang change

Revision 5849 - Directory Listing - [select for diffs]
Modified Sat Mar 23 16:33:17 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5848
make error handling easier to deal with

Revision 5848 - Directory Listing - [select for diffs]
Modified Mon Mar 18 03:37:19 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5847
format

Revision 5847 - Directory Listing - [select for diffs]
Modified Mon Mar 18 03:14:28 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5846
formatting.

Revision 5846 - Directory Listing - [select for diffs]
Modified Mon Mar 18 03:01:53 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5845
style 9 fixes

Revision 5845 - Directory Listing - [select for diffs]
Modified Mon Mar 18 02:25:49 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5844
revert cc change. this was local and not wanted

Revision 5844 - Directory Listing - [select for diffs]
Modified Mon Mar 18 02:24:40 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5843
init total

Revision 5843 - Directory Listing - [select for diffs]
Modified Mon Mar 18 02:23:53 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5842
cleanup errors

Revision 5842 - Directory Listing - [select for diffs]
Modified Mon Mar 18 02:11:43 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5841
add error handling

Revision 5841 - Directory Listing - [select for diffs]
Modified Sun Mar 17 23:54:17 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5840
accept optional version parameter to mport_install.  This allows users to remove ambiguity with ports like ruby or tcl.

Revision 5840 - Directory Listing - [select for diffs]
Modified Sun Mar 17 23:53:36 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5839
allow user to choose when package name is ambiguous like ruby or tcl

Revision 5839 - Directory Listing - [select for diffs]
Modified Sun Mar 17 22:51:25 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5838
We've moved the hash verification checks to inside mport_install.  No need to do it in the driver now.

Revision 5838 - Directory Listing - [select for diffs]
Modified Sun Mar 17 22:49:33 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5837
always perform hash verification on packages at this level.

Revision 5837 - Directory Listing - [select for diffs]
Modified Sun Mar 17 22:05:54 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5836
drop unused function

Revision 5836 - Directory Listing - [select for diffs]
Modified Sun Mar 17 21:43:55 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5835
install bundle file is broken. work around for now

Revision 5835 - Directory Listing - [select for diffs]
Modified Sun Mar 17 21:16:21 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5834
drop unused variables

Revision 5834 - Directory Listing - [select for diffs]
Modified Sun Mar 17 21:13:21 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5833
add missing definition for index depends.

Revision 5833 - Directory Listing - [select for diffs]
Modified Sun Mar 17 18:50:20 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5832
attempt to install missing dependencies on install case

Revision 5832 - Directory Listing - [select for diffs]
Modified Sun Mar 17 18:06:18 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5831
add index_depends.c with dependency list for packages.

Revision 5831 - Directory Listing - [select for diffs]
Modified Sun Mar 10 03:25:35 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5830
add error handling

Revision 5830 - Directory Listing - [select for diffs]
Modified Sun Mar 10 03:00:12 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5829
fix format string issue

Revision 5829 - Directory Listing - [select for diffs]
Modified Sun Mar 10 00:34:02 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5828
turn on threads.  this might be reverted

Revision 5828 - Directory Listing - [select for diffs]
Modified Sat Mar 9 21:49:09 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5827
whitespace

Revision 5827 - Directory Listing - [select for diffs]
Modified Sat Mar 9 21:47:03 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5826
update/sync

Revision 5826 - Directory Listing - [select for diffs]
Modified Wed Mar 6 00:57:22 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5825
mksh update to r44

Revision 5825 - Directory Listing - [select for diffs]
Modified Wed Mar 6 00:56:18 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5824
441

Revision 5824 - Directory Listing - [select for diffs]
Modified Wed Mar 6 00:55:17 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5822
merge changes.

Revision 5822 - Directory Listing - [select for diffs]
Modified Wed Mar 6 00:52:13 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5820
This commit was generated by cvs2svn to compensate for changes in r5821,
which included commits to RCS files with non-trunk default branches.
Revision 5820 - Directory Listing - [select for diffs]
Modified Mon Mar 4 02:17:43 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5819
adjust paths

Revision 5819 - Directory Listing - [select for diffs]
Modified Mon Mar 4 02:14:58 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5818
remove unused files

Revision 5818 - Directory Listing - [select for diffs]
Modified Mon Mar 4 02:12:03 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5817
add makefiles.

Revision 5817 - Directory Listing - [select for diffs]
Modified Mon Mar 4 02:11:00 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5816
unbreak time zone code.

Revision 5816 - Directory Listing - [select for diffs]
Modified Sun Mar 3 00:41:13 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5815
show usage on list error

Revision 5815 - Directory Listing - [select for diffs]
Modified Sun Mar 3 00:38:44 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5814
add shorthand for updates list

Revision 5814 - Directory Listing - [select for diffs]
Modified Sun Mar 3 00:35:34 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5813
more crash bugs

Revision 5813 - Directory Listing - [select for diffs]
Modified Sun Mar 3 00:29:51 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5812
mport_free_vec is not safe here

Revision 5812 - Directory Listing - [select for diffs]
Modified Sun Mar 3 00:25:12 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5811
fix build on clang

Revision 5811 - Directory Listing - [select for diffs]
Modified Sun Mar 3 00:24:55 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5810
null last list entry

Revision 5810 - Directory Listing - [select for diffs]
Modified Sun Mar 3 00:24:18 2013 UTC (11 years ago) by laffer1
Original Path: trunk
Diff to previous 5809
compute length once here.

Revision 5809 - Directory Listing - [select for diffs]
Modified Tue Feb 19 02:32:03 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5808
setvar sucks

Revision 5808 - Directory Listing - [select for diffs]
Modified Mon Feb 18 00:46:18 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5807
branding

Revision 5807 - Directory Listing - [select for diffs]
Modified Mon Feb 18 00:39:35 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5806
tag

Revision 5806 - Directory Listing - [select for diffs]
Modified Mon Feb 18 00:31:10 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5805
tag

Revision 5805 - Directory Listing - [select for diffs]
Modified Mon Feb 18 00:28:35 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5804
update mksh default skel file based on changes from the distribution.

Revision 5804 - Directory Listing - [select for diffs]
Modified Mon Feb 18 00:15:42 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5803
man pages, etc

Revision 5803 - Directory Listing - [select for diffs]
Modified Mon Feb 18 00:12:22 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5802
tag

Revision 5802 - Directory Listing - [select for diffs]
Modified Mon Feb 18 00:11:40 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5801
drop assignment to itself

Revision 5801 - Directory Listing - [select for diffs]
Modified Mon Feb 18 00:09:18 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5800
We don't use this as we're loading sound into the kernel now.

Revision 5800 - Directory Listing - [select for diffs]
Modified Mon Feb 18 00:06:34 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5799
update man page, tag

Revision 5799 - Directory Listing - [select for diffs]
Modified Sun Feb 17 23:57:15 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5798
Update mdoc template, operator and scsi_modes

Revision 5798 - Directory Listing - [select for diffs]
Modified Sun Feb 17 23:54:18 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5797
update list

Revision 5797 - Directory Listing - [select for diffs]
Modified Sun Feb 17 23:51:21 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5796
add additional types

Revision 5796 - Directory Listing - [select for diffs]
Modified Sat Feb 16 00:22:08 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5795
lots of mksh activity

Revision 5795 - Directory Listing - [select for diffs]
Modified Sat Feb 16 00:21:23 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5794
vR42b

Revision 5794 - Directory Listing - [select for diffs]
Modified Sat Feb 16 00:18:24 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5792
merge

Revision 5792 - Directory Listing - [select for diffs]
Modified Sat Feb 16 00:17:42 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5790
This commit was generated by cvs2svn to compensate for changes in r5791,
which included commits to RCS files with non-trunk default branches.
Revision 5790 - Directory Listing - [select for diffs]
Modified Mon Feb 11 23:14:12 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5789
mksh bump

Revision 5789 - Directory Listing - [select for diffs]
Modified Mon Feb 11 23:13:40 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5788
R42

Revision 5788 - Directory Listing - [select for diffs]
Modified Mon Feb 11 22:59:24 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5786
Resolve conflicts.

Revision 5786 - Directory Listing - [select for diffs]
Modified Mon Feb 11 22:57:59 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5784
This commit was generated by cvs2svn to compensate for changes in r5785,
which included commits to RCS files with non-trunk default branches.
Revision 5784 - Directory Listing - [select for diffs]
Modified Sun Feb 10 15:03:06 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5783
Update the copyright year.  It's only February. Doh.

Revision 5783 - Directory Listing - [select for diffs]
Modified Fri Feb 8 02:41:06 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5782
whatis != gnu

Revision 5782 - Directory Listing - [select for diffs]
Modified Fri Feb 8 02:34:02 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5781
drop cpio.1

Revision 5781 - Directory Listing - [select for diffs]
Modified Fri Feb 8 02:33:34 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5780
drop tar.1

Revision 5780 - Directory Listing - [select for diffs]
Modified Fri Feb 8 02:32:17 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5779
add -d format

Revision 5779 - Directory Listing - [select for diffs]
Modified Fri Feb 8 02:27:50 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5778
sync up

Revision 5778 - Directory Listing - [select for diffs]
Modified Fri Feb 8 01:53:08 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5777
turn mksh default on (again)

Revision 5777 - Directory Listing - [select for diffs]
Modified Wed Feb 6 01:46:54 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5776
merge bug fixes

Revision 5776 - Directory Listing - [select for diffs]
Modified Tue Feb 5 13:17:18 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5775
whitespace

Revision 5775 - Directory Listing - [select for diffs]
Modified Sun Feb 3 21:47:51 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5774
tag

Revision 5774 - Directory Listing - [select for diffs]
Modified Sun Feb 3 21:47:32 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5773
sync up

Revision 5773 - Directory Listing - [select for diffs]
Modified Sun Feb 3 21:47:16 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5772
drop doc from here

Revision 5772 - Directory Listing - [select for diffs]
Modified Sun Feb 3 21:46:21 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5771
update meremaster instructions

Revision 5771 - Directory Listing - [select for diffs]
Modified Sun Feb 3 21:46:00 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5770
*** empty log message ***

Revision 5770 - Directory Listing - [select for diffs]
Modified Sun Feb 3 21:43:40 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5769
update config

Revision 5769 - Directory Listing - [select for diffs]
Modified Sun Feb 3 21:38:56 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5768
partial fix for path issues

Revision 5768 - Directory Listing - [select for diffs]
Modified Sat Feb 2 13:47:21 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5767
move docs for fsck to this directory

Revision 5767 - Directory Listing - [select for diffs]
Modified Sat Feb 2 02:03:19 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5766
fix documentation

Revision 5766 - Directory Listing - [select for diffs]
Modified Fri Feb 1 04:37:12 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5765
fix build after lukemftp to tnftp update

Revision 5765 - Directory Listing - [select for diffs]
Modified Fri Feb 1 03:13:13 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5764
turn off libiconv for now.  it does not work for src upgrades

Revision 5764 - Directory Listing - [select for diffs]
Modified Fri Feb 1 03:01:36 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5763
bind 9.8

Revision 5763 - Directory Listing - [select for diffs]
Modified Fri Feb 1 01:59:35 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5762
bind 9.8

Revision 5762 - Directory Listing - [select for diffs]
Modified Thu Jan 31 13:29:22 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5761
bind 9.8

Revision 5761 - Directory Listing - [select for diffs]
Modified Wed Jan 30 12:43:59 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5760
add ctladm(8), dumpcis(8), i2c(8)

Revision 5760 - Directory Listing - [select for diffs]
Modified Wed Jan 30 12:40:24 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5759
add nfs daemons and utilities.

Revision 5759 - Directory Listing - [select for diffs]
Modified Wed Jan 30 03:23:32 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5758
add gpioctl

Revision 5758 - Directory Listing - [select for diffs]
Modified Wed Jan 30 03:22:13 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5757
add nfscbd

Revision 5757 - Directory Listing - [select for diffs]
Modified Wed Jan 30 02:46:51 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5756
lsi megaraid

Revision 5756 - Directory Listing - [select for diffs]
Modified Wed Jan 30 02:45:26 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5755
fixup some entries

Revision 5755 - Directory Listing - [select for diffs]
Modified Wed Jan 30 02:43:21 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5754
drop cxgbtool and conditionalize ntpd and rdate

Revision 5754 - Directory Listing - [select for diffs]
Modified Wed Jan 30 02:41:12 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5753
conditionalize a bunch of stuff and update bind related stuff

Revision 5753 - Directory Listing - [select for diffs]
Modified Wed Jan 30 01:56:43 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5752
update to bind 9.8

Revision 5752 - Directory Listing - [select for diffs]
Modified Wed Jan 30 01:55:40 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5750
step 1 of many updating bind to 9.8

Revision 5750 - Directory Listing - [select for diffs]
Modified Wed Jan 30 01:45:02 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5748
This commit was generated by cvs2svn to compensate for changes in r5749,
which included commits to RCS files with non-trunk default branches.
Revision 5748 - Directory Listing - [select for diffs]
Modified Wed Jan 30 01:34:57 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5747
midnightbsd

Revision 5747 - Directory Listing - [select for diffs]
Modified Wed Jan 30 01:33:41 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5746
drop unused files

Revision 5746 - Directory Listing - [select for diffs]
Modified Wed Jan 30 01:31:51 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5744
remove legacy lukemftp directory

Revision 5744 - Directory Listing - [select for diffs]
Modified Wed Jan 30 01:30:15 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5742
This commit was generated by cvs2svn to compensate for changes in r5743,
which included commits to RCS files with non-trunk default branches.
Revision 5742 - Directory Listing - [select for diffs]
Modified Wed Jan 30 01:20:22 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5741
sync the shell with freebsd 9.1

Revision 5741 - Directory Listing - [select for diffs]
Modified Wed Jan 30 01:15:47 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5740
drop old docs

Revision 5740 - Directory Listing - [select for diffs]
Modified Wed Jan 30 01:14:40 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5739
how did fdisk get committed here

Revision 5739 - Directory Listing - [select for diffs]
Modified Wed Jan 30 01:14:25 2013 UTC (11 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 5738
wtf did i do

Revision 5738 - Directory Listing - [select for diffs]
Modified Tue Jan 29 12:26:43 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5737
btxld is needed more recently than 4012.

Revision 5737 - Directory Listing - [select for diffs]
Modified Tue Jan 29 02:22:24 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5736
merge with freebsd

Revision 5736 - Directory Listing - [select for diffs]
Modified Sat Jan 26 23:05:37 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5735
tweak the boostrap rules.

Revision 5735 - Directory Listing - [select for diffs]
Modified Sat Jan 26 22:08:47 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5734
fix depend target on make which is screwing up buildworld

Revision 5734 - Directory Listing - [select for diffs]
Modified Sat Jan 26 15:52:50 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5733
remove static libs too for objc

Revision 5733 - Directory Listing - [select for diffs]
Modified Sat Jan 26 15:49:30 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5732
add more files from /usr/lib

Revision 5732 - Directory Listing - [select for diffs]
Modified Sat Jan 26 03:35:43 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5731
add optional obsolute files.

Revision 5731 - Directory Listing - [select for diffs]
Modified Sat Jan 26 03:34:32 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5730
Remove more old libraries.

Revision 5730 - Directory Listing - [select for diffs]
Modified Sat Jan 26 01:41:47 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5729
add additional files to the list.

Revision 5729 - Directory Listing - [select for diffs]
Modified Sat Jan 26 01:24:49 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5728
mksh update

Revision 5728 - Directory Listing - [select for diffs]
Modified Sat Jan 26 00:51:07 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5727
Fix build of mksh.

Revision 5727 - Directory Listing - [select for diffs]
Modified Fri Jan 25 13:53:55 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5726
remove copyright file.  it is not included anymore

Revision 5726 - Directory Listing - [select for diffs]
Modified Fri Jan 25 13:52:36 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5724
resolv conflicts

Revision 5724 - Directory Listing - [select for diffs]
Modified Fri Jan 25 13:50:38 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5722
This commit was generated by cvs2svn to compensate for changes in r5723,
which included commits to RCS files with non-trunk default branches.
Revision 5722 - Directory Listing - [select for diffs]
Modified Fri Jan 25 03:45:45 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5721
Close input file too.

Revision 5721 - Directory Listing - [select for diffs]
Modified Fri Jan 25 03:30:48 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5720
turn perl back on

Revision 5720 - Directory Listing - [select for diffs]
Modified Fri Jan 25 03:29:53 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5719
why doesn't make depend RUN on x2p.  What is wrong here... work around it for now.

Revision 5719 - Directory Listing - [select for diffs]
Modified Thu Jan 24 14:00:53 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5718
remove ppc

Revision 5718 - Directory Listing - [select for diffs]
Modified Thu Jan 24 14:00:24 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5717
turn truss on

Revision 5717 - Directory Listing - [select for diffs]
Modified Thu Jan 24 13:55:06 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5716
fix parse errors

Revision 5716 - Directory Listing - [select for diffs]
Modified Thu Jan 24 01:52:43 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5715
tag

Revision 5715 - Directory Listing - [select for diffs]
Modified Thu Jan 24 01:52:21 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5714
improve comment

Revision 5714 - Directory Listing - [select for diffs]
Modified Thu Jan 24 01:51:14 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5713
duh...

Revision 5713 - Directory Listing - [select for diffs]
Modified Thu Jan 24 01:43:06 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5712
midnightbsd logo

Revision 5712 - Directory Listing - [select for diffs]
Modified Wed Jan 23 03:13:21 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5711
retag

Revision 5711 - Directory Listing - [select for diffs]
Modified Wed Jan 23 03:00:03 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5710
unbreak

Revision 5710 - Directory Listing - [select for diffs]
Modified Wed Jan 23 02:56:07 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5709
bump freebsd compatibility version

Revision 5709 - Directory Listing - [select for diffs]
Modified Wed Jan 23 02:50:19 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5708
tag

Revision 5708 - Directory Listing - [select for diffs]
Modified Wed Jan 23 02:48:14 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5707
update mergemaster based on freebsd 9.1 version.  Add M flag that checks for MidnightBSD ids

Revision 5707 - Directory Listing - [select for diffs]
Modified Wed Jan 23 02:36:12 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5706
bump to 4017 as we've made changes to mport, sqlite3 and openssh.  sqlite3 is useful for ports.

Revision 5706 - Directory Listing - [select for diffs]
Modified Wed Jan 23 02:35:12 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5705
OpenSSH updated

Revision 5705 - Directory Listing - [select for diffs]
Modified Wed Jan 23 02:31:24 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5704
add pkcs11-helper

Revision 5704 - Directory Listing - [select for diffs]
Modified Tue Jan 22 13:59:22 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5703
remove arc4ramdon compat layer

Revision 5703 - Directory Listing - [select for diffs]
Modified Tue Jan 22 13:53:11 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5702
ssh_namespace.h regen for openssh 5.8p2

Revision 5702 - Directory Listing - [select for diffs]
Modified Tue Jan 22 13:50:25 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5701
refresh config.h for 5.8

Revision 5701 - Directory Listing - [select for diffs]
Modified Tue Jan 22 13:47:20 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5699
Resolve conflicts

Revision 5699 - Directory Listing - [select for diffs]
Modified Tue Jan 22 13:42:07 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5697
This commit was generated by cvs2svn to compensate for changes in r5698,
which included commits to RCS files with non-trunk default branches.
Revision 5697 - Directory Listing - [select for diffs]
Modified Tue Jan 22 12:59:03 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5696
sqlite 3 updated.

Revision 5696 - Directory Listing - [select for diffs]
Modified Tue Jan 22 12:56:24 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5694
update version

Revision 5694 - Directory Listing - [select for diffs]
Modified Tue Jan 22 12:54:14 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5692
This commit was generated by cvs2svn to compensate for changes in r5693,
which included commits to RCS files with non-trunk default branches.
Revision 5692 - Directory Listing - [select for diffs]
Modified Tue Jan 22 02:26:09 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5691
add debug friendly code and close the bzip file

Revision 5691 - Directory Listing - [select for diffs]
Modified Mon Jan 21 02:47:22 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5690
update pf examples

Revision 5690 - Directory Listing - [select for diffs]
Modified Mon Jan 21 02:46:25 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5689
add more obsolete files.

Revision 5689 - Directory Listing - [select for diffs]
Modified Mon Jan 21 02:22:51 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5688
Remove kse.

Revision 5688 - Directory Listing - [select for diffs]
Modified Mon Jan 21 01:07:54 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5687
branding

Revision 5687 - Directory Listing - [select for diffs]
Modified Sun Jan 20 21:46:55 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5686
teach boot about midnightbsd gpt partition types

Revision 5686 - Directory Listing - [select for diffs]
Modified Sun Jan 20 21:26:03 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5685
branding

Revision 5685 - Directory Listing - [select for diffs]
Modified Sat Jan 19 23:43:37 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5684
fix space

Revision 5684 - Directory Listing - [select for diffs]
Modified Sat Jan 19 23:30:56 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5683
sanity checks

Revision 5683 - Directory Listing - [select for diffs]
Modified Sat Jan 19 22:24:54 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5682
catch var missing

Revision 5682 - Directory Listing - [select for diffs]
Modified Sat Jan 19 22:24:19 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5681
catch environment missing

Revision 5681 - Directory Listing - [select for diffs]
Modified Sat Jan 19 06:15:59 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5680
undelete this

Revision 5680 - Directory Listing - [select for diffs]
Modified Sat Jan 19 05:18:56 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5679
add raid3 directory

Revision 5679 - Directory Listing - [select for diffs]
Modified Sat Jan 19 01:50:29 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5678
add sanity checking for md5 hashes in both the db and computed rom files

Revision 5678 - Directory Listing - [select for diffs]
Modified Fri Jan 18 00:04:49 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5677
fix several wrong references to fbsd

Revision 5677 - Directory Listing - [select for diffs]
Modified Thu Jan 17 23:29:42 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5676
Fix IPv6 problems.

Make some things in ATA & cam constant.

Fix some bugs in geom

Remove unused files.

Tag.

Revision 5676 - Directory Listing - [select for diffs]
Modified Thu Jan 17 14:55:47 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5675
cleanup

Revision 5675 - Directory Listing - [select for diffs]
Modified Thu Jan 17 03:24:02 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5674
assume fast path as we don't have sgtty

Revision 5674 - Directory Listing - [select for diffs]
Modified Thu Jan 17 02:05:50 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5673
get larn to compile with new term interface

Revision 5673 - Directory Listing - [select for diffs]
Modified Wed Jan 16 13:28:48 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5672
Port usercount code over to utmpx

Revision 5672 - Directory Listing - [select for diffs]
Modified Wed Jan 16 01:55:16 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5671
Bring in netbsd current version from today.

Revision 5671 - Directory Listing - [select for diffs]
Modified Tue Jan 15 23:51:07 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5670
sgtty -> termios

Revision 5670 - Directory Listing - [select for diffs]
Modified Mon Jan 14 00:00:54 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5669
update depends

Revision 5669 - Directory Listing - [select for diffs]
Modified Sun Jan 13 17:51:14 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5668
sync with freebsd

Revision 5668 - Directory Listing - [select for diffs]
Modified Sun Jan 13 17:34:37 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5667
Sync with freebsd 9 stable

Revision 5667 - Directory Listing - [select for diffs]
Modified Sun Jan 13 17:13:03 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5666
add gl_ES

Revision 5666 - Directory Listing - [select for diffs]
Modified Fri Jan 11 04:25:32 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5665
update nls

Revision 5665 - Directory Listing - [select for diffs]
Modified Fri Jan 11 04:24:39 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5664
tag and sync

Revision 5664 - Directory Listing - [select for diffs]
Modified Fri Jan 11 00:35:31 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5663
add hast account to master.password.  enable ipv6 rules in firewall configuration.

fixup tty entries per platform.

periodic fixes.

Revision 5663 - Directory Listing - [select for diffs]
Modified Thu Jan 10 13:56:51 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5662
still in usr.sbin

Revision 5662 - Directory Listing - [select for diffs]
Modified Thu Jan 10 13:53:06 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5661
no backup script

Revision 5661 - Directory Listing - [select for diffs]
Modified Thu Jan 10 13:52:18 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5660
add utf8 for English man pages

Revision 5660 - Directory Listing - [select for diffs]
Modified Thu Jan 10 13:35:05 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5659
Update periodic and rc.d scripts

Revision 5659 - Directory Listing - [select for diffs]
Modified Thu Jan 10 13:29:28 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5658
Add scrub zfs.  Make some modifications to disk related scripts.

Revision 5658 - Directory Listing - [select for diffs]
Modified Wed Jan 9 13:41:05 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5657
update rc.d

Revision 5657 - Directory Listing - [select for diffs]
Modified Wed Jan 9 04:58:21 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5656
add zvol and remove sound as the module is part of GENERIC now.

Revision 5656 - Directory Listing - [select for diffs]
Modified Wed Jan 9 04:48:14 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5655
update rc system

Revision 5655 - Directory Listing - [select for diffs]
Modified Wed Jan 9 04:37:30 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5654
use absolute paths

Revision 5654 - Directory Listing - [select for diffs]
Modified Wed Jan 9 04:32:52 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5653
remove programs no longer used from inetd.conf

Revision 5653 - Directory Listing - [select for diffs]
Modified Wed Jan 9 04:16:27 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5652
add NTP option

Revision 5652 - Directory Listing - [select for diffs]
Modified Wed Jan 9 04:14:06 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5651
update configuration

Revision 5651 - Directory Listing - [select for diffs]
Modified Wed Jan 9 04:13:55 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5650
add devd configuration

Revision 5650 - Directory Listing - [select for diffs]
Modified Wed Jan 9 03:24:42 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5649
clean up and add ruser to get rid of pam warnings on su

Revision 5649 - Directory Listing - [select for diffs]
Modified Wed Jan 9 03:16:35 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5648
tweak formatting.

Revision 5648 - Directory Listing - [select for diffs]
Modified Wed Jan 9 03:03:14 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5647
strndup was under FBSD_1_0

Revision 5647 - Directory Listing - [select for diffs]
Modified Wed Jan 9 01:12:32 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5646
path fix

Revision 5646 - Directory Listing - [select for diffs]
Modified Wed Jan 9 01:01:44 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5645
add missing locale

Revision 5645 - Directory Listing - [select for diffs]
Modified Wed Jan 9 00:39:17 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5644
tag

Revision 5644 - Directory Listing - [select for diffs]
Modified Wed Jan 9 00:38:14 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5643
encode firmware

Revision 5643 - Directory Listing - [select for diffs]
Modified Wed Jan 9 00:37:49 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5642
encode fwimage file. Sync up examples

Revision 5642 - Directory Listing - [select for diffs]
Modified Wed Jan 9 00:07:31 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5641
Fix a branding regression

Revision 5641 - Directory Listing - [select for diffs]
Modified Wed Jan 9 00:07:05 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5640
It's 2013 and we had a regression on the last commit.

Revision 5640 - Directory Listing - [select for diffs]
Modified Tue Jan 8 03:53:33 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5639
tag and remove dead code.

Revision 5639 - Directory Listing - [select for diffs]
Modified Tue Jan 8 02:57:52 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5638
remove dead code

Revision 5638 - Directory Listing - [select for diffs]
Modified Tue Jan 8 02:49:03 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5637
tag

Revision 5637 - Directory Listing - [select for diffs]
Modified Tue Jan 8 01:31:40 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5636
*** empty log message ***

Revision 5636 - Directory Listing - [select for diffs]
Modified Tue Jan 8 01:30:48 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5635
update re(4)

Revision 5635 - Directory Listing - [select for diffs]
Modified Tue Jan 8 01:03:43 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5634
tag

Revision 5634 - Directory Listing - [select for diffs]
Modified Tue Jan 8 00:56:17 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5633
tag.

Revision 5633 - Directory Listing - [select for diffs]
Modified Tue Jan 8 00:56:01 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5632
sync with freebsd

Revision 5632 - Directory Listing - [select for diffs]
Modified Tue Jan 8 00:53:35 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5631
remove dead code

Revision 5631 - Directory Listing - [select for diffs]
Modified Tue Jan 8 00:47:18 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5630
tag

Revision 5630 - Directory Listing - [select for diffs]
Modified Tue Jan 8 00:45:19 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5629
modernize

Revision 5629 - Directory Listing - [select for diffs]
Modified Tue Jan 8 00:27:47 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5628
The GNU is not UNIX.

Revision 5628 - Directory Listing - [select for diffs]
Modified Mon Jan 7 23:29:41 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5627
sync

Revision 5627 - Directory Listing - [select for diffs]
Modified Sun Jan 6 17:59:46 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5626
ndis bump

Revision 5626 - Directory Listing - [select for diffs]
Modified Sun Jan 6 17:43:50 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5625
add support for newer smbus controllers.

Revision 5625 - Directory Listing - [select for diffs]
Modified Sun Jan 6 17:29:31 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5624
sync

Revision 5624 - Directory Listing - [select for diffs]
Modified Sun Jan 6 17:16:02 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5623
sync with freebsd 9

Revision 5623 - Directory Listing - [select for diffs]
Modified Sat Jan 5 23:39:48 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5622
tag

Revision 5622 - Directory Listing - [select for diffs]
Modified Sat Jan 5 23:21:53 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5621
sync and tag

Revision 5621 - Directory Listing - [select for diffs]
Modified Sat Jan 5 22:41:52 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5620
sync it

Revision 5620 - Directory Listing - [select for diffs]
Modified Sat Jan 5 22:27:02 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5619
FreeBSD 9 version

Revision 5619 - Directory Listing - [select for diffs]
Modified Sat Jan 5 22:10:22 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5618
kill dead code

Revision 5618 - Directory Listing - [select for diffs]
Modified Sat Jan 5 21:09:23 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5617
bring in freebsd 9 improvements.

Revision 5617 - Directory Listing - [select for diffs]
Modified Sat Jan 5 20:55:34 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5616
tag and remove dead code

Revision 5616 - Directory Listing - [select for diffs]
Modified Sat Jan 5 20:54:37 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5615
tag

Revision 5615 - Directory Listing - [select for diffs]
Modified Sat Jan 5 20:24:00 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5614
tag

Revision 5614 - Directory Listing - [select for diffs]
Modified Sat Jan 5 20:23:38 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5613
tag and remove dead code

Revision 5613 - Directory Listing - [select for diffs]
Modified Sat Jan 5 20:21:17 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5612
partial revert

Revision 5612 - Directory Listing - [select for diffs]
Modified Sat Jan 5 19:17:48 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5611
sync and tag

Revision 5611 - Directory Listing - [select for diffs]
Modified Sat Jan 5 18:59:15 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5610
modernize and tag

Revision 5610 - Directory Listing - [select for diffs]
Modified Sat Jan 5 18:37:06 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5609
tag

Revision 5609 - Directory Listing - [select for diffs]
Modified Sat Jan 5 17:43:45 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5608
hack up

Revision 5608 - Directory Listing - [select for diffs]
Modified Fri Jan 4 23:44:54 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5607
sync up

Revision 5607 - Directory Listing - [select for diffs]
Modified Thu Jan 3 04:37:08 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5606
sync & update

Revision 5606 - Directory Listing - [select for diffs]
Modified Thu Jan 3 04:35:47 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5605
switch to stock freebsd version now.

Revision 5605 - Directory Listing - [select for diffs]
Modified Thu Jan 3 04:33:01 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5604
sync

Revision 5604 - Directory Listing - [select for diffs]
Modified Thu Jan 3 04:21:15 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5603
sync

Revision 5603 - Directory Listing - [select for diffs]
Modified Thu Jan 3 04:06:19 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5602
drop warnings level

Revision 5602 - Directory Listing - [select for diffs]
Modified Thu Jan 3 04:05:06 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5601
revert removal of sensors here

Revision 5601 - Directory Listing - [select for diffs]
Modified Thu Jan 3 03:44:09 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5600
work around clang

Revision 5600 - Directory Listing - [select for diffs]
Modified Thu Jan 3 03:43:31 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5599
sync up

Revision 5599 - Directory Listing - [select for diffs]
Modified Thu Jan 3 03:37:36 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5598
merge more

Revision 5598 - Directory Listing - [select for diffs]
Modified Thu Jan 3 03:33:25 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5597
partial sync

Revision 5597 - Directory Listing - [select for diffs]
Modified Thu Jan 3 03:21:05 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5596
sync

Revision 5596 - Directory Listing - [select for diffs]
Modified Thu Jan 3 03:17:23 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5595
sync with freebsd

Revision 5595 - Directory Listing - [select for diffs]
Modified Thu Jan 3 03:13:30 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5594
sync and tag

Revision 5594 - Directory Listing - [select for diffs]
Modified Thu Jan 3 03:06:22 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5593
sync & tag

Revision 5593 - Directory Listing - [select for diffs]
Modified Thu Jan 3 03:02:23 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5592
warns 3

Revision 5592 - Directory Listing - [select for diffs]
Modified Thu Jan 3 02:58:52 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5591
set warns 3

Revision 5591 - Directory Listing - [select for diffs]
Modified Thu Jan 3 02:58:09 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5590
make usage static

Revision 5590 - Directory Listing - [select for diffs]
Modified Thu Jan 3 02:54:52 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5589
turn off libutil as we removed logwtmp with the utmpx conversion

Revision 5589 - Directory Listing - [select for diffs]
Modified Thu Jan 3 02:45:15 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5588
sync up with openbsd current, fix a few local warnings

Revision 5588 - Directory Listing - [select for diffs]
Modified Thu Jan 3 02:27:45 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5587
set warns 3

Revision 5587 - Directory Listing - [select for diffs]
Modified Thu Jan 3 01:56:24 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5586
drop to warns 2

Revision 5586 - Directory Listing - [select for diffs]
Modified Thu Jan 3 01:52:49 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5585
sync with freebsd 9 stable

Revision 5585 - Directory Listing - [select for diffs]
Modified Thu Jan 3 01:48:09 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5584
fix build warnings

Revision 5584 - Directory Listing - [select for diffs]
Modified Thu Jan 3 01:38:00 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5583
turn off warnings

Revision 5583 - Directory Listing - [select for diffs]
Modified Thu Jan 3 01:10:55 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5582
clean up warnings

Revision 5582 - Directory Listing - [select for diffs]
Modified Thu Jan 3 00:52:22 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5581
sync with freebsd

Revision 5581 - Directory Listing - [select for diffs]
Modified Thu Jan 3 00:43:45 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5580
sync with freebsd

Revision 5580 - Directory Listing - [select for diffs]
Modified Thu Jan 3 00:43:15 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5579
drop special warns define, fix ws

Revision 5579 - Directory Listing - [select for diffs]
Modified Thu Jan 3 00:41:01 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5578
ath3kfw

Revision 5578 - Directory Listing - [select for diffs]
Modified Thu Jan 3 00:40:10 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5577
add new files

Revision 5577 - Directory Listing - [select for diffs]
Modified Thu Jan 3 00:39:04 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5576
warns 2

Revision 5576 - Directory Listing - [select for diffs]
Modified Thu Jan 3 00:37:45 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5575
tag

Revision 5575 - Directory Listing - [select for diffs]
Modified Wed Jan 2 23:48:11 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5574
sync with freebsd

Revision 5574 - Directory Listing - [select for diffs]
Modified Wed Jan 2 23:41:30 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5573
warns 2

Revision 5573 - Directory Listing - [select for diffs]
Modified Wed Jan 2 23:36:38 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5572
set warns 2 on third party code

Revision 5572 - Directory Listing - [select for diffs]
Modified Wed Jan 2 23:36:09 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5571
set warns 2

Revision 5571 - Directory Listing - [select for diffs]
Modified Wed Jan 2 23:35:40 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5570
sync with ffreebsd

Revision 5570 - Directory Listing - [select for diffs]
Modified Wed Jan 2 23:28:43 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5569
sync with freebsd

Revision 5569 - Directory Listing - [select for diffs]
Modified Wed Jan 2 23:21:06 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5568
fix warnings & sync

Revision 5568 - Directory Listing - [select for diffs]
Modified Wed Jan 2 23:17:22 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5567
fix warnings

Revision 5567 - Directory Listing - [select for diffs]
Modified Wed Jan 2 23:13:53 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5566
sync with freebsd

Revision 5566 - Directory Listing - [select for diffs]
Modified Wed Jan 2 13:54:03 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5565
jail

Revision 5565 - Directory Listing - [select for diffs]
Modified Wed Jan 2 13:29:50 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5564
sync with freebsd

Revision 5564 - Directory Listing - [select for diffs]
Modified Wed Jan 2 13:26:14 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5563
sync

Revision 5563 - Directory Listing - [select for diffs]
Modified Wed Jan 2 13:16:21 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5562
sync up

Revision 5562 - Directory Listing - [select for diffs]
Modified Wed Jan 2 13:05:28 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5561
sync with 9 stable

Revision 5561 - Directory Listing - [select for diffs]
Modified Wed Jan 2 05:23:37 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5560
set warns 2

Revision 5560 - Directory Listing - [select for diffs]
Modified Wed Jan 2 05:18:54 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5559
set warns 3

Revision 5559 - Directory Listing - [select for diffs]
Modified Tue Jan 1 23:18:01 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5558
third party code.. warns 3

Revision 5558 - Directory Listing - [select for diffs]
Modified Tue Jan 1 23:11:02 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5557
warns 3

Revision 5557 - Directory Listing - [select for diffs]
Modified Tue Jan 1 23:00:24 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5556
fix compile error

Revision 5556 - Directory Listing - [select for diffs]
Modified Tue Jan 1 22:52:29 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5555
fix some warnings

Revision 5555 - Directory Listing - [select for diffs]
Modified Tue Jan 1 18:03:29 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5554
sync

Revision 5554 - Directory Listing - [select for diffs]
Modified Tue Jan 1 17:42:43 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5553
tag

Revision 5553 - Directory Listing - [select for diffs]
Modified Tue Jan 1 17:42:08 2013 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5552
sync with freebsd

Revision 5552 - Directory Listing - [select for diffs]
Modified Mon Dec 31 22:21:33 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5551
add missing files

Revision 5551 - Directory Listing - [select for diffs]
Modified Mon Dec 31 22:06:14 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5550
remove unused files

Revision 5550 - Directory Listing - [select for diffs]
Modified Mon Dec 31 21:59:42 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5549
merge

Revision 5549 - Directory Listing - [select for diffs]
Modified Mon Dec 31 21:59:09 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5548
drop old files.

Revision 5548 - Directory Listing - [select for diffs]
Modified Mon Dec 31 21:54:15 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5547
update acpi to 3.0 spec

Revision 5547 - Directory Listing - [select for diffs]
Modified Mon Dec 31 19:50:14 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5546
Sync up

Revision 5546 - Directory Listing - [select for diffs]
Modified Mon Dec 31 19:40:48 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5545
warns 0

Revision 5545 - Directory Listing - [select for diffs]
Modified Mon Dec 31 19:32:23 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5544
set warns 0

Revision 5544 - Directory Listing - [select for diffs]
Modified Mon Dec 31 19:31:32 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5543
drop sdiff

Revision 5543 - Directory Listing - [select for diffs]
Modified Mon Dec 31 19:31:01 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5542
keep using openbsd sdiff

Revision 5542 - Directory Listing - [select for diffs]
Modified Mon Dec 31 19:26:49 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5541
set warns 0

Revision 5541 - Directory Listing - [select for diffs]
Modified Mon Dec 31 19:07:59 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5540
switch to tty window size struct

Revision 5540 - Directory Listing - [select for diffs]
Modified Mon Dec 31 17:14:39 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5539
add missing include for tty entries

Revision 5539 - Directory Listing - [select for diffs]
Modified Mon Dec 31 16:19:06 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5538
warns 1

Revision 5538 - Directory Listing - [select for diffs]
Modified Mon Dec 31 08:34:54 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5537
fix usage prototype warning.  remove advertising clause per ucb letter

Revision 5537 - Directory Listing - [select for diffs]
Modified Mon Dec 31 08:16:48 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5536
update defines and strealine tags to be more realistic

Revision 5536 - Directory Listing - [select for diffs]
Modified Mon Dec 31 08:14:44 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5535
on second thought, use warns 1

Revision 5535 - Directory Listing - [select for diffs]
Modified Mon Dec 31 08:14:04 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5534
lower warns and make links to xz less pipe

Revision 5534 - Directory Listing - [select for diffs]
Modified Mon Dec 31 08:11:32 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5533
teach about xz & lzma containers

Revision 5533 - Directory Listing - [select for diffs]
Modified Mon Dec 31 08:08:11 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5532
tag & whitespace

Revision 5532 - Directory Listing - [select for diffs]
Modified Mon Dec 31 08:06:18 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5531
get rid of some warnings. conditionalize inet6

Revision 5531 - Directory Listing - [select for diffs]
Modified Mon Dec 31 07:59:01 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5530
drop warns level

Revision 5530 - Directory Listing - [select for diffs]
Modified Mon Dec 31 07:53:49 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5529
fix tag

Revision 5529 - Directory Listing - [select for diffs]
Modified Mon Dec 31 07:53:13 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5528
move contents to src/contrib/ee and update to 1.5.0

Revision 5528 - Directory Listing - [select for diffs]
Modified Mon Dec 31 07:47:11 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5526
tag

Revision 5526 - Directory Listing - [select for diffs]
Modified Mon Dec 31 07:46:38 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5524
This commit was generated by cvs2svn to compensate for changes in r5525,
which included commits to RCS files with non-trunk default branches.
Revision 5524 - Directory Listing - [select for diffs]
Modified Sun Dec 30 22:24:03 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5523
modernize usage()

Revision 5523 - Directory Listing - [select for diffs]
Modified Sun Dec 30 20:20:10 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5522
add missing header, fix prototype for usage

Revision 5522 - Directory Listing - [select for diffs]
Modified Sun Dec 30 17:22:08 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5521
fix some compiler warnings

Revision 5521 - Directory Listing - [select for diffs]
Modified Sun Dec 30 04:53:27 2012 UTC (11 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 5520
untag

Revision 5520 - Directory Listing - [select for diffs]
Modified Sat Dec 29 23:23:58 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5519
document examples, strip old freebsd tags, fix mail aliases

Revision 5519 - Directory Listing - [select for diffs]
Modified Sat Dec 29 23:19:07 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5518
sync up man pages.

Revision 5518 - Directory Listing - [select for diffs]
Modified Sat Dec 29 21:58:59 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5517
add makedev.3

Revision 5517 - Directory Listing - [select for diffs]
Modified Sat Dec 29 17:36:03 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5516
sync up

Revision 5516 - Directory Listing - [select for diffs]
Modified Sat Dec 29 17:01:15 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5515
sync up with world changes

Revision 5515 - Directory Listing - [select for diffs]
Modified Sat Dec 29 16:29:56 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5514
add new man pages

Revision 5514 - Directory Listing - [select for diffs]
Modified Sat Dec 29 16:29:12 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5513
Sync up man pages

Revision 5513 - Directory Listing - [select for diffs]
Modified Sat Dec 29 16:26:59 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5512
shut up warning.

Revision 5512 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:59:27 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5511
sync up man pages

Revision 5511 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:50:06 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5510
set default warns

Revision 5510 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:48:09 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5509
Remove pppd

Revision 5509 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:45:09 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5508
Don't use ?= unnecessarily

Revision 5508 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:43:38 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5507
brand

Revision 5507 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:36:20 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5506
tag.

Revision 5506 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:35:45 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5505
brand and tag

Revision 5505 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:34:48 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5504
tag

Revision 5504 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:33:24 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5503
sync with freebsd 9

Revision 5503 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:31:40 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5502
brand

Revision 5502 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:28:45 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5501
Tag.

Revision 5501 - Directory Listing - [select for diffs]
Modified Sat Dec 29 06:27:54 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5500
Modernize

Revision 5500 - Directory Listing - [select for diffs]
Modified Sat Dec 29 05:03:43 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5499
sync with freebsd

Revision 5499 - Directory Listing - [select for diffs]
Modified Sat Dec 29 05:01:01 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5498
tag

Revision 5498 - Directory Listing - [select for diffs]
Modified Sat Dec 29 05:00:01 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5497
sync pnp support with freebsd

Revision 5497 - Directory Listing - [select for diffs]
Modified Sat Dec 29 04:58:21 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5496
sync loader with freebsd

Revision 5496 - Directory Listing - [select for diffs]
Modified Fri Dec 28 22:03:42 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5495
zfs loaders

Revision 5495 - Directory Listing - [select for diffs]
Modified Fri Dec 28 22:03:18 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5494
fix if statement

Revision 5494 - Directory Listing - [select for diffs]
Modified Fri Dec 28 20:20:09 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5493
fix some signal handler issues, missing includes and tag.

Revision 5493 - Directory Listing - [select for diffs]
Modified Fri Dec 28 20:17:17 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5492
fix spelling error

Revision 5492 - Directory Listing - [select for diffs]
Modified Fri Dec 28 20:11:03 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5491
import missing files

Revision 5491 - Directory Listing - [select for diffs]
Modified Fri Dec 28 17:52:37 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5490
add jails readme, fix indent install

Revision 5490 - Directory Listing - [select for diffs]
Modified Fri Dec 28 17:49:19 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5489
add indent example

Revision 5489 - Directory Listing - [select for diffs]
Modified Fri Dec 28 17:45:15 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5488
add eltsub.h

Revision 5488 - Directory Listing - [select for diffs]
Modified Fri Dec 28 17:43:58 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5487
tag

Revision 5487 - Directory Listing - [select for diffs]
Modified Fri Dec 28 17:39:06 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5486
add hast examples, netgraph virtual lan.

Revision 5486 - Directory Listing - [select for diffs]
Modified Fri Dec 28 17:34:52 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5485
add .cshrc example

Revision 5485 - Directory Listing - [select for diffs]
Modified Fri Dec 28 16:52:07 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5484
tag

Revision 5484 - Directory Listing - [select for diffs]
Modified Fri Dec 28 16:46:47 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5483
csh

Revision 5483 - Directory Listing - [select for diffs]
Modified Fri Dec 28 08:53:33 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5482
Fix build.

Revision 5482 - Directory Listing - [select for diffs]
Modified Fri Dec 28 03:20:26 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5481
use new format for options

Revision 5481 - Directory Listing - [select for diffs]
Modified Fri Dec 28 03:18:52 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5480
remove slip & pppd related examples.  add witness

Revision 5480 - Directory Listing - [select for diffs]
Modified Fri Dec 28 03:14:52 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5479
add words

Revision 5479 - Directory Listing - [select for diffs]
Modified Fri Dec 28 03:13:20 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5478
Change sort order

Revision 5478 - Directory Listing - [select for diffs]
Modified Fri Dec 28 03:07:22 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5477
add lpd docs

Revision 5477 - Directory Listing - [select for diffs]
Modified Fri Dec 28 03:06:01 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5476
dc and bc docs

Revision 5476 - Directory Listing - [select for diffs]
Modified Fri Dec 28 03:05:49 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5475
*** empty log message ***

Revision 5475 - Directory Listing - [select for diffs]
Modified Fri Dec 28 03:03:51 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5474
add intel iwn and llvm documentation.

Revision 5474 - Directory Listing - [select for diffs]
Modified Fri Dec 28 02:59:57 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5473
unbreak world

Revision 5473 - Directory Listing - [select for diffs]
Modified Thu Dec 27 19:07:32 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5472
Revert arc4random removal

Revision 5472 - Directory Listing - [select for diffs]
Modified Thu Dec 27 08:51:58 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5471
modify build

Revision 5471 - Directory Listing - [select for diffs]
Modified Wed Dec 26 20:06:07 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5470
sync with freebsd 9 stable / openbsd

Revision 5470 - Directory Listing - [select for diffs]
Modified Wed Dec 26 18:12:18 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5469
sync with freebsd/openbsd

Revision 5469 - Directory Listing - [select for diffs]
Modified Wed Dec 26 01:04:58 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5468
sync with freebsd 9 stable

Revision 5468 - Directory Listing - [select for diffs]
Modified Tue Dec 25 19:35:19 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5467
aes xts

Revision 5467 - Directory Listing - [select for diffs]
Modified Tue Dec 25 14:18:44 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5466
set low warns

Revision 5466 - Directory Listing - [select for diffs]
Modified Mon Dec 24 12:10:43 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5465
add modifications from freebsd 9 for ipsec, etc

Revision 5465 - Directory Listing - [select for diffs]
Modified Sat Dec 22 20:20:56 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5464
sync

Revision 5464 - Directory Listing - [select for diffs]
Modified Sat Dec 22 20:05:25 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5463
sync

Revision 5463 - Directory Listing - [select for diffs]
Modified Sat Dec 22 16:27:24 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5462
tag

Revision 5462 - Directory Listing - [select for diffs]
Modified Sat Dec 22 16:23:56 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5461
sync

Revision 5461 - Directory Listing - [select for diffs]
Modified Sat Dec 22 15:42:07 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5460
tag

Revision 5460 - Directory Listing - [select for diffs]
Modified Sat Dec 22 15:41:36 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5459
sync

Revision 5459 - Directory Listing - [select for diffs]
Modified Fri Dec 21 04:00:01 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5458
add opt_inet6.h

Revision 5458 - Directory Listing - [select for diffs]
Modified Fri Dec 21 03:48:04 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5456
Resolve conflicts

Revision 5456 - Directory Listing - [select for diffs]
Modified Fri Dec 21 03:41:54 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5455
remove unused files

Revision 5455 - Directory Listing - [select for diffs]
Modified Thu Dec 20 12:58:51 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5454
sync and tag

Revision 5454 - Directory Listing - [select for diffs]
Modified Thu Dec 20 03:44:11 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5453
remove advertising clause, tag and fix dump protocol

Revision 5453 - Directory Listing - [select for diffs]
Modified Thu Dec 20 00:18:24 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5452
bump shared lib, warns 0, tag

Revision 5452 - Directory Listing - [select for diffs]
Modified Thu Dec 20 00:17:59 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5451
sync & tag

Revision 5451 - Directory Listing - [select for diffs]
Modified Thu Dec 20 00:17:21 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5450
tag

Revision 5450 - Directory Listing - [select for diffs]
Modified Thu Dec 20 00:17:05 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5449
sync

Revision 5449 - Directory Listing - [select for diffs]
Modified Thu Dec 20 00:15:47 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5448
tag & warns 2

Revision 5448 - Directory Listing - [select for diffs]
Modified Thu Dec 20 00:14:49 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5447
tag, warns 3

Revision 5447 - Directory Listing - [select for diffs]
Modified Wed Dec 19 13:33:48 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5446
warns 2

Revision 5446 - Directory Listing - [select for diffs]
Modified Wed Dec 19 03:26:35 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5445
sync and tag

Revision 5445 - Directory Listing - [select for diffs]
Modified Wed Dec 19 02:54:53 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5444
warns 0

Revision 5444 - Directory Listing - [select for diffs]
Modified Wed Dec 19 02:26:25 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5443
bump shared lib version and set warns

Revision 5443 - Directory Listing - [select for diffs]
Modified Wed Dec 19 00:59:17 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5442
turn off warnings.

Revision 5442 - Directory Listing - [select for diffs]
Modified Wed Dec 19 00:58:23 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5441
sync with freebsd 9

Revision 5441 - Directory Listing - [select for diffs]
Modified Sun Dec 16 19:20:34 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5440
tag and set warns 2

Revision 5440 - Directory Listing - [select for diffs]
Modified Sun Dec 16 18:58:54 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5438
s/FreeBSD/MidnightBSD

Revision 5438 - Directory Listing - [select for diffs]
Modified Sun Dec 16 18:53:27 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5436
This commit was generated by cvs2svn to compensate for changes in r5437,
which included commits to RCS files with non-trunk default branches.
Revision 5436 - Directory Listing - [select for diffs]
Modified Sun Dec 16 16:41:50 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5435
Bump shared lib ver & set warns 6

Revision 5435 - Directory Listing - [select for diffs]
Modified Sat Dec 8 18:27:06 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5434
Update dtrace and zfs tools

Revision 5434 - Directory Listing - [select for diffs]
Modified Sat Dec 8 18:26:07 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5433
add g++ man page

Revision 5433 - Directory Listing - [select for diffs]
Modified Thu Dec 6 13:21:50 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5432
Update zfs command to sync with zfs v28

Revision 5432 - Directory Listing - [select for diffs]
Modified Wed Dec 5 04:43:01 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5431
freebsd brand

Revision 5431 - Directory Listing - [select for diffs]
Modified Tue Dec 4 03:12:03 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5430
tag

Revision 5430 - Directory Listing - [select for diffs]
Modified Mon Dec 3 00:52:29 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5429
these directions need work as they're from the old setup, but the code moved here so give a hint

Revision 5429 - Directory Listing - [select for diffs]
Modified Mon Dec 3 00:52:01 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5428
add ctime(3) man page and switch to older, ported versions of zdump, zic and localtime.

Revision 5428 - Directory Listing - [select for diffs]
Modified Sun Dec 2 06:52:43 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5427
Fix openbsd fingerprints and typo.

Revision 5427 - Directory Listing - [select for diffs]
Modified Sun Dec 2 06:49:56 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5426
add groups for hast and ftp

Revision 5426 - Directory Listing - [select for diffs]
Modified Sun Dec 2 06:46:54 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5425
update command for reading messages.

Revision 5425 - Directory Listing - [select for diffs]
Modified Sun Dec 2 06:46:10 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5424
add missing protocols.

Revision 5424 - Directory Listing - [select for diffs]
Modified Sun Dec 2 06:44:36 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5423
use tcp by default

Revision 5423 - Directory Listing - [select for diffs]
Modified Sun Dec 2 06:39:28 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5422
remove slip configuration

Revision 5422 - Directory Listing - [select for diffs]
Modified Sun Dec 2 06:37:09 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5421
add several additional services

Revision 5421 - Directory Listing - [select for diffs]
Modified Sun Dec 2 06:32:49 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5420
remove fbsd tag

Revision 5420 - Directory Listing - [select for diffs]
Modified Sun Dec 2 06:31:46 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5419
mark unused and get rid of unused headers

Revision 5419 - Directory Listing - [select for diffs]
Modified Sun Dec 2 06:26:32 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5418
fix -b handling on 64bit arch.  don't prototype main.  remove bs include of tzfile.h

Revision 5418 - Directory Listing - [select for diffs]
Modified Sun Dec 2 04:22:23 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5417
use new code

Revision 5417 - Directory Listing - [select for diffs]
Modified Sun Dec 2 03:42:25 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5416
use new tzdata file build (src/contrib/tzdata)

Revision 5416 - Directory Listing - [select for diffs]
Modified Sun Dec 2 03:36:54 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5414
fix build path

Revision 5414 - Directory Listing - [select for diffs]
Modified Sun Dec 2 00:10:08 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5412
Vendor import

Revision 5412 - Directory Listing - [select for diffs]
Modified Sun Dec 2 00:08:52 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5411
Vendor import.

Revision 5411 - Directory Listing - [select for diffs]
Modified Sat Dec 1 22:04:39 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5410
tag

Revision 5410 - Directory Listing - [select for diffs]
Modified Sat Dec 1 22:03:39 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5409
add new man pages

Revision 5409 - Directory Listing - [select for diffs]
Modified Sat Dec 1 22:03:22 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5408
sync with kernel changes, freebsd 9

Revision 5408 - Directory Listing - [select for diffs]
Modified Sat Dec 1 21:42:48 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5407
Merge changes

Revision 5407 - Directory Listing - [select for diffs]
Modified Sat Dec 1 19:34:52 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5406
fix taging

Revision 5406 - Directory Listing - [select for diffs]
Modified Sat Dec 1 19:31:31 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5405
tag & sync with freebsd

Revision 5405 - Directory Listing - [select for diffs]
Modified Sat Dec 1 14:51:31 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5404
tag.

drop atm.

Revision 5404 - Directory Listing - [select for diffs]
Modified Sat Dec 1 14:50:50 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5403
menu overhaul.  attempt to work with usb flash drives

Revision 5403 - Directory Listing - [select for diffs]
Modified Sat Dec 1 14:50:25 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5402
utmpx

Revision 5402 - Directory Listing - [select for diffs]
Modified Sat Dec 1 14:50:15 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5401
tag

Revision 5401 - Directory Listing - [select for diffs]
Modified Fri Nov 30 13:16:46 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5400
add missing files from last commit

Revision 5400 - Directory Listing - [select for diffs]
Modified Fri Nov 30 13:16:10 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5399
Sync rrenumd(8), rtadvd(8), rtprio and rtsold(8) with FreeBSD 9

Revision 5399 - Directory Listing - [select for diffs]
Modified Fri Nov 30 13:13:27 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5398
utmpx compatible. obtained from: FreeBSD

Revision 5398 - Directory Listing - [select for diffs]
Modified Thu Nov 29 23:28:21 2012 UTC (11 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 5397
remove raycontrol

Revision 5397 - Directory Listing - [select for diffs]
Modified Thu Nov 29 12:58:16 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5396
Modernize build environment.

temporarily disable mpt utility until build issue is resolved.

sync ppp, nghook, service, services_mkdb with freebsd 9

Revision 5396 - Directory Listing - [select for diffs]
Modified Thu Nov 29 12:57:00 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5395
remove unsupported code

Revision 5395 - Directory Listing - [select for diffs]
Modified Thu Nov 29 12:56:33 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5394
cleanup & modernize

Revision 5394 - Directory Listing - [select for diffs]
Modified Thu Nov 29 12:55:35 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5393
sync with freebsd 9

Revision 5393 - Directory Listing - [select for diffs]
Modified Thu Nov 29 12:55:09 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5392
constify

Revision 5392 - Directory Listing - [select for diffs]
Modified Thu Nov 29 12:54:40 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5391
attribute name length is unsigned.  Obtained from: FreeBSD

Revision 5391 - Directory Listing - [select for diffs]
Modified Thu Nov 29 12:53:08 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5390
set warns level

Revision 5390 - Directory Listing - [select for diffs]
Modified Thu Nov 29 03:05:21 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5389
sync with freebsd 9 stable

Revision 5389 - Directory Listing - [select for diffs]
Modified Thu Nov 29 01:07:34 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5388
fix build.

Revision 5388 - Directory Listing - [select for diffs]
Modified Wed Nov 28 23:11:26 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5387
set warns

Revision 5387 - Directory Listing - [select for diffs]
Modified Wed Nov 28 23:10:50 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5386
*** empty log message ***

Revision 5386 - Directory Listing - [select for diffs]
Modified Wed Nov 28 23:10:29 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5385
Sync up

Revision 5385 - Directory Listing - [select for diffs]
Modified Tue Nov 27 02:45:17 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5384
drop useless tags that are causing build errors

Revision 5384 - Directory Listing - [select for diffs]
Modified Tue Nov 27 01:58:17 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5383
set warns

Revision 5383 - Directory Listing - [select for diffs]
Modified Tue Nov 27 01:44:46 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5382
remove unused drivers.

sync several features with freebsd 9 stable

Revision 5382 - Directory Listing - [select for diffs]
Modified Tue Nov 27 01:42:16 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5381
add descr_compat

Revision 5381 - Directory Listing - [select for diffs]
Modified Tue Nov 27 01:41:37 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5380
add sha512

Revision 5380 - Directory Listing - [select for diffs]
Modified Tue Nov 27 01:40:57 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5379
*** empty log message ***

Revision 5379 - Directory Listing - [select for diffs]
Modified Tue Nov 27 01:40:20 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5378
tag

Revision 5378 - Directory Listing - [select for diffs]
Modified Tue Nov 27 01:39:42 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5377
sync with freebsd

Revision 5377 - Directory Listing - [select for diffs]
Modified Tue Nov 27 01:37:49 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5376
update and tag

Revision 5376 - Directory Listing - [select for diffs]
Modified Tue Nov 27 01:36:44 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5375
bump shared lib

Revision 5375 - Directory Listing - [select for diffs]
Modified Sun Nov 25 22:01:14 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5374
bump for new version

Revision 5374 - Directory Listing - [select for diffs]
Modified Sun Nov 25 21:59:52 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5373
tag

Revision 5373 - Directory Listing - [select for diffs]
Modified Sun Nov 25 21:59:39 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5372
bump shared lib version

Revision 5372 - Directory Listing - [select for diffs]
Modified Fri Nov 23 06:43:58 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5371
add some options.

Revision 5371 - Directory Listing - [select for diffs]
Modified Fri Nov 23 06:13:37 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5370
set os

Revision 5370 - Directory Listing - [select for diffs]
Modified Fri Nov 23 06:08:34 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5369
tag

Revision 5369 - Directory Listing - [select for diffs]
Modified Fri Nov 23 06:02:40 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5368
tag & add xen hypervisor kernel config

Revision 5368 - Directory Listing - [select for diffs]
Modified Fri Nov 23 05:56:02 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5367
Add utilities for new usb stack and drop usbdevs.

Do some refactoring on the Makefile

Revision 5367 - Directory Listing - [select for diffs]
Modified Fri Nov 23 05:54:09 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5366
tag

Revision 5366 - Directory Listing - [select for diffs]
Modified Fri Nov 23 04:42:45 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5365
tag

Revision 5365 - Directory Listing - [select for diffs]
Modified Fri Nov 23 04:38:24 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5364
tag & format

Revision 5364 - Directory Listing - [select for diffs]
Modified Fri Nov 23 04:30:14 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5363
utmpx

Revision 5363 - Directory Listing - [select for diffs]
Modified Fri Nov 23 01:59:03 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5362
Sync with FreeBSD 9 stable

Revision 5362 - Directory Listing - [select for diffs]
Modified Fri Nov 23 01:16:22 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5361
Sync with FreeBSD 9 stable

Revision 5361 - Directory Listing - [select for diffs]
Modified Thu Nov 22 19:13:21 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5360
very bad code.. warns 0

Revision 5360 - Directory Listing - [select for diffs]
Modified Thu Nov 22 19:12:52 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5359
warns 1

Revision 5359 - Directory Listing - [select for diffs]
Modified Wed Nov 21 21:48:18 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5358
Fix for new build environment

Revision 5358 - Directory Listing - [select for diffs]
Modified Wed Nov 21 21:47:58 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5357
Sync with freebsd

Revision 5357 - Directory Listing - [select for diffs]
Modified Wed Nov 21 21:36:53 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5356
sync with freebsd 9 stable

Revision 5356 - Directory Listing - [select for diffs]
Modified Wed Nov 21 21:36:31 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5355
Sync with freebsd 9 stable

Revision 5355 - Directory Listing - [select for diffs]
Modified Wed Nov 21 21:36:13 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5354
utmpx :)

Revision 5354 - Directory Listing - [select for diffs]
Modified Sat Nov 17 19:33:53 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5353
add missing file

Revision 5353 - Directory Listing - [select for diffs]
Modified Sat Nov 17 19:32:55 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5352
reactor utilities

Revision 5352 - Directory Listing - [select for diffs]
Modified Sat Nov 17 19:14:34 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5351
directly use subdir

Revision 5351 - Directory Listing - [select for diffs]
Modified Sat Nov 17 02:22:14 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5350
add missing files

Revision 5350 - Directory Listing - [select for diffs]
Modified Sat Nov 17 02:20:57 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5349
Update and sync with freebsd

Revision 5349 - Directory Listing - [select for diffs]
Modified Thu Nov 15 22:37:04 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5348
sync with freebsd

Revision 5348 - Directory Listing - [select for diffs]
Modified Thu Nov 15 22:35:22 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5347
remove unused file, tag

Revision 5347 - Directory Listing - [select for diffs]
Modified Thu Nov 15 12:57:12 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5346
sync with freebsd 9 stable

Revision 5346 - Directory Listing - [select for diffs]
Modified Thu Nov 15 01:15:09 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5345
oops forgot to add this

Revision 5345 - Directory Listing - [select for diffs]
Modified Thu Nov 15 01:14:43 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5344
remove slip stuff

Revision 5344 - Directory Listing - [select for diffs]
Modified Thu Nov 15 00:09:03 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5343
sync with freebsd

Revision 5343 - Directory Listing - [select for diffs]
Modified Thu Nov 15 00:05:21 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5342
remove unused files

Revision 5342 - Directory Listing - [select for diffs]
Modified Thu Nov 15 00:01:03 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5341
resolve conflicts

Revision 5341 - Directory Listing - [select for diffs]
Modified Wed Nov 14 23:58:26 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5339
add random function

Revision 5339 - Directory Listing - [select for diffs]
Modified Sun Nov 4 01:55:18 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5338
sync

Revision 5338 - Directory Listing - [select for diffs]
Modified Sat Nov 3 19:11:33 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5337
remove unused stuff and fix arch detection

Revision 5337 - Directory Listing - [select for diffs]
Modified Sat Nov 3 19:09:11 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5336
tag & sync

Revision 5336 - Directory Listing - [select for diffs]
Modified Sat Nov 3 19:08:00 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5335
drop arm/ppc/mips

Revision 5335 - Directory Listing - [select for diffs]
Modified Sat Nov 3 19:07:10 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5334
sync with freebsd 9 stable

Revision 5334 - Directory Listing - [select for diffs]
Modified Sat Nov 3 17:51:31 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5333
don't traverse into diff3 as it's moved to diff/diff3

Revision 5333 - Directory Listing - [select for diffs]
Modified Sat Nov 3 17:46:15 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5332
drop diff directories for new build environment.

Revision 5332 - Directory Listing - [select for diffs]
Modified Sat Nov 3 17:45:46 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5331
gpl3 diff

Revision 5331 - Directory Listing - [select for diffs]
Modified Sat Nov 3 17:45:00 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5330
gpl3 version of difff

Revision 5330 - Directory Listing - [select for diffs]
Modified Fri Nov 2 21:19:50 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5329
drop patching.  part of this commit is missing

Revision 5329 - Directory Listing - [select for diffs]
Modified Fri Nov 2 18:12:12 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5328
try to modernize kerberos setup

Revision 5328 - Directory Listing - [select for diffs]
Modified Thu Nov 1 14:47:07 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5327
sync with freebsd 9 and tag

Revision 5327 - Directory Listing - [select for diffs]
Modified Wed Oct 31 20:01:33 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5326
tag & sync

Revision 5326 - Directory Listing - [select for diffs]
Modified Wed Oct 31 19:22:36 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5325
add missing files

Revision 5325 - Directory Listing - [select for diffs]
Modified Wed Oct 31 19:19:02 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5324
merge

Revision 5324 - Directory Listing - [select for diffs]
Modified Wed Oct 31 19:18:08 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5322
This commit was generated by cvs2svn to compensate for changes in r5323,
which included commits to RCS files with non-trunk default branches.
Revision 5322 - Directory Listing - [select for diffs]
Modified Wed Oct 31 19:16:36 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5321
make warns 2

Revision 5321 - Directory Listing - [select for diffs]
Modified Wed Oct 31 18:06:38 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5320
tag

Revision 5320 - Directory Listing - [select for diffs]
Modified Tue Oct 30 22:18:03 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5319
sync with freebsd 9 stable

Revision 5319 - Directory Listing - [select for diffs]
Modified Tue Oct 30 16:57:43 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5318
sync with 9 stable

Revision 5318 - Directory Listing - [select for diffs]
Modified Tue Oct 30 16:29:45 2012 UTC (11 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 5317
update md and sync to freebsd 9 stable

Revision 5317 - Directory Listing - [select for diffs]
Modified Mon Oct 29 21:22:24 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5316
bump for new current

Revision 5316 - Directory Listing - [select for diffs]
Modified Mon Oct 29 21:21:58 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5315
remove libautofs

Revision 5315 - Directory Listing - [select for diffs]
Modified Mon Oct 29 21:18:55 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5314
remove regexp

Revision 5314 - Directory Listing - [select for diffs]
Modified Mon Oct 29 21:15:08 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5313
*** empty log message ***

Revision 5313 - Directory Listing - [select for diffs]
Modified Mon Oct 29 21:14:53 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5312
Sync with freebsd 9-stable

Revision 5312 - Directory Listing - [select for diffs]
Modified Mon Oct 29 21:10:20 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5311
sync with freebsd 9

Revision 5311 - Directory Listing - [select for diffs]
Modified Mon Oct 29 20:54:17 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5310
Sync & tag

Revision 5310 - Directory Listing - [select for diffs]
Modified Sun Oct 28 20:06:05 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5309
fix casting and size handling

Revision 5309 - Directory Listing - [select for diffs]
Modified Sun Oct 28 20:03:05 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5308
update time lookup code

Revision 5308 - Directory Listing - [select for diffs]
Modified Sun Oct 28 20:01:35 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5307
remove military server lookups

Revision 5307 - Directory Listing - [select for diffs]
Modified Sun Oct 28 19:23:29 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5306
the new world order

Revision 5306 - Directory Listing - [select for diffs]
Modified Sun Oct 28 19:05:52 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5305
sync with freebsd 9

Revision 5305 - Directory Listing - [select for diffs]
Modified Sat Oct 27 04:59:21 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5304
sync with freebsd, bring up to journal friendly ufs

Revision 5304 - Directory Listing - [select for diffs]
Modified Sat Oct 27 04:57:18 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5303
sync with freebsd

Revision 5303 - Directory Listing - [select for diffs]
Modified Sat Oct 27 04:17:34 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5302
zfs version bump

Revision 5302 - Directory Listing - [select for diffs]
Modified Sat Oct 27 04:15:53 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5301
update zfs version

Revision 5301 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:51:46 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5300
doh

Revision 5300 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:44:42 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5299
sync with freebsd

Revision 5299 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:16:56 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5298
oops.. can't conditionalize inet6 without bsd.own.mk

Revision 5298 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:11:25 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5297
sync with freebsd 9

Revision 5297 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:09:45 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5296
bring in tftpd source from freebsd 9

Revision 5296 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:05:57 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5295
fix build on current

Revision 5295 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:05:01 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5294
warns

Revision 5294 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:04:26 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5293
make compilers happy

Revision 5293 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:03:01 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5292
make clang happy

Revision 5292 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:02:25 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5291
clarify parens, fix man reference and set warns level

Revision 5291 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:01:21 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5290
set warns level

Revision 5290 - Directory Listing - [select for diffs]
Modified Sat Oct 27 03:00:43 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5289
mark unused params and set warns level

Revision 5289 - Directory Listing - [select for diffs]
Modified Sat Oct 27 02:59:49 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5288
utmpx

Revision 5288 - Directory Listing - [select for diffs]
Modified Sat Oct 27 02:58:29 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5287
add warns level

Revision 5287 - Directory Listing - [select for diffs]
Modified Sat Oct 27 02:53:26 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5286
bring in changes from freebsd 9-stable

Revision 5286 - Directory Listing - [select for diffs]
Modified Sat Oct 27 02:51:44 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5285
port to current

Revision 5285 - Directory Listing - [select for diffs]
Modified Sat Oct 27 02:50:42 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5284
set warns

Revision 5284 - Directory Listing - [select for diffs]
Modified Sat Oct 27 02:49:40 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5283
fix casts

Revision 5283 - Directory Listing - [select for diffs]
Modified Sat Oct 27 02:47:23 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5282
set warns level & handle cast intelligently

Revision 5282 - Directory Listing - [select for diffs]
Modified Sat Oct 27 02:47:02 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5281
set warns level & fix typo

Revision 5281 - Directory Listing - [select for diffs]
Modified Fri Oct 26 12:48:34 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5280
zfs & dtrace update

Revision 5280 - Directory Listing - [select for diffs]
Modified Fri Oct 26 04:31:34 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5279
update for new terminal environment

Revision 5279 - Directory Listing - [select for diffs]
Modified Fri Oct 26 04:29:14 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5278
wtmpx

Revision 5278 - Directory Listing - [select for diffs]
Modified Fri Oct 26 04:24:56 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5277
add debug option

Revision 5277 - Directory Listing - [select for diffs]
Modified Fri Oct 26 04:14:28 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5276
update zfs build environment.

Revision 5276 - Directory Listing - [select for diffs]
Modified Fri Oct 26 04:12:43 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5275
don't run lint, warns 6 default

Revision 5275 - Directory Listing - [select for diffs]
Modified Fri Oct 26 04:11:39 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5274
update zfs & dtrace build environment

Revision 5274 - Directory Listing - [select for diffs]
Modified Fri Oct 26 03:56:02 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5273
zfs update

Revision 5273 - Directory Listing - [select for diffs]
Modified Fri Oct 26 03:30:55 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5272
update zfs support

Revision 5272 - Directory Listing - [select for diffs]
Modified Fri Oct 26 03:27:58 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5271
update libavl

Revision 5271 - Directory Listing - [select for diffs]
Modified Fri Oct 26 03:27:07 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5270
turn on warns 0

Revision 5270 - Directory Listing - [select for diffs]
Modified Fri Oct 26 02:54:04 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5269
remove unused files

Revision 5269 - Directory Listing - [select for diffs]
Modified Fri Oct 26 02:52:44 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5268
tls ding

Revision 5268 - Directory Listing - [select for diffs]
Modified Fri Oct 26 01:57:25 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5267
remove unused files

Revision 5267 - Directory Listing - [select for diffs]
Modified Fri Oct 26 01:49:45 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5266
*** empty log message ***

Revision 5266 - Directory Listing - [select for diffs]
Modified Fri Oct 26 00:12:19 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5265
sync with freebsd

Revision 5265 - Directory Listing - [select for diffs]
Modified Thu Oct 25 23:21:34 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5264
sync with freebsd 9 stable

Revision 5264 - Directory Listing - [select for diffs]
Modified Thu Oct 25 13:05:05 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5263
fix build

Revision 5263 - Directory Listing - [select for diffs]
Modified Mon Oct 22 17:05:51 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5262
utmpx

Revision 5262 - Directory Listing - [select for diffs]
Modified Mon Oct 22 17:04:56 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5261
fix mouse module

Revision 5261 - Directory Listing - [select for diffs]
Modified Mon Oct 22 17:04:48 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5260
utmpx now

Revision 5260 - Directory Listing - [select for diffs]
Modified Mon Oct 22 13:27:17 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5259
update config file

Revision 5259 - Directory Listing - [select for diffs]
Modified Sun Oct 21 16:41:21 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5258
tag and add new functionality found in ffreebsd 9

Revision 5258 - Directory Listing - [select for diffs]
Modified Sun Oct 21 16:36:36 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5257
fixup libc

Revision 5257 - Directory Listing - [select for diffs]
Modified Sun Oct 21 16:33:41 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5256
Fixup libc

Revision 5256 - Directory Listing - [select for diffs]
Modified Sun Oct 21 16:33:13 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5255
fixup the symbols file

Revision 5255 - Directory Listing - [select for diffs]
Modified Sat Oct 20 17:17:25 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5254
sync with libc, pthread, and time code changes

Revision 5254 - Directory Listing - [select for diffs]
Modified Sat Oct 20 16:20:20 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5253
tag & sync

Revision 5253 - Directory Listing - [select for diffs]
Modified Sat Oct 20 03:08:32 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5252
add fdevname

Revision 5252 - Directory Listing - [select for diffs]
Modified Sat Oct 20 00:48:26 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5251
add elf utils

Revision 5251 - Directory Listing - [select for diffs]
Modified Fri Oct 19 23:48:40 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5250
add aux.c

Revision 5250 - Directory Listing - [select for diffs]
Modified Fri Oct 19 13:19:37 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5249
revert some of the changes from dragonfly for now.

Revision 5249 - Directory Listing - [select for diffs]
Modified Fri Oct 19 12:54:51 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5248
add the note section

Revision 5248 - Directory Listing - [select for diffs]
Modified Fri Oct 19 02:35:17 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5247
add missing define BT_COUNTER

Revision 5247 - Directory Listing - [select for diffs]
Modified Sun Oct 14 14:46:46 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5246
add amd geode definition

Revision 5246 - Directory Listing - [select for diffs]
Modified Sun Oct 14 14:42:15 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5245
update gcc to a newer 4.2.x build but still under gpl2

Revision 5245 - Directory Listing - [select for diffs]
Modified Sun Oct 14 14:41:12 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5244
fix several warnings

Revision 5244 - Directory Listing - [select for diffs]
Modified Sat Oct 13 20:07:20 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5243
switch over to midnightbsd versions

Revision 5243 - Directory Listing - [select for diffs]
Modified Sat Oct 13 19:26:14 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5242
freebsd 9 stable sync

Revision 5242 - Directory Listing - [select for diffs]
Modified Sat Oct 13 04:16:38 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5241
cleanup merge

Revision 5241 - Directory Listing - [select for diffs]
Modified Fri Oct 12 04:30:57 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5240
sync with freebsd 9 stable

Revision 5240 - Directory Listing - [select for diffs]
Modified Fri Oct 12 04:04:42 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5239
sync with newer opensolaris code

Revision 5239 - Directory Listing - [select for diffs]
Modified Fri Oct 12 03:28:53 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5238
Remove several old usb and network devices that predate the current network and usb stacks. Sync up linux and pf

Revision 5238 - Directory Listing - [select for diffs]
Modified Fri Oct 12 02:04:14 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5237
add the i210

Revision 5237 - Directory Listing - [select for diffs]
Modified Fri Oct 12 01:56:47 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5236
drop unneeded header

Revision 5236 - Directory Listing - [select for diffs]
Modified Fri Oct 12 01:55:34 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5235
switch to MACHINE_CPUARCH

Revision 5235 - Directory Listing - [select for diffs]
Modified Fri Oct 12 01:53:53 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5234
Update several kernel modules with the new kernel environment.

Drop ancient modules as we've changed net and ata

Revision 5234 - Directory Listing - [select for diffs]
Modified Tue Oct 9 04:08:21 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5233
sync with freebsd 9 stable.

Revision 5233 - Directory Listing - [select for diffs]
Modified Tue Oct 9 04:02:31 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5232
sync with freebsd 9 stable & posix facilities present

Revision 5232 - Directory Listing - [select for diffs]
Modified Tue Oct 9 04:00:51 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5231
update lock mgr

Revision 5231 - Directory Listing - [select for diffs]
Modified Tue Oct 9 03:59:57 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5230
tag

Revision 5230 - Directory Listing - [select for diffs]
Modified Sun Oct 7 16:50:28 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5229
sync with freebsd 9 stable

Revision 5229 - Directory Listing - [select for diffs]
Modified Sun Oct 7 16:40:07 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5228
sync with freebsd 9 stable

Revision 5228 - Directory Listing - [select for diffs]
Modified Sun Oct 7 16:38:38 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5227
use packed

Revision 5227 - Directory Listing - [select for diffs]
Modified Sun Oct 7 16:38:15 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5226
remove unused header

Revision 5226 - Directory Listing - [select for diffs]
Modified Sun Oct 7 16:37:25 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5225
sync watchdog with freebsd 9 stable

Revision 5225 - Directory Listing - [select for diffs]
Modified Sun Oct 7 16:35:16 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5224
Bump freebsd compatibility version.

Revision 5224 - Directory Listing - [select for diffs]
Modified Sun Oct 7 15:13:52 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5223
update comments

Revision 5223 - Directory Listing - [select for diffs]
Modified Sun Oct 7 14:18:18 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5222
use SYSDIR rather than dirname + relative path

Revision 5222 - Directory Listing - [select for diffs]
Modified Sat Oct 6 20:56:46 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5221
sync with freebsd 9 stable.

Revision 5221 - Directory Listing - [select for diffs]
Modified Sat Oct 6 20:36:06 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5220
sync with freebsd 9 stable

Revision 5220 - Directory Listing - [select for diffs]
Modified Sat Oct 6 19:38:15 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5219
sync with freebsd 9 stable

Revision 5219 - Directory Listing - [select for diffs]
Modified Sat Oct 6 19:34:35 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5218
don't use ebusy

Revision 5218 - Directory Listing - [select for diffs]
Modified Sat Oct 6 18:56:57 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5217
sync with freebsd 9 stable

Revision 5217 - Directory Listing - [select for diffs]
Modified Sat Oct 6 04:59:38 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5216
fix serveral bugs.  obtained from freebsd

Revision 5216 - Directory Listing - [select for diffs]
Modified Sat Oct 6 04:58:21 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5215
bring in changes from freebsd 9 stable sources.

Revision 5215 - Directory Listing - [select for diffs]
Modified Sat Oct 6 04:55:49 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5214
bring in improvements from freebsd 9 stable

Revision 5214 - Directory Listing - [select for diffs]
Modified Sat Oct 6 04:54:38 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5213
bring in several improvements from freebsd 9 stable

Revision 5213 - Directory Listing - [select for diffs]
Modified Sat Oct 6 04:54:02 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5212
bring in ggate version 2 from freebsd 9 stable

Revision 5212 - Directory Listing - [select for diffs]
Modified Tue Oct 2 03:48:44 2012 UTC (11 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 5211
setup libc arch rather than machine arch

Revision 5211 - Directory Listing - [select for diffs]
Modified Sat Sep 29 19:25:32 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5210
sync with freebsd 9-stable

Revision 5210 - Directory Listing - [select for diffs]
Modified Sat Sep 29 19:24:40 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5209
sync some off the zfs code

Revision 5209 - Directory Listing - [select for diffs]
Modified Wed Sep 19 13:11:35 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5207
ansi c time.

clean up some conditional tests.

add mpool delete (from FreeBSD 9)

Revision 5207 - Directory Listing - [select for diffs]
Modified Sat Sep 15 23:36:30 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5205
This commit was generated by cvs2svn to compensate for changes in r5206,
which included commits to RCS files with non-trunk default branches.
Revision 5205 - Directory Listing - [select for diffs]
Modified Sat Sep 15 21:59:18 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5202
fix paths for includes

Revision 5202 - Directory Listing - [select for diffs]
Modified Sat Sep 15 18:36:58 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5201
cpufreq is now in x86

Revision 5201 - Directory Listing - [select for diffs]
Modified Sat Sep 15 17:58:22 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5200
tag

Revision 5200 - Directory Listing - [select for diffs]
Modified Sat Sep 15 17:57:20 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5199
sync build tools with freebsd 9 stable

Revision 5199 - Directory Listing - [select for diffs]
Modified Fri Sep 14 23:16:21 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5198
bring in upstream changes from freebsd for UFS2 (journaling)

Revision 5198 - Directory Listing - [select for diffs]
Modified Fri Sep 14 13:38:01 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5197
sync with 9 stable

Revision 5197 - Directory Listing - [select for diffs]
Modified Fri Sep 14 03:56:54 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5196
add core module

Revision 5196 - Directory Listing - [select for diffs]
Modified Fri Sep 14 03:42:03 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5195
tag

Revision 5195 - Directory Listing - [select for diffs]
Modified Fri Sep 14 03:34:46 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5194
close conditional

Revision 5194 - Directory Listing - [select for diffs]
Modified Fri Sep 14 03:28:21 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5193
update module list

Revision 5193 - Directory Listing - [select for diffs]
Modified Fri Sep 14 03:14:14 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5192
no uark

Revision 5192 - Directory Listing - [select for diffs]
Modified Fri Sep 14 03:10:57 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5191
rum not here

Revision 5191 - Directory Listing - [select for diffs]
Modified Fri Sep 14 03:06:09 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5190
update generic kernel

Revision 5190 - Directory Listing - [select for diffs]
Modified Fri Sep 14 03:01:57 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5189
Change default kernel configuration

Revision 5189 - Directory Listing - [select for diffs]
Modified Fri Sep 14 01:54:57 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5188
Sync some things with freebsd 9 stable

Revision 5188 - Directory Listing - [select for diffs]
Modified Fri Sep 14 00:43:10 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5187
Remove awi and fixup makefiles for ral and mii

Revision 5187 - Directory Listing - [select for diffs]
Modified Sun Sep 2 19:26:23 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5186
Detect bad exit status properly and return an MPORT style error.  Most of the calls think this is returning MPORT_OK and it wasn't

Revision 5186 - Directory Listing - [select for diffs]
Modified Sun Sep 2 18:04:10 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5185
Sync libelf with FreeBSD 9-stable sources

Revision 5185 - Directory Listing - [select for diffs]
Modified Sun Sep 2 15:45:23 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5184
in libarchive 3.0.3, it's called archive_version_string

Revision 5184 - Directory Listing - [select for diffs]
Modified Sat Sep 1 22:51:37 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5183
sync with freebsd 9 stable

Revision 5183 - Directory Listing - [select for diffs]
Modified Sat Sep 1 22:48:43 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5182
Merge changes.

Revision 5182 - Directory Listing - [select for diffs]
Modified Sat Sep 1 22:29:25 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5181
add groff mtree

Revision 5181 - Directory Listing - [select for diffs]
Modified Thu Aug 30 13:15:15 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5180
tag, add sizeof function.

Revision 5180 - Directory Listing - [select for diffs]
Modified Thu Aug 30 12:30:58 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5179
Tag and modify for symbol compatibility with FreeBSD 8

Revision 5179 - Directory Listing - [select for diffs]
Modified Thu Aug 30 12:27:52 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5178
Setup the CPP

Revision 5178 - Directory Listing - [select for diffs]
Modified Thu Aug 30 12:27:25 2012 UTC (11 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 5177
Include xdr_sizeof and setup symbols with compatibility for FreeBSD binaries.

Revision 5177 - Directory Listing - [select for diffs]
Modified Thu Aug 30 02:56:10 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5176
Remove libc_r.  It's ancient and doesn't work very well. (libthr instead)

Revision 5176 - Directory Listing - [select for diffs]
Modified Thu Aug 30 00:09:23 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5175
openssl build

Revision 5175 - Directory Listing - [select for diffs]
Modified Sun Aug 26 23:44:11 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5174
kerberos bump requires changes to openssh too

Revision 5174 - Directory Listing - [select for diffs]
Modified Sun Aug 26 23:42:55 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5173
Update OpenSSL part 2 of 2

Revision 5173 - Directory Listing - [select for diffs]
Modified Sun Aug 26 23:40:29 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5172
Update openssl part 1 of 2

Revision 5172 - Directory Listing - [select for diffs]
Modified Sun Aug 26 16:04:54 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5171
remove unused files

Revision 5171 - Directory Listing - [select for diffs]
Modified Sun Aug 26 15:36:17 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5170
remove unused files

Revision 5170 - Directory Listing - [select for diffs]
Modified Sun Aug 26 15:34:44 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5169
remove unused file

Revision 5169 - Directory Listing - [select for diffs]
Modified Sun Aug 26 15:33:13 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5168
remove unused files for this release

Revision 5168 - Directory Listing - [select for diffs]
Modified Sun Aug 26 15:31:23 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5167
resolve conflicts

Revision 5167 - Directory Listing - [select for diffs]
Modified Sun Aug 26 15:13:12 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5166
tag

Revision 5166 - Directory Listing - [select for diffs]
Modified Sun Aug 26 14:11:21 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5165
drop useless arch checks and fix the path to compiler_rt code

Revision 5165 - Directory Listing - [select for diffs]
Modified Sun Aug 26 13:28:35 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5164
sync with upstream

Revision 5164 - Directory Listing - [select for diffs]
Modified Sun Aug 26 13:25:20 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5163
support NFVv4 ACLs

Revision 5163 - Directory Listing - [select for diffs]
Modified Sun Aug 26 13:20:51 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5162
bring up to warns 2

Revision 5162 - Directory Listing - [select for diffs]
Modified Sun Aug 26 13:20:15 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5161
When a file has multiple links to it, don't delete it and print a warning.  -f will override this and delete the file anyway with no warning.

Revision 5161 - Directory Listing - [select for diffs]
Modified Sun Aug 26 13:17:55 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5160
introduce -q flag in realpath(1)

Revision 5160 - Directory Listing - [select for diffs]
Modified Sun Aug 26 13:15:50 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5159
introduce several new options

Revision 5159 - Directory Listing - [select for diffs]
Modified Sun Aug 26 13:09:34 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5158
typos suck

Revision 5158 - Directory Listing - [select for diffs]
Modified Sun Aug 26 00:07:24 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5157
add a & q flags.  Handle ttys better

Revision 5157 - Directory Listing - [select for diffs]
Modified Sun Aug 26 00:04:52 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5156
allow mv to preserve posix ACLs

Revision 5156 - Directory Listing - [select for diffs]
Modified Sun Aug 26 00:00:31 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5155
Add LP flags and document new system calls

Revision 5155 - Directory Listing - [select for diffs]
Modified Sat Aug 25 23:57:38 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5154
document linux compatibility behavior for hostname & -f switch

Revision 5154 - Directory Listing - [select for diffs]
Modified Sat Aug 25 23:55:47 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5153
*** empty log message ***

Revision 5153 - Directory Listing - [select for diffs]
Modified Sat Aug 25 23:55:30 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5152
add versioning

Revision 5152 - Directory Listing - [select for diffs]
Modified Sat Aug 25 23:53:59 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5151
update for modern gcc build setup.

Revision 5151 - Directory Listing - [select for diffs]
Modified Sat Aug 25 23:51:18 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5150
tag & shared lib bump

Revision 5150 - Directory Listing - [select for diffs]
Modified Sat Aug 25 23:50:19 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5149
winning.

Revision 5149 - Directory Listing - [select for diffs]
Modified Sat Aug 25 22:56:48 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5148
modernize.. use TARGET_CPUARCH, INSTALLLIB checks etc

Revision 5148 - Directory Listing - [select for diffs]
Modified Sat Aug 25 22:53:48 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5147
remove unused directories

Revision 5147 - Directory Listing - [select for diffs]
Modified Sat Aug 25 22:49:26 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5146
oops. we need bsd.own.mk here

Revision 5146 - Directory Listing - [select for diffs]
Modified Sat Aug 25 21:17:57 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5145
fix several build problems with gcc and prepare for inclusing of llvm+clang

Revision 5145 - Directory Listing - [select for diffs]
Modified Sat Aug 25 21:09:39 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5144
define gcc version

Revision 5144 - Directory Listing - [select for diffs]
Modified Sat Aug 25 20:59:34 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5143
add support for NFSv4

Revision 5143 - Directory Listing - [select for diffs]
Modified Sat Aug 25 20:17:30 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5142
get rid of warns 0 hack.  we fixed the root problem a few months ago.

Revision 5142 - Directory Listing - [select for diffs]
Modified Sat Aug 25 20:17:04 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5141
fix some spelling errors.

Revision 5141 - Directory Listing - [select for diffs]
Modified Sat Aug 25 20:15:25 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5140
bring in several bug fixes from FreeBSD 9-stable

Revision 5140 - Directory Listing - [select for diffs]
Modified Sat Aug 25 19:58:57 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5139
POSIX fixes.

Revision 5139 - Directory Listing - [select for diffs]
Modified Sat Aug 25 19:57:23 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5138
nfs4 fixes, x flag

Revision 5138 - Directory Listing - [select for diffs]
Modified Sat Aug 25 19:57:10 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5137
nfs4 fixes

Revision 5137 - Directory Listing - [select for diffs]
Modified Sat Aug 25 19:56:52 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5136
document cdrom usage

Revision 5136 - Directory Listing - [select for diffs]
Modified Sat Aug 25 19:46:56 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5135
Add pwait(1), a utility to wait before running a process.

This is similar to the utility from Solaris 8+.  Great for things like rc.subr's wait for pids or interactive use.

Also clarify size contraints with uuidgen(1).

Obtained from: FreeBSD

Revision 5135 - Directory Listing - [select for diffs]
Modified Sat Aug 25 19:40:16 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5134
oops..

Revision 5134 - Directory Listing - [select for diffs]
Modified Sat Aug 25 19:39:54 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5133
tag, make a few local changes

Revision 5133 - Directory Listing - [select for diffs]
Modified Sat Aug 25 16:25:36 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5132
readd a few files that i shouldn't have removed and remove remaining files that are unused.

Revision 5132 - Directory Listing - [select for diffs]
Modified Sat Aug 25 16:04:56 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5131
remove unused files in current release

Revision 5131 - Directory Listing - [select for diffs]
Modified Sat Aug 25 15:54:33 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5130
remove unused files in current release

Revision 5130 - Directory Listing - [select for diffs]
Modified Sun Aug 19 15:33:36 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5128
This commit was generated by cvs2svn to compensate for changes in r5129,
which included commits to RCS files with non-trunk default branches.
Revision 5128 - Directory Listing - [select for diffs]
Modified Sun Aug 19 14:37:22 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5126
This commit was generated by cvs2svn to compensate for changes in r5127,
which included commits to RCS files with non-trunk default branches.
Revision 5126 - Directory Listing - [select for diffs]
Modified Sun Aug 19 14:08:21 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5125
Drop libkse.

tag several files.

Revision 5125 - Directory Listing - [select for diffs]
Modified Sun Aug 19 14:06:15 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5123
This commit was generated by cvs2svn to compensate for changes in r5124,
which included commits to RCS files with non-trunk default branches.
Revision 5123 - Directory Listing - [select for diffs]
Modified Sun Aug 19 14:05:10 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5122
Update build environment to support llvm + clang, remove choice on threading library.. we're only going to use libthr now. Try to fix cross builds.  This will still fail on perl at the moment.

Revision 5122 - Directory Listing - [select for diffs]
Modified Sun Aug 19 13:55:16 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5120
This commit was generated by cvs2svn to compensate for changes in r5121,
which included commits to RCS files with non-trunk default branches.
Revision 5120 - Directory Listing - [select for diffs]
Modified Sun Aug 19 13:54:04 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5119
Enable several conditional flags.  Fix some warnings.

Revision 5119 - Directory Listing - [select for diffs]
Modified Sun Aug 19 03:37:47 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5118
add new conditional for PMC

Revision 5118 - Directory Listing - [select for diffs]
Modified Sat Aug 18 22:48:33 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5116
This commit was generated by cvs2svn to compensate for changes in r5117,
which included commits to RCS files with non-trunk default branches.
Revision 5116 - Directory Listing - [select for diffs]
Modified Sat Aug 18 22:41:08 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5114
This commit was generated by cvs2svn to compensate for changes in r5115,
which included commits to RCS files with non-trunk default branches.
Revision 5114 - Directory Listing - [select for diffs]
Modified Sat Aug 18 22:38:06 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5112
This commit was generated by cvs2svn to compensate for changes in r5113,
which included commits to RCS files with non-trunk default branches.
Revision 5112 - Directory Listing - [select for diffs]
Modified Sat Aug 18 20:38:47 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5111
tag

Revision 5111 - Directory Listing - [select for diffs]
Modified Sat Aug 18 20:34:58 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5109
This commit was generated by cvs2svn to compensate for changes in r5110,
which included commits to RCS files with non-trunk default branches.
Revision 5109 - Directory Listing - [select for diffs]
Modified Sat Aug 18 20:29:39 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5107
This commit was generated by cvs2svn to compensate for changes in r5108,
which included commits to RCS files with non-trunk default branches.
Revision 5107 - Directory Listing - [select for diffs]
Modified Sat Aug 18 20:27:20 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5105
resolve conflicts

Revision 5105 - Directory Listing - [select for diffs]
Modified Sat Aug 18 20:18:27 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5104
set default warns at 3

Revision 5104 - Directory Listing - [select for diffs]
Modified Sun Aug 12 13:55:45 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5102
This commit was generated by cvs2svn to compensate for changes in r5103,
which included commits to RCS files with non-trunk default branches.
Revision 5102 - Directory Listing - [select for diffs]
Modified Mon Aug 6 23:26:42 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5101
resolve a security vulnerability in BIND dnssec which can cause named to crash under high load.

Revision 5101 - Directory Listing - [select for diffs]
Modified Mon Aug 6 01:56:52 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5100
overhaul mtree setup

Revision 5100 - Directory Listing - [select for diffs]
Modified Mon Aug 6 01:24:57 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5099
merge

Revision 5099 - Directory Listing - [select for diffs]
Modified Mon Aug 6 01:24:36 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5098
Merge in crypto improvements from FreeBSD 9

Revision 5098 - Directory Listing - [select for diffs]
Modified Mon Aug 6 01:16:03 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5097
merge aic(4) from freebsd 9

Revision 5097 - Directory Listing - [select for diffs]
Modified Mon Aug 6 01:15:27 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5096
merge aac(4) from freebsd 9

Revision 5096 - Directory Listing - [select for diffs]
Modified Fri Aug 3 02:32:47 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5095
merge

Revision 5095 - Directory Listing - [select for diffs]
Modified Fri Aug 3 02:26:47 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5094
merge

Revision 5094 - Directory Listing - [select for diffs]
Modified Fri Aug 3 02:14:00 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5093
merge

Revision 5093 - Directory Listing - [select for diffs]
Modified Fri Aug 3 02:01:25 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5092
merge

Revision 5092 - Directory Listing - [select for diffs]
Modified Fri Aug 3 01:59:43 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5091
Merge

Revision 5091 - Directory Listing - [select for diffs]
Modified Fri Aug 3 01:48:40 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5090
merge

Revision 5090 - Directory Listing - [select for diffs]
Modified Fri Aug 3 01:40:12 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5089
merge

Revision 5089 - Directory Listing - [select for diffs]
Modified Fri Aug 3 01:11:23 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5088
merge

Revision 5088 - Directory Listing - [select for diffs]
Modified Fri Aug 3 00:59:05 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5087
merge

Revision 5087 - Directory Listing - [select for diffs]
Modified Fri Aug 3 00:51:06 2012 UTC (11 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 5086
merge

Revision 5086 - Directory Listing - [select for diffs]
Modified Sat Jul 21 23:00:05 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5085
resolve conflicts

Revision 5085 - Directory Listing - [select for diffs]
Modified Sat Jul 21 22:48:20 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5084
fix botched merge

Revision 5084 - Directory Listing - [select for diffs]
Modified Sat Jul 21 22:47:54 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5083
merge

Revision 5083 - Directory Listing - [select for diffs]
Modified Sat Jul 21 22:42:37 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5082
resolve conflicts

Revision 5082 - Directory Listing - [select for diffs]
Modified Sat Jul 21 22:35:27 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5081
merge

Revision 5081 - Directory Listing - [select for diffs]
Modified Sat Jul 21 16:59:58 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5080
resolve conflicts

Revision 5080 - Directory Listing - [select for diffs]
Modified Sat Jul 21 16:50:01 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5079
Resolve conflicts

Revision 5079 - Directory Listing - [select for diffs]
Modified Sat Jul 21 16:47:04 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5078
resolve conflicts

Revision 5078 - Directory Listing - [select for diffs]
Modified Sat Jul 21 16:42:00 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5077
resolve conflicts

Revision 5077 - Directory Listing - [select for diffs]
Modified Sat Jul 21 16:23:10 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5076
resolve conflicts

Revision 5076 - Directory Listing - [select for diffs]
Modified Sat Jul 21 15:17:36 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5074
This commit was generated by cvs2svn to compensate for changes in r5075,
which included commits to RCS files with non-trunk default branches.
Revision 5074 - Directory Listing - [select for diffs]
Modified Sat Jul 21 15:10:07 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5072
This commit was generated by cvs2svn to compensate for changes in r5073,
which included commits to RCS files with non-trunk default branches.
Revision 5072 - Directory Listing - [select for diffs]
Modified Sat Jul 21 14:45:45 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5070
This commit was generated by cvs2svn to compensate for changes in r5071,
which included commits to RCS files with non-trunk default branches.
Revision 5070 - Directory Listing - [select for diffs]
Modified Sat Jul 21 14:35:28 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5068
This commit was generated by cvs2svn to compensate for changes in r5069,
which included commits to RCS files with non-trunk default branches.
Revision 5068 - Directory Listing - [select for diffs]
Modified Sat Jul 21 01:24:08 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5067
Add several options

Revision 5067 - Directory Listing - [select for diffs]
Modified Fri Jul 20 03:02:12 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5066
freshen man page

Revision 5066 - Directory Listing - [select for diffs]
Modified Fri Jul 20 03:00:00 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5065
add N and v flags

Revision 5065 - Directory Listing - [select for diffs]
Modified Fri Jul 20 02:58:16 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5064
change return values and allow for builtin support

Revision 5064 - Directory Listing - [select for diffs]
Modified Fri Jul 20 02:40:53 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5063
Drop objformat. It's always returning elf anyway. Supposedly gnu configure scripts can handle it's absense now.

Revision 5063 - Directory Listing - [select for diffs]
Modified Fri Jul 20 02:38:35 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5061
This commit was generated by cvs2svn to compensate for changes in r5062,
which included commits to RCS files with non-trunk default branches.
Revision 5061 - Directory Listing - [select for diffs]
Modified Fri Jul 20 02:36:57 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5060
drop advertising clause per ucb letter, upstream

Revision 5060 - Directory Listing - [select for diffs]
Modified Fri Jul 20 02:35:25 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5059
sync with freebsd 9-stable

Revision 5059 - Directory Listing - [select for diffs]
Modified Fri Jul 20 02:31:41 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5058
drop advertising clause per UCB letter, upstream

Revision 5058 - Directory Listing - [select for diffs]
Modified Fri Jul 20 02:30:17 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5057
drop documentation

Revision 5057 - Directory Listing - [select for diffs]
Modified Fri Jul 20 02:29:45 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5056
import new functionality from FreeBSD 9-stable including NetBSD compatibility.  Fix path issue

Revision 5056 - Directory Listing - [select for diffs]
Modified Fri Jul 20 02:01:37 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5055
tag

Revision 5055 - Directory Listing - [select for diffs]
Modified Fri Jul 20 01:57:19 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5053
This commit was generated by cvs2svn to compensate for changes in r5054,
which included commits to RCS files with non-trunk default branches.
Revision 5053 - Directory Listing - [select for diffs]
Modified Fri Jul 20 01:51:49 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5052
Fix some bootstrapping problems.

Revision 5052 - Directory Listing - [select for diffs]
Modified Thu Jul 19 04:06:10 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5051
Update ldscripts for binutils import.

Revision 5051 - Directory Listing - [select for diffs]
Modified Thu Jul 19 04:02:59 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5050
Resolve merge conflicts.

Revision 5050 - Directory Listing - [select for diffs]
Modified Thu Jul 19 03:43:22 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5048
This commit was generated by cvs2svn to compensate for changes in r5049,
which included commits to RCS files with non-trunk default branches.
Revision 5048 - Directory Listing - [select for diffs]
Modified Thu Jul 19 03:21:20 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5047
resolve conflicts

Revision 5047 - Directory Listing - [select for diffs]
Modified Thu Jul 19 03:07:01 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5045
This commit was generated by cvs2svn to compensate for changes in r5046,
which included commits to RCS files with non-trunk default branches.
Revision 5045 - Directory Listing - [select for diffs]
Modified Thu Jul 19 02:29:45 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5043
This commit was generated by cvs2svn to compensate for changes in r5044,
which included commits to RCS files with non-trunk default branches.
Revision 5043 - Directory Listing - [select for diffs]
Modified Thu Jul 19 02:27:26 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5041
This commit was generated by cvs2svn to compensate for changes in r5042,
which included commits to RCS files with non-trunk default branches.
Revision 5041 - Directory Listing - [select for diffs]
Modified Sat Jul 14 15:17:00 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5040
Partially revert previous commit with path additions and termios.h. This should partially unbreak world.

Revision 5040 - Directory Listing - [select for diffs]
Modified Fri Jul 13 02:54:27 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5039
regen safely

Revision 5039 - Directory Listing - [select for diffs]
Modified Tue Jul 10 13:27:55 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5038
fix missing includes

Revision 5038 - Directory Listing - [select for diffs]
Modified Tue Jul 10 13:23:14 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5037
gnusort -> bsdsort

Revision 5037 - Directory Listing - [select for diffs]
Modified Tue Jul 10 13:21:54 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5036
during the transition period, install GNU sort as gnusort

Revision 5036 - Directory Listing - [select for diffs]
Modified Tue Jul 10 13:19:32 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5035
Introduce a BSD licensed sort.

Obtained from: FreeBSD.

Revision 5035 - Directory Listing - [select for diffs]
Modified Tue Jul 10 12:51:58 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5034
add perforce style patch support, use malloc

Revision 5034 - Directory Listing - [select for diffs]
Modified Sun Jul 8 19:52:40 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5033
link against iconv

Revision 5033 - Directory Listing - [select for diffs]
Modified Sun Jul 8 17:20:52 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5032
fix symbol name

Revision 5032 - Directory Listing - [select for diffs]
Modified Sun Jul 8 16:19:30 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5031
s/Free/Midnight

Revision 5031 - Directory Listing - [select for diffs]
Modified Sun Jul 8 16:17:14 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5029
document recent imports

Revision 5029 - Directory Listing - [select for diffs]
Modified Sun Jul 8 16:12:19 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5027
This commit was generated by cvs2svn to compensate for changes in r5028,
which included commits to RCS files with non-trunk default branches.
Revision 5027 - Directory Listing - [select for diffs]
Modified Sun Jul 8 16:02:29 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5026
For now, don't get too clever with iconv.h.  The build was broken in some instances

Revision 5026 - Directory Listing - [select for diffs]
Modified Sun Jul 8 15:53:49 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5025
fix some problems with tcsh seg faulting after import of iconv

Revision 5025 - Directory Listing - [select for diffs]
Modified Sun Jul 8 15:16:35 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5024
Introduce 3 new functions into libc
stpncpy(3), strnlen(3) and memrchr(3).

Revision 5024 - Directory Listing - [select for diffs]
Modified Sun Jul 8 05:31:13 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5023
lower warns

Revision 5023 - Directory Listing - [select for diffs]
Modified Sun Jul 8 03:52:17 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5022
cleanup

Revision 5022 - Directory Listing - [select for diffs]
Modified Sat Jul 7 23:34:29 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5021
enable ssh-agent on login

Revision 5021 - Directory Listing - [select for diffs]
Modified Sat Jul 7 23:00:37 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5020
Fix typo; = is useful

Revision 5020 - Directory Listing - [select for diffs]
Modified Sat Jul 7 15:49:21 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5019
turn on ICONV by default

Revision 5019 - Directory Listing - [select for diffs]
Modified Fri Jul 6 12:47:00 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5018
Rename wcwidth -> special_wcwidth.

Work around conflict while retaining behavior.

Revision 5018 - Directory Listing - [select for diffs]
Modified Fri Jul 6 12:46:04 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5016
Rename wcwidth -> special_wcwidth

Work around conflict while retaining behavior.

Revision 5016 - Directory Listing - [select for diffs]
Modified Fri Jul 6 12:23:11 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5013
This commit was generated by cvs2svn to compensate for changes in r5015,
which included commits to RCS files with non-trunk default branches.
Revision 5013 - Directory Listing - [select for diffs]
Modified Fri Jul 6 12:18:04 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5012
add dirname.c

Revision 5012 - Directory Listing - [select for diffs]
Modified Fri Jul 6 12:14:54 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5011
add missing file

Revision 5011 - Directory Listing - [select for diffs]
Modified Fri Jul 6 12:11:34 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5010
re-add

Revision 5010 - Directory Listing - [select for diffs]
Modified Fri Jul 6 02:22:25 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5009
add termios.h

Revision 5009 - Directory Listing - [select for diffs]
Modified Fri Jul 6 02:09:20 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5008
change opensolaris compat path

Revision 5008 - Directory Listing - [select for diffs]
Modified Fri Jul 6 01:32:14 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5007
Make a few modifications for iconv support

Revision 5007 - Directory Listing - [select for diffs]
Modified Wed Jul 4 18:41:34 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5006
This is part of base now

Revision 5006 - Directory Listing - [select for diffs]
Modified Wed Jul 4 18:39:51 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5005
Add test suite for iconv code.

Obtained from: FreeBSD

Revision 5005 - Directory Listing - [select for diffs]
Modified Wed Jul 4 18:37:20 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5004
Add ICONV, but default it to no.

Revision 5004 - Directory Listing - [select for diffs]
Modified Wed Jul 4 18:35:44 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5003
build iconv utilities as needed for bootstrapping. Remove some mkdir stuff that's in mtree now

Revision 5003 - Directory Listing - [select for diffs]
Modified Wed Jul 4 18:34:49 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5002
Add ministat(1) and iconv(1) with related utilities.

Revision 5002 - Directory Listing - [select for diffs]
Modified Wed Jul 4 18:00:39 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5001
i18n files for iconv

Revision 5001 - Directory Listing - [select for diffs]
Modified Wed Jul 4 16:35:52 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 5000
i18n files for iconv

Revision 5000 - Directory Listing - [select for diffs]
Modified Wed Jul 4 16:35:20 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4999
i18n

Revision 4999 - Directory Listing - [select for diffs]
Modified Wed Jul 4 16:18:03 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4998
selective include iconv

Revision 4998 - Directory Listing - [select for diffs]
Modified Wed Jul 4 16:16:25 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4997
Import libiconv code from NetBSD by way of FreeBSD 9 stable

Revision 4997 - Directory Listing - [select for diffs]
Modified Wed Jul 4 16:05:41 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4996
Add i18n paths for libiconv

Revision 4996 - Directory Listing - [select for diffs]
Modified Wed Jul 4 15:54:23 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4995
merge changes between 2.9 and 3.2

Revision 4995 - Directory Listing - [select for diffs]
Modified Wed Jul 4 15:52:56 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4993
This commit was generated by cvs2svn to compensate for changes in r4994,
which included commits to RCS files with non-trunk default branches.
Revision 4993 - Directory Listing - [select for diffs]
Modified Wed Jul 4 15:51:20 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4992
Add a copy of the GPLv3 license.  We're bringing in a GPLv3 app so might as well warn people.

All GPLv3 commits MUST be approved by me (laffer1@)

Revision 4992 - Directory Listing - [select for diffs]
Modified Wed Jul 4 15:47:32 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4991
part of current release now.

Revision 4991 - Directory Listing - [select for diffs]
Modified Wed Jul 4 14:16:42 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4989
merge

Revision 4989 - Directory Listing - [select for diffs]
Modified Wed Jul 4 14:11:43 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4987
This commit was generated by cvs2svn to compensate for changes in r4988,
which included commits to RCS files with non-trunk default branches.
Revision 4987 - Directory Listing - [select for diffs]
Modified Wed Jul 4 13:59:34 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4986
allow 1 and 2 to work in addition to l and r for sdiff

Revision 4986 - Directory Listing - [select for diffs]
Modified Wed Jul 4 13:53:10 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4984
more branding

Revision 4984 - Directory Listing - [select for diffs]
Modified Wed Jul 4 13:48:43 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4983
add kld module

Revision 4983 - Directory Listing - [select for diffs]
Modified Wed Jul 4 13:48:07 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4982
Tag, brand and migrate to MACHINE_CPUARCH

Revision 4982 - Directory Listing - [select for diffs]
Modified Wed Jul 4 13:37:32 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4981
sync kernel gdb with FreeBSD 7.1-RELEASE

Revision 4981 - Directory Listing - [select for diffs]
Modified Wed Jul 4 13:33:50 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4980
Import bug fixes for ACPI from FreeBSD 7-stable

Revision 4980 - Directory Listing - [select for diffs]
Modified Wed Jul 4 03:56:07 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4979
catch up with amdsbwd and cpuctl

Revision 4979 - Directory Listing - [select for diffs]
Modified Wed Jul 4 03:50:16 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4978
Fixup Intel nic build after recent update.  Module was working but not in kernel

Revision 4978 - Directory Listing - [select for diffs]
Modified Sun Jul 1 15:46:31 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4977
Update include paths on x86

Revision 4977 - Directory Listing - [select for diffs]
Modified Sun Jul 1 01:31:50 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4976
drop warns

Revision 4976 - Directory Listing - [select for diffs]
Modified Sun Jul 1 01:04:09 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4975
this is not a mask

Revision 4975 - Directory Listing - [select for diffs]
Modified Sat Jun 30 23:18:31 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4974
honor kflag

Revision 4974 - Directory Listing - [select for diffs]
Modified Sat Jun 30 23:08:37 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4973
Use MACHINE_CPUARCH per the new build style

Revision 4973 - Directory Listing - [select for diffs]
Modified Sat Jun 30 23:08:09 2012 UTC (11 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4972
require libssp

Revision 4972 - Directory Listing - [select for diffs]
Modified Sat Jun 30 03:05:28 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4971
update igb(4) build environment

Revision 4971 - Directory Listing - [select for diffs]
Modified Sat Jun 30 03:04:27 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4970
update intel gigabit nic driver build

Revision 4970 - Directory Listing - [select for diffs]
Modified Sat Jun 30 03:02:16 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4969
Update em(4) and igb(4) Intel network drivers.

Obtained from: FreeBSD 7-stable

Revision 4969 - Directory Listing - [select for diffs]
Modified Sat Jun 30 02:19:15 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4968
mark warns 2

Revision 4968 - Directory Listing - [select for diffs]
Modified Sat Jun 30 02:16:44 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4967
clean up wlandebug code

Revision 4967 - Directory Listing - [select for diffs]
Modified Sat Jun 30 02:11:03 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4966
mark warns 2

Revision 4966 - Directory Listing - [select for diffs]
Modified Sat Jun 30 02:09:21 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4965
ansify

Revision 4965 - Directory Listing - [select for diffs]
Modified Sat Jun 30 01:05:18 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4964
ansify

Revision 4964 - Directory Listing - [select for diffs]
Modified Sat Jun 30 01:01:00 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4963
fix gcc warnings

Revision 4963 - Directory Listing - [select for diffs]
Modified Fri Jun 29 12:58:53 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4962
*** empty log message ***

Revision 4962 - Directory Listing - [select for diffs]
Modified Fri Jun 29 11:52:42 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4961
fix cast

Revision 4961 - Directory Listing - [select for diffs]
Modified Fri Jun 29 11:50:21 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4960
bring warns up to 5

Revision 4960 - Directory Listing - [select for diffs]
Modified Fri Jun 29 11:46:54 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4959
strict aliasing sucks

Revision 4959 - Directory Listing - [select for diffs]
Modified Fri Jun 29 02:32:24 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4958
Fix pointer type

Revision 4958 - Directory Listing - [select for diffs]
Modified Thu Jun 28 23:43:39 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4957
ansify

Revision 4957 - Directory Listing - [select for diffs]
Modified Thu Jun 28 13:18:29 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4956
*** empty log message ***

Revision 4956 - Directory Listing - [select for diffs]
Modified Thu Jun 28 13:17:43 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4955
turn off strict aliasing

Revision 4955 - Directory Listing - [select for diffs]
Modified Thu Jun 28 02:23:17 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4954
ansify

Revision 4954 - Directory Listing - [select for diffs]
Modified Wed Jun 27 22:31:40 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4953
ansi++

Revision 4953 - Directory Listing - [select for diffs]
Modified Wed Jun 27 13:17:41 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4952
fixup for ansi

Revision 4952 - Directory Listing - [select for diffs]
Modified Wed Jun 27 12:26:29 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4951
ansify

Revision 4951 - Directory Listing - [select for diffs]
Modified Wed Jun 27 03:49:09 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4950
use c90

Revision 4950 - Directory Listing - [select for diffs]
Modified Wed Jun 27 02:30:19 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4949
add code to show jail ids part 2 of 2

Revision 4949 - Directory Listing - [select for diffs]
Modified Wed Jun 27 02:29:38 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4948
add code to show jail ids part 1 of 2

Revision 4948 - Directory Listing - [select for diffs]
Modified Tue Jun 26 02:16:55 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4947
drop warns

Revision 4947 - Directory Listing - [select for diffs]
Modified Tue Jun 26 01:14:44 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4946
handle blackhole better

Revision 4946 - Directory Listing - [select for diffs]
Modified Mon Jun 25 04:09:42 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4945
fix last 'missing sentinel in function call' warning

Revision 4945 - Directory Listing - [select for diffs]
Modified Mon Jun 25 02:46:25 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4944
no strict aliasing

Revision 4944 - Directory Listing - [select for diffs]
Modified Mon Jun 25 00:38:11 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4943
*** empty log message ***

Revision 4943 - Directory Listing - [select for diffs]
Modified Sun Jun 24 23:04:33 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4942
modernize

Revision 4942 - Directory Listing - [select for diffs]
Modified Sun Jun 24 20:17:11 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4941
Lower warns in hopes of better build results

Revision 4941 - Directory Listing - [select for diffs]
Modified Sat Jun 16 15:24:53 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4940
cast to avoid unsigned to signed comparison

Revision 4940 - Directory Listing - [select for diffs]
Modified Sat Jun 16 14:37:29 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4939
no strict aliasing

Revision 4939 - Directory Listing - [select for diffs]
Modified Fri Jun 15 23:34:52 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4938
Sync with freebsd 9-stable

Revision 4938 - Directory Listing - [select for diffs]
Modified Fri Jun 15 21:57:57 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4937
lower warns level

Revision 4937 - Directory Listing - [select for diffs]
Modified Fri Jun 15 21:57:36 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4936
cleanup formatting and update license as netbsd has done upstream

Revision 4936 - Directory Listing - [select for diffs]
Modified Fri Jun 15 20:26:51 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4935
silence gcc warning

Revision 4935 - Directory Listing - [select for diffs]
Modified Fri Jun 15 20:11:44 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4934
Switch to use MACHINE_CPUARCH

Revision 4934 - Directory Listing - [select for diffs]
Modified Fri Jun 15 19:35:24 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4933
Sync with upstream

Revision 4933 - Directory Listing - [select for diffs]
Modified Fri Jun 15 04:09:42 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4932
Work around warnings

Revision 4932 - Directory Listing - [select for diffs]
Modified Fri Jun 15 03:46:47 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4931
change default prompt on tcsh, history increased to 1000, and some tweaks to autocomplete.

Revision 4931 - Directory Listing - [select for diffs]
Modified Fri Jun 15 03:38:06 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4930
teach ports about ctf

Revision 4930 - Directory Listing - [select for diffs]
Modified Fri Jun 15 03:27:03 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4929
Sync with upstream

Revision 4929 - Directory Listing - [select for diffs]
Modified Fri Jun 15 02:29:29 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4928
as number lookups ftw

Revision 4928 - Directory Listing - [select for diffs]
Modified Fri Jun 15 02:20:51 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4927
tag

Revision 4927 - Directory Listing - [select for diffs]
Modified Fri Jun 15 02:20:08 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4926
warns 6

Revision 4926 - Directory Listing - [select for diffs]
Modified Fri Jun 15 01:51:37 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4925
add waitpid hack

Revision 4925 - Directory Listing - [select for diffs]
Modified Wed Jun 13 04:14:28 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4924
fix build error.

Revision 4924 - Directory Listing - [select for diffs]
Modified Wed Jun 13 04:13:56 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4923
Update build environment including further conversion to MACHINE_CPUARCH and changes for dtrace/ctf.

Revision 4923 - Directory Listing - [select for diffs]
Modified Wed Jun 13 04:10:29 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4922
Add MidnightBSD, FreeBSD, DragonFly and NetBSD releases to man.

Revision 4922 - Directory Listing - [select for diffs]
Modified Wed Jun 13 02:27:52 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4921
fix several typos

Revision 4921 - Directory Listing - [select for diffs]
Modified Wed Jun 13 02:24:50 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4920
This code is TERRIBLE.  Disable GCC warnings.

Revision 4920 - Directory Listing - [select for diffs]
Modified Wed Jun 13 02:11:42 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4919
document new poweroff command.

Revision 4919 - Directory Listing - [select for diffs]
Modified Wed Jun 13 02:10:30 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4918
create 'poweroff' command from shutdown.  It's equivalent to shutdown -p now

Revision 4918 - Directory Listing - [select for diffs]
Modified Wed Jun 13 02:05:35 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4917
Sync cpu type checking

Revision 4917 - Directory Listing - [select for diffs]
Modified Wed Jun 13 01:46:00 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4916
enable ctf conversion when asked for

Revision 4916 - Directory Listing - [select for diffs]
Modified Tue Jun 12 17:02:02 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4915
fix security issue with non amd cpus on amd64 arch only.  ring 0 escape possible

Revision 4915 - Directory Listing - [select for diffs]
Modified Tue Jun 12 14:41:14 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4914
BIND / cve-2012-1667

Revision 4914 - Directory Listing - [select for diffs]
Modified Tue Jun 12 14:40:09 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4912
Fix for CVE-2012-1667 / bind 9.6.x

Revision 4912 - Directory Listing - [select for diffs]
Modified Sat Jun 9 23:35:49 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4911
Add FEATURE macro to several items.

Revision 4911 - Directory Listing - [select for diffs]
Modified Sat Jun 9 23:24:40 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4910
Drop duplicate freebsd cvs tag

Revision 4910 - Directory Listing - [select for diffs]
Modified Sat Jun 9 23:23:18 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4909
update bsd family tree for 0.2.1 and 0.3 releases

Revision 4909 - Directory Listing - [select for diffs]
Modified Sat Jun 9 23:10:21 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4908
Formatting.

Revision 4908 - Directory Listing - [select for diffs]
Modified Sat Jun 9 23:04:00 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4907
this code sucks.. silence gcc

Revision 4907 - Directory Listing - [select for diffs]
Modified Sun Jun 3 02:44:08 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4906
fix cast problem.

Revision 4906 - Directory Listing - [select for diffs]
Modified Sat Jun 2 23:34:14 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4905
ansify

Revision 4905 - Directory Listing - [select for diffs]
Modified Sat Jun 2 22:43:03 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4904
Fix the preprocessor directive

Revision 4904 - Directory Listing - [select for diffs]
Modified Sat Jun 2 22:01:56 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4903
tag and fix casting problem with gcc4

Revision 4903 - Directory Listing - [select for diffs]
Modified Sat Jun 2 20:35:02 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4902
ansify

Revision 4902 - Directory Listing - [select for diffs]
Modified Sat Jun 2 20:33:57 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4901
Use gnu89... c99 isn't very friendly with gcc 4.2

Revision 4901 - Directory Listing - [select for diffs]
Modified Sat Jun 2 19:38:04 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4900
ansify

Revision 4900 - Directory Listing - [select for diffs]
Modified Sat Jun 2 19:00:33 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4899
ansify

Revision 4899 - Directory Listing - [select for diffs]
Modified Sat Jun 2 16:26:20 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4898
ansify

Revision 4898 - Directory Listing - [select for diffs]
Modified Sat Jun 2 02:08:21 2012 UTC (11 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 4896
Fix type mismatch with the header.  Probably after switching to ANSI C style declarations.

Revision 4896 - Directory Listing - [select for diffs]
Modified Wed May 30 22:04:56 2012 UTC (11 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 4894
Fix a problem with the DES algorithm when used with non 7 bit ascii characters.

Revision 4894 - Directory Listing - [select for diffs]
Modified Wed May 30 13:06:54 2012 UTC (11 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 4893
Revise previous OpenSSL patch:

add SGC and BUF_MEM_grow_clean(3) bug fixes.

Revision 4893 - Directory Listing - [select for diffs]
Modified Fri May 25 01:35:54 2012 UTC (11 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 4892
shut up gcc

Revision 4892 - Directory Listing - [select for diffs]
Modified Wed May 23 23:19:36 2012 UTC (11 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 4891
shut up gcc

Revision 4891 - Directory Listing - [select for diffs]
Modified Wed May 23 22:33:40 2012 UTC (11 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 4890
shut up gcc

Revision 4890 - Directory Listing - [select for diffs]
Modified Wed May 23 13:18:13 2012 UTC (11 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 4889
add a indirect pointer to get no strict aliasing rules on gcc 4.2 resolved

Revision 4889 - Directory Listing - [select for diffs]
Modified Wed May 23 02:22:42 2012 UTC (11 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 4888
ansify

Revision 4888 - Directory Listing - [select for diffs]
Modified Wed May 23 01:46:08 2012 UTC (11 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 4887
ansi

Revision 4887 - Directory Listing - [select for diffs]
Modified Tue May 22 01:36:03 2012 UTC (11 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 4886
shut gcc up

Revision 4886 - Directory Listing - [select for diffs]
Modified Fri May 11 22:35:41 2012 UTC (11 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 4884
silence warnings

Revision 4884 - Directory Listing - [select for diffs]
Modified Thu May 3 17:40:43 2012 UTC (11 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 4883
OpenSSL failes to clear the bytes used as block cipher padding in SSL 3.0
records when operating as a client or a server that accept SSL 3.0
handshakes.  As a result, in each record, up to 15 bytes of uninitialized
memory may be sent, encrypted, to the SSL peer.  This could include
sensitive contents of previously freed memory. [CVE-2011-4576]

OpenSSL support for handshake restarts for server gated cryptograpy (SGC)
can be used in a denial-of-service attack. [CVE-2011-4619]

If an application uses OpenSSL's certificate policy checking when
verifying X509 certificates, by enabling the X509_V_FLAG_POLICY_CHECK
flag, a policy check failure can lead to a double-free. [CVE-2011-4109]

A weakness in the OpenSSL PKCS #7 code can be exploited using
Bleichenbacher's attack on PKCS #1 v1.5 RSA padding also known as the
million message attack (MMA). [CVE-2012-0884]

The asn1_d2i_read_bio() function, used by the d2i_*_bio and d2i_*_fp
functions, in OpenSSL contains multiple integer errors that can cause
memory corruption when parsing encoded ASN.1 data.  This error can occur
on systems that parse untrusted ASN.1 data, such as X.509 certificates
or RSA public keys. [CVE-2012-2110]

Revision 4883 - Directory Listing - [select for diffs]
Modified Wed Apr 25 00:52:18 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4882
enable several devices now safe with PAE

Revision 4882 - Directory Listing - [select for diffs]
Modified Sun Apr 22 15:44:37 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4881
drop check.. why this doesn't work on tinderbox i have no idea

Revision 4881 - Directory Listing - [select for diffs]
Modified Fri Apr 13 12:52:19 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4880
disable Errata 721 fix for amd cpus until problems can be worked out.

Revision 4880 - Directory Listing - [select for diffs]
Modified Fri Apr 13 12:13:39 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4879
sync pmap with amd64

Revision 4879 - Directory Listing - [select for diffs]
Modified Thu Apr 12 23:23:29 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4878
Turn off warns for now

Revision 4878 - Directory Listing - [select for diffs]
Modified Thu Apr 12 12:29:54 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4877
sync with freebsd 7.1

Revision 4877 - Directory Listing - [select for diffs]
Modified Thu Apr 12 12:29:31 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4876
reorganize legacy cpu attach

Revision 4876 - Directory Listing - [select for diffs]
Modified Thu Apr 12 12:28:47 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4875
add missing ;

Revision 4875 - Directory Listing - [select for diffs]
Modified Thu Apr 12 12:28:36 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4874
add missing kdtrace include

Revision 4874 - Directory Listing - [select for diffs]
Modified Thu Apr 12 12:18:51 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4873
Moderize the code and document it's conformance (or lack thereof) with POSIX.

Obtained from: FreeBSD 10-CURRENT

Revision 4873 - Directory Listing - [select for diffs]
Modified Thu Apr 12 12:14:03 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4872
dtrace

Revision 4872 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:48:43 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4871
dtrace support

Revision 4871 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:45:47 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4870
ktrace

Revision 4870 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:45:18 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4869
add dtrace support

Revision 4869 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:32:57 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4868
sync with i386

Revision 4868 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:31:50 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4867
expose stripe size

Revision 4867 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:25:15 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4866
this diagnostic hack is not compatible with CURRENT

Revision 4866 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:15:48 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4865
ansify

Revision 4865 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:12:15 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4864
sync with freebsd 7.1

Revision 4864 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:58:30 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4863
add a few macros

Revision 4863 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:50:10 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4862
sync gem(4) with freebsd 7.1

Revision 4862 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:48:58 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4861
set the sense residual properly.

Revision 4861 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:42:32 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4860
sync with freebsd 7-stable

Revision 4860 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:39:29 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4859
fix warning about missing function prototype

Revision 4859 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:28:43 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4858
add missing free

Revision 4858 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:27:52 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4857
add new device 39320LPE Ultra320 SCSI Adapter

Revision 4857 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:23:52 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4856
Update driver, sync with freebsd 7.1

Revision 4856 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:20:08 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4855
Whitespace cleanup.

tweak some locking

Revision 4855 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:16:11 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4854
Update aac(4).  Sync with FreeBSD 7.1

Revision 4854 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:08:20 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4853
add __fcntl_compat symbol

Revision 4853 - Directory Listing - [select for diffs]
Modified Thu Apr 12 00:59:14 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4852
mark unused

Revision 4852 - Directory Listing - [select for diffs]
Modified Wed Apr 11 18:09:21 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4851
change default root prompt to show path, user and increase the size of history

Revision 4851 - Directory Listing - [select for diffs]
Modified Wed Apr 11 01:06:11 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4850
Add kernel debugger configuration utility.

Obtained from: FreeBSD 7.1

Revision 4850 - Directory Listing - [select for diffs]
Modified Wed Apr 11 01:03:10 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4849
add verbose flag

Revision 4849 - Directory Listing - [select for diffs]
Modified Wed Apr 11 01:00:19 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4848
oops

Revision 4848 - Directory Listing - [select for diffs]
Modified Wed Apr 11 00:58:36 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4847
tag

Revision 4847 - Directory Listing - [select for diffs]
Modified Wed Apr 11 00:46:55 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4846
tag and fixup some usage() functions

Revision 4846 - Directory Listing - [select for diffs]
Modified Wed Apr 11 00:46:15 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4845
merge use of sysctl from freebsd, removing dependancy on kvm

Revision 4845 - Directory Listing - [select for diffs]
Modified Wed Apr 11 00:34:04 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4844
add utf8 filenames and support for FEATURE command.  Obtained from: FreeBSD

Revision 4844 - Directory Listing - [select for diffs]
Modified Wed Apr 11 00:15:09 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4843
whitespace cleanup

Revision 4843 - Directory Listing - [select for diffs]
Modified Wed Apr 11 00:11:41 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4842
old style

Revision 4842 - Directory Listing - [select for diffs]
Modified Wed Apr 11 00:09:37 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4840
3.0.10 libffi

Revision 4840 - Directory Listing - [select for diffs]
Modified Tue Apr 10 22:17:18 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4838
This commit was generated by cvs2svn to compensate for changes in r4839,
which included commits to RCS files with non-trunk default branches.
Revision 4838 - Directory Listing - [select for diffs]
Modified Tue Apr 10 22:12:29 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4837
*** empty log message ***

Revision 4837 - Directory Listing - [select for diffs]
Modified Tue Apr 10 22:11:33 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4836
don't use old style declarations

Revision 4836 - Directory Listing - [select for diffs]
Modified Tue Apr 10 19:56:19 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4835
teach about GRE tunnel

Revision 4835 - Directory Listing - [select for diffs]
Modified Tue Apr 10 19:40:33 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4834
Fix several issues with world

Revision 4834 - Directory Listing - [select for diffs]
Modified Tue Apr 10 19:39:40 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4833
Fix several compile problems with world

Revision 4833 - Directory Listing - [select for diffs]
Modified Tue Apr 10 19:39:07 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4832
fix includes

Revision 4832 - Directory Listing - [select for diffs]
Modified Mon Apr 9 23:05:39 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4831
document mount options

Revision 4831 - Directory Listing - [select for diffs]
Modified Mon Apr 9 23:02:44 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4830
remove advisory lock hack

Revision 4830 - Directory Listing - [select for diffs]
Modified Mon Apr 9 23:01:45 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4829
remove license clauses 3 & 4 per change in terms from NetBSD

Revision 4829 - Directory Listing - [select for diffs]
Modified Mon Apr 9 22:34:12 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4828
modernize to current standards

Revision 4828 - Directory Listing - [select for diffs]
Modified Mon Apr 9 22:16:44 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4827
add libdwarf

Revision 4827 - Directory Listing - [select for diffs]
Modified Mon Apr 9 22:11:25 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4826
expose symbols identically to FreeBSD 7.x.  This allows us to maintain binary compatibility with early releases.

Revision 4826 - Directory Listing - [select for diffs]
Modified Mon Apr 9 16:38:24 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4825
Change how tmpfs calculates available pages.

This stops a lot of problems with ZFS enabled and small swap sizes.

Obtained from: FreeBSD (svn 227802)

Revision 4825 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:54:29 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4824
tag

Revision 4824 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:51:09 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4823
update extaddr getfile manual

Revision 4823 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:49:44 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4822
document WSTOPPED, WUNTRACED, WNOWAIT

Revision 4822 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:47:52 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4821
Sync platform specific code with improvements from FreeBSD 7.1

Revision 4821 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:47:08 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4820
tag

Revision 4820 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:37:42 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4819
tag

Revision 4819 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:32:36 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4818
modify to expose several changes in struct pcpu

Revision 4818 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:25:14 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4817
Tag

Revision 4817 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:24:04 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4816
remove client side libatm.  It's been commented out for awhile and we removed the kernel piece recently.

Tag several libraries.

Revision 4816 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:22:24 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4815
turn on sm conf polling

Revision 4815 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:05:30 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4814
add libproc

Revision 4814 - Directory Listing - [select for diffs]
Modified Sun Apr 8 14:00:46 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4813
tag

Revision 4813 - Directory Listing - [select for diffs]
Modified Sat Apr 7 23:00:52 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4812
version

Revision 4812 - Directory Listing - [select for diffs]
Modified Sat Apr 7 15:41:07 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4811
clean up for R40f

Revision 4811 - Directory Listing - [select for diffs]
Modified Sat Apr 7 15:16:24 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4809
mksh R40f

Revision 4809 - Directory Listing - [select for diffs]
Modified Sat Apr 7 15:15:03 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4807
This commit was generated by cvs2svn to compensate for changes in r4808,
which included commits to RCS files with non-trunk default branches.
Revision 4807 - Directory Listing - [select for diffs]
Modified Fri Apr 6 12:58:58 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4806
branding

Revision 4806 - Directory Listing - [select for diffs]
Modified Fri Apr 6 12:37:53 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4805
Mark zfs module dependant on opensolaris module which gives the former visibility of the latter's symbols. This should fix the zfs won't load problem

Revision 4805 - Directory Listing - [select for diffs]
Modified Fri Apr 6 02:24:23 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4804
missed on last commit

Revision 4804 - Directory Listing - [select for diffs]
Modified Fri Apr 6 02:23:55 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4803
Introduce portions of userland for dtrace.

Obtained from: FreeBSD 7.1, OpenSolaris

Revision 4803 - Directory Listing - [select for diffs]
Modified Fri Apr 6 00:54:47 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4802
add sparc64 specific code.

Revision 4802 - Directory Listing - [select for diffs]
Modified Fri Apr 6 00:54:17 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4801
*** empty log message ***

Revision 4801 - Directory Listing - [select for diffs]
Modified Fri Apr 6 00:53:53 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4800
add intel and sparc specific fasttrap_isa header

Revision 4800 - Directory Listing - [select for diffs]
Modified Tue Apr 3 23:45:08 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4799
make vlan default in the GENERIC kernel.

make a few minor changes to fix some stability problems.

Revision 4799 - Directory Listing - [select for diffs]
Modified Tue Apr 3 23:44:20 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4798
add stack(9) for sparc64

Revision 4798 - Directory Listing - [select for diffs]
Modified Tue Apr 3 23:42:44 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4797
update sparc64 port to match recent changes to other architectures.

tag

Revision 4797 - Directory Listing - [select for diffs]
Modified Mon Apr 2 16:22:51 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4796
Implement a minimum version check for kernel modules.  When built, the midnightbsd version is used as a baseline version (__MidnightBSD_version)

This is based on a patch / idea from John Baldwin.

Revision 4796 - Directory Listing - [select for diffs]
Modified Sun Apr 1 16:22:20 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4795
dtrace support

Revision 4795 - Directory Listing - [select for diffs]
Modified Sun Apr 1 16:06:28 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4794
dtrace

Revision 4794 - Directory Listing - [select for diffs]
Modified Sun Apr 1 06:01:27 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4793
turn zfs module back on

Revision 4793 - Directory Listing - [select for diffs]
Modified Sun Apr 1 06:00:59 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4792
update makefile for zfs build

Revision 4792 - Directory Listing - [select for diffs]
Modified Sun Apr 1 05:59:37 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4791
add manifest

Revision 4791 - Directory Listing - [select for diffs]
Modified Sun Apr 1 05:59:01 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4790
add java test cases

Revision 4790 - Directory Listing - [select for diffs]
Modified Sun Apr 1 05:58:21 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4789
add dtrace & friends

Revision 4789 - Directory Listing - [select for diffs]
Modified Sun Apr 1 05:53:04 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4788
add opensolaris code hack.

remove cxgbe from include path.  This was a botched merge.

add some dtrace stuff in prep for that feature.

Revision 4788 - Directory Listing - [select for diffs]
Modified Sun Apr 1 05:31:26 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4787
s/lbolt/LBOLT

Revision 4787 - Directory Listing - [select for diffs]
Modified Sun Apr 1 05:28:39 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4786
rename refcount_init, refcount_sysinit

Revision 4786 - Directory Listing - [select for diffs]
Modified Sun Apr 1 04:24:58 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4785
tag

Revision 4785 - Directory Listing - [select for diffs]
Modified Sun Apr 1 04:24:15 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4784
teach geom about stripe offsets.

Revision 4784 - Directory Listing - [select for diffs]
Modified Sun Apr 1 04:19:13 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4783
add stripe sizes & offsets

Revision 4783 - Directory Listing - [select for diffs]
Modified Sun Apr 1 04:06:48 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4782
add constants for stripe site and offset

Revision 4782 - Directory Listing - [select for diffs]
Modified Sun Apr 1 04:02:32 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4781
whitespace

Revision 4781 - Directory Listing - [select for diffs]
Modified Sun Apr 1 01:51:07 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4780
add zfs regression test suite.

Revision 4780 - Directory Listing - [select for diffs]
Modified Sun Apr 1 01:46:00 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4779
tag

Revision 4779 - Directory Listing - [select for diffs]
Modified Sun Apr 1 01:45:10 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4778
teach lsvfs about jail

Revision 4778 - Directory Listing - [select for diffs]
Modified Sun Apr 1 01:42:33 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4777
revert some changes to pthread.h and dirent.h

fixup symbols for libc and add fcntl / __fcntl interface.

remove some of the solaris src hacks for zfs.

Revision 4777 - Directory Listing - [select for diffs]
Modified Sat Mar 31 22:45:30 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4776
Add PDJ's fstest regression suite for file systems.

it's designed for UFS and ZFS, but can be potentially used for other platforms and file systems.

Revision 4776 - Directory Listing - [select for diffs]
Modified Sat Mar 31 17:05:11 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4775
Bring in several improvements from OpenSolaris for dtrace, zfs, etc.

Add kernel code for kernel lock manager for nfs, vfs and vm improvements and general compatibility with the recent network stack changes.

Bring in several improvements and bugfixes from FreeBSD 7.1

Tag $MidnightBSD$

Revision 4775 - Directory Listing - [select for diffs]
Modified Sat Mar 31 17:00:27 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4774
Sync file systems with upcoming changes to vm and vfs

Revision 4774 - Directory Listing - [select for diffs]
Modified Sat Mar 31 16:59:45 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4773
Temporarily disable zfs module until we can get it working again.

Sync coda file systems with upcoming changes.

Revision 4773 - Directory Listing - [select for diffs]
Modified Sat Mar 31 16:58:05 2012 UTC (11 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 4772
Rework "disk" so we expose sector sizes.

Hack gmirror and gstripe to expose stripe sizes.

Get vol to print drive indentifier.

Rework the linux lvm "name" lookup logic.

Revision 4772 - Directory Listing - [select for diffs]
Modified Sat Mar 31 05:25:55 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4771
add ;

Revision 4771 - Directory Listing - [select for diffs]
Modified Sat Mar 31 04:01:10 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4770
add ;

Revision 4770 - Directory Listing - [select for diffs]
Modified Sat Mar 31 03:58:54 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4769
tag

Revision 4769 - Directory Listing - [select for diffs]
Modified Sat Mar 31 03:08:56 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4768
Apple Computer -> Apple

Revision 4768 - Directory Listing - [select for diffs]
Modified Sat Mar 31 02:57:26 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4767
introduce common crc32 functions in libkern for use in the kernel.  use a faster version that should improve iscsi performance.

Revision 4767 - Directory Listing - [select for diffs]
Modified Sat Mar 31 02:44:21 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4766
init arc4_i and arc4_j to 0 after key mixing as recommended by draft-kaukonen-cipher-arcfour-03.txt (3.1.5)

Obtained from: OpenBSD, FreeBSD.

Revision 4766 - Directory Listing - [select for diffs]
Modified Wed Mar 28 23:22:17 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4765
tag

Revision 4765 - Directory Listing - [select for diffs]
Modified Wed Mar 28 21:18:51 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4764
add fasttrap

Revision 4764 - Directory Listing - [select for diffs]
Modified Wed Mar 28 21:18:34 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4763
add sdt

Revision 4763 - Directory Listing - [select for diffs]
Modified Wed Mar 28 21:16:38 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4762
add makefiles for dtrace & friends.

Revision 4762 - Directory Listing - [select for diffs]
Modified Wed Mar 28 21:09:38 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4761
add dtrace related files for devices.

Revision 4761 - Directory Listing - [select for diffs]
Modified Wed Mar 28 04:56:48 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4760
Perl 5.14.2

Revision 4760 - Directory Listing - [select for diffs]
Modified Wed Mar 28 04:56:17 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4758
update manifest for 5.14.2

Revision 4758 - Directory Listing - [select for diffs]
Modified Wed Mar 28 04:40:29 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4756
This commit was generated by cvs2svn to compensate for changes in r4757,
which included commits to RCS files with non-trunk default branches.
Revision 4756 - Directory Listing - [select for diffs]
Modified Wed Mar 28 04:31:53 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4755
mksh update

Revision 4755 - Directory Listing - [select for diffs]
Modified Wed Mar 28 04:29:27 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4753
resolve conflict

Revision 4753 - Directory Listing - [select for diffs]
Modified Wed Mar 28 04:28:11 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4751
This commit was generated by cvs2svn to compensate for changes in r4752,
which included commits to RCS files with non-trunk default branches.
Revision 4751 - Directory Listing - [select for diffs]
Modified Mon Mar 26 12:10:20 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4750
drop netatm, not mpsafe

Revision 4750 - Directory Listing - [select for diffs]
Modified Sun Mar 25 16:15:21 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4749
Add workaround for errata #721 on AMD CPUs.

http://support.amd.com/us/Processor_TechDocs/41322_10h_Rev_Gd.pdf

test case from dragonfly: http://leaf.dragonflybsd.org/mailarchive/kernel/2012-03/msg00040.html

Obtained from: DragonFly

Revision 4749 - Directory Listing - [select for diffs]
Modified Sun Mar 25 13:36:37 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4748
add support for multiple routing tables (setfib)

Revision 4748 - Directory Listing - [select for diffs]
Modified Sun Mar 25 12:43:12 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4747
fix the map

Revision 4747 - Directory Listing - [select for diffs]
Modified Sat Mar 24 21:41:20 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4746
start the kernel lock manager work

Revision 4746 - Directory Listing - [select for diffs]
Modified Sat Mar 24 21:40:52 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4745
oops.. remove this goof

Revision 4745 - Directory Listing - [select for diffs]
Modified Sat Mar 24 21:30:39 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4744
tag

Revision 4744 - Directory Listing - [select for diffs]
Modified Sat Mar 24 21:30:06 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4743
Connect age(4) to the build.

Remove harp as it's not mpsafe.

Remove idt because it hasn't been useful since at least 0.3-CURRENT.

Add new ipfw_nat module and prepare for kernel lock manager for nfs w/ rpc.

Also connect uslcom module which we added to the kernel recently.

Revision 4743 - Directory Listing - [select for diffs]
Modified Sat Mar 24 01:11:06 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4742
Sync several devices with FreeBSD 7.1 code.

Revision 4742 - Directory Listing - [select for diffs]
Modified Fri Mar 23 21:50:12 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4741
add IEEE licensing stuff and update getsockopt(2) for setfib(2)

Revision 4741 - Directory Listing - [select for diffs]
Modified Fri Mar 23 21:41:53 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4740
add it to 1.1 symbols too

Revision 4740 - Directory Listing - [select for diffs]
Modified Fri Mar 23 21:38:10 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4739
add setfib(2)

Revision 4739 - Directory Listing - [select for diffs]
Modified Fri Mar 23 20:57:08 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4738
add man page for setfib(2)

Revision 4738 - Directory Listing - [select for diffs]
Modified Fri Mar 23 20:55:00 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4737
add setfib frontend utility to control which routing table to use.

Revision 4737 - Directory Listing - [select for diffs]
Modified Fri Mar 23 20:48:40 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4736
Major feature merge from FreeBSD 7.1

Introduce FIB (Forward Routing Base) aka multiple routing tables to MidnightBSD.  This is the kernel piece with userland to follow later.

As part of this work, changes had to be made to the vm subsystem, rwlocks introduced, changes to sleep queues, and modifications to the pf firewall.

Effectively this gives us most of the functionality of the FreeBSD 7.1 network stack including tcp offload.

Revision 4736 - Directory Listing - [select for diffs]
Modified Fri Mar 23 02:24:39 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4735
add ;

Revision 4735 - Directory Listing - [select for diffs]
Modified Tue Mar 20 01:22:50 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4734
add missing ;

Revision 4734 - Directory Listing - [select for diffs]
Modified Tue Mar 20 00:39:03 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4733
add ;

Revision 4733 - Directory Listing - [select for diffs]
Modified Sun Mar 18 16:58:01 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4732
add uslcom after the recent usb update

Revision 4732 - Directory Listing - [select for diffs]
Modified Sun Mar 18 16:23:09 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4731
add support for several new devices.

Revision 4731 - Directory Listing - [select for diffs]
Modified Sun Mar 18 01:15:36 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4730
add ;

Revision 4730 - Directory Listing - [select for diffs]
Modified Fri Mar 16 13:08:26 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4729
Commit the second part of the libkern changes.

Revision 4729 - Directory Listing - [select for diffs]
Modified Fri Mar 16 03:46:25 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4728
deal with broken bioses

Revision 4728 - Directory Listing - [select for diffs]
Modified Fri Mar 16 03:45:52 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4727
add ;

Revision 4727 - Directory Listing - [select for diffs]
Modified Fri Mar 16 03:29:19 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4726
make this easier to read

Revision 4726 - Directory Listing - [select for diffs]
Modified Fri Mar 16 03:09:08 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4725
NetBSD foundation relicensed everything as 2 clause BSD

Revision 4725 - Directory Listing - [select for diffs]
Modified Fri Mar 16 03:04:47 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4724
add sus compatibility

Revision 4724 - Directory Listing - [select for diffs]
Modified Fri Mar 16 03:04:20 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4723
make alignment easier to read

Revision 4723 - Directory Listing - [select for diffs]
Modified Fri Mar 16 02:02:53 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4722
Fix several issues with unionfs including access via threads, including devfs and and sockets on a md with a unionfs mount.

Revision 4722 - Directory Listing - [select for diffs]
Modified Thu Mar 15 13:14:39 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4721
correctly handle several scsi states.

Revision 4721 - Directory Listing - [select for diffs]
Modified Thu Mar 15 12:06:20 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4720
avoid 256 integer divisions per rc4_init call.  Replace it with using an index variable.

Speeds up almost by 2x and helps with VPN software performance.

Obtained from: FreeBSD

Revision 4720 - Directory Listing - [select for diffs]
Modified Thu Mar 15 12:04:25 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4719
make several items static

Revision 4719 - Directory Listing - [select for diffs]
Modified Thu Mar 15 11:51:24 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4718
enable on amd64

Revision 4718 - Directory Listing - [select for diffs]
Modified Thu Mar 15 02:23:17 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4717
support several additional devices

Revision 4717 - Directory Listing - [select for diffs]
Modified Thu Mar 15 02:21:40 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4716
update power management driver

Revision 4716 - Directory Listing - [select for diffs]
Modified Thu Mar 15 01:42:15 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4715
add 3 more via host to PCI bridges

Revision 4715 - Directory Listing - [select for diffs]
Modified Thu Mar 15 01:36:17 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4714
sync with freebsd 7-stable

Revision 4714 - Directory Listing - [select for diffs]
Modified Thu Mar 15 00:50:58 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4713
page count ftw

Revision 4713 - Directory Listing - [select for diffs]
Modified Wed Mar 14 23:29:25 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4712
add support for NFSMB_DEVICEID_NF4_65_SMB

Revision 4712 - Directory Listing - [select for diffs]
Modified Wed Mar 14 23:27:46 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4711
add support for the via VT8237 PMU

Revision 4711 - Directory Listing - [select for diffs]
Modified Wed Mar 14 23:20:38 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4710
pcie configuration.

acpi bug fixes.

Revision 4710 - Directory Listing - [select for diffs]
Modified Tue Mar 13 13:14:34 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4709
setup thermal zones properly for main cpu.

Revision 4709 - Directory Listing - [select for diffs]
Modified Tue Mar 13 02:22:43 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4708
correctly get the number of HPET devices on AMD hardware

Revision 4708 - Directory Listing - [select for diffs]
Modified Tue Mar 13 01:37:28 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4707
fix deadlock with sched_ule

Revision 4707 - Directory Listing - [select for diffs]
Modified Mon Mar 12 23:11:17 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4706
Add partial support for Intel Turbo Boost technology on newer i5/i7 and Xeons.

ACPI may report extra level with frequency 1MHz above the nominal to
control Intel Turbo Boost operation. It is not a bug, but feature:
dev.cpu.0.freq_levels: 2934/106000 2933/95000 2800/82000 ...
In this case value 2933 means 2.93GHz, but 2934 means 3.2-3.6GHz.

based on patch by mav @ freebsd

Revision 4706 - Directory Listing - [select for diffs]
Modified Sun Mar 11 03:16:51 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4705
sync with freebsd 7.1

Revision 4705 - Directory Listing - [select for diffs]
Modified Sun Mar 11 03:09:09 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4704
sync with freebsd 7.1

Revision 4704 - Directory Listing - [select for diffs]
Modified Sun Mar 11 03:06:24 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4703
userland mutex client stub

Revision 4703 - Directory Listing - [select for diffs]
Modified Sun Mar 11 02:32:15 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4702
Bring in userland mutxex support from FreeBSD 7.x. This still requries a userland piece in the threading libraries

Revision 4702 - Directory Listing - [select for diffs]
Modified Sat Mar 10 23:56:35 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4701
POSIX 2008 ify scandir and alphasort

Revision 4701 - Directory Listing - [select for diffs]
Modified Sat Mar 10 23:53:56 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4700
replace call to alphasort with something local since POSIX 2008 dinked with it

Revision 4700 - Directory Listing - [select for diffs]
Modified Sat Mar 10 05:36:14 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4699
more license and visibility fixes

Revision 4699 - Directory Listing - [select for diffs]
Modified Sat Mar 10 05:20:03 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4698
tag

Revision 4698 - Directory Listing - [select for diffs]
Modified Sat Mar 10 05:19:40 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4697
posix 2008 visibility

Revision 4697 - Directory Listing - [select for diffs]
Modified Sat Mar 10 05:18:43 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4696
fix initializer

Revision 4696 - Directory Listing - [select for diffs]
Modified Sat Mar 10 05:17:27 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4695
fix std path

Revision 4695 - Directory Listing - [select for diffs]
Modified Sat Mar 10 05:15:58 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4694
fix some visability issues with POSIX.  Clean up copyrights per ucb notice and netbsd licensing changes

Revision 4694 - Directory Listing - [select for diffs]
Modified Sat Mar 10 04:16:12 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4693
minor tweaks

Revision 4693 - Directory Listing - [select for diffs]
Modified Sat Mar 10 03:47:39 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4692
add arch.inc.mk

Revision 4692 - Directory Listing - [select for diffs]
Modified Sat Mar 10 03:43:55 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4691
drop isdn.

update coldef, mklocale, monentdef, numericdef, ... locate related stuff

Update syscons keymaps, fonts

Revision 4691 - Directory Listing - [select for diffs]
Modified Sat Mar 10 03:35:45 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4690
conditionalize sendmail and use new style for bind

Revision 4690 - Directory Listing - [select for diffs]
Modified Sat Mar 10 03:29:52 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4689
add more locale directories

Revision 4689 - Directory Listing - [select for diffs]
Modified Sat Mar 10 01:25:14 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4688
use new PO_CFLAGS

Revision 4688 - Directory Listing - [select for diffs]
Modified Sat Mar 10 01:11:47 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4687
strict aliasing can be turned off.  old style definitions handled

Revision 4687 - Directory Listing - [select for diffs]
Modified Sat Mar 10 01:03:15 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4686
tweak whitespace.  Allow one to turn off certain gcc warnings

Revision 4686 - Directory Listing - [select for diffs]
Modified Sat Mar 10 00:58:37 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4685
partially revert the previous change.  We want to keep CPPFLAGS

Revision 4685 - Directory Listing - [select for diffs]
Modified Sat Mar 10 00:42:52 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4684
sync version_gen with 8-stable freebsd

Revision 4684 - Directory Listing - [select for diffs]
Modified Sat Mar 10 00:39:42 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4683
drop pre processor flags and define CXXFLAGS for debug.  Also add beforelinking target handling

Revision 4683 - Directory Listing - [select for diffs]
Modified Fri Mar 9 04:54:42 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4682
take into account hflag

Revision 4682 - Directory Listing - [select for diffs]
Modified Fri Mar 9 04:52:24 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4681
fix prototypes for const

Revision 4681 - Directory Listing - [select for diffs]
Modified Fri Mar 9 04:50:31 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4680
const

Revision 4680 - Directory Listing - [select for diffs]
Modified Fri Mar 9 04:32:54 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4679
update man page for current arguments

Revision 4679 - Directory Listing - [select for diffs]
Modified Fri Mar 9 04:29:38 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4678
const some stuff and fix some comments

Revision 4678 - Directory Listing - [select for diffs]
Modified Fri Mar 9 04:26:14 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4677
const some things

Revision 4677 - Directory Listing - [select for diffs]
Modified Fri Mar 9 04:18:38 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4676
sync with freebsd 9

Revision 4676 - Directory Listing - [select for diffs]
Modified Fri Mar 9 04:16:15 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4675
Fix compile warning by using the correct function name and header

Revision 4675 - Directory Listing - [select for diffs]
Modified Fri Mar 9 04:14:06 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4674
Fix initializers for lists, sync readpassphrase with openbsd, fix prototype for pthread_unlock etc.

Revision 4674 - Directory Listing - [select for diffs]
Modified Fri Mar 9 03:51:10 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4673
tag

Revision 4673 - Directory Listing - [select for diffs]
Modified Fri Mar 9 03:45:16 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4672
tag, fixup some definitions

Revision 4672 - Directory Listing - [select for diffs]
Modified Fri Mar 9 00:20:24 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4671
st_atimespec, st_mtimespec, st_birthtimespec etc have been renamed to follow POSIX 2008 specification.

Revision 4671 - Directory Listing - [select for diffs]
Modified Thu Mar 8 14:08:38 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4670
handle multiple strings

Revision 4670 - Directory Listing - [select for diffs]
Modified Thu Mar 8 14:05:39 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4669
Sync with FreeBSD 10-CURRENT

Revision 4669 - Directory Listing - [select for diffs]
Modified Thu Mar 1 23:59:31 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4668
sync with 7 stable

Revision 4668 - Directory Listing - [select for diffs]
Modified Thu Mar 1 05:31:53 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4667
fix null define for GCC

Revision 4667 - Directory Listing - [select for diffs]
Modified Thu Mar 1 04:52:15 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4666
add support for register manipulation for i386/amd64.  This is used by cpuctl(4).

Revision 4666 - Directory Listing - [select for diffs]
Modified Thu Mar 1 04:47:28 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4665
document cpucontrol(8)

Revision 4665 - Directory Listing - [select for diffs]
Modified Thu Mar 1 04:45:09 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4664
add cpucontrol(8) for cpuctl(4)

Revision 4664 - Directory Listing - [select for diffs]
Modified Thu Mar 1 04:40:59 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4663
add man page for cpuctl(4)

Revision 4663 - Directory Listing - [select for diffs]
Modified Thu Mar 1 04:39:02 2012 UTC (12 years ago) by laffer1
Original Path: trunk
Diff to previous 4662
introduce cpuctl interface.  Allows microcode updates or toggling registers on x86 cpus. (amd and intel only)

Revision 4662 - Directory Listing - [select for diffs]
Modified Wed Feb 22 03:34:24 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4661
Sync env(1) with FreeBSD 9

Revision 4661 - Directory Listing - [select for diffs]
Modified Wed Feb 22 03:10:24 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4660
revert changes to subr_log while we investigate possible panics related to it

Revision 4660 - Directory Listing - [select for diffs]
Modified Sun Feb 19 23:19:26 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4659
adjust bootstrapping of btxld so it's built for older releases unconditionally

Revision 4659 - Directory Listing - [select for diffs]
Modified Sun Feb 19 23:17:45 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4658
allow for a 0 sized header

Revision 4658 - Directory Listing - [select for diffs]
Modified Sun Feb 19 23:16:18 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4657
this is an x86 binary, not for vax

Revision 4657 - Directory Listing - [select for diffs]
Modified Sun Feb 19 23:07:13 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4656
use NO_PROFILE

Revision 4656 - Directory Listing - [select for diffs]
Modified Sun Feb 19 23:04:03 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4655
fancy math is default

Revision 4655 - Directory Listing - [select for diffs]
Modified Sun Feb 19 23:03:03 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4654
set type to midnightbsd so we know it's from the base system easily

Revision 4654 - Directory Listing - [select for diffs]
Modified Sun Feb 19 23:01:34 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4653
we don't have a math emulator

Revision 4653 - Directory Listing - [select for diffs]
Modified Sun Feb 19 22:59:20 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4652
don't let environment override the CC and CXX flags.. this can screw up building 32bit libs on amd64

Revision 4652 - Directory Listing - [select for diffs]
Modified Sun Feb 19 22:55:13 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4651
add a way to add more directories to the build tools list

Revision 4651 - Directory Listing - [select for diffs]
Modified Sun Feb 19 22:51:18 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4650
allow setting shell in the environment for the build

Revision 4650 - Directory Listing - [select for diffs]
Modified Sun Feb 19 22:47:38 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4649
fix a path issue

Revision 4649 - Directory Listing - [select for diffs]
Modified Sun Feb 19 21:26:58 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4648
tag

Revision 4648 - Directory Listing - [select for diffs]
Modified Sun Feb 19 18:31:09 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4647
Fix a scheduler problem with AMD CPUs with odd numbers of cores.

Triple core CPUs could freak out on boot prior to this fix.

Revision 4647 - Directory Listing - [select for diffs]
Modified Sun Feb 19 17:56:40 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4646
drop GIANT lock from syslog interface

Revision 4646 - Directory Listing - [select for diffs]
Modified Sun Feb 19 16:59:09 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4645
Remove ia64 crap

Revision 4645 - Directory Listing - [select for diffs]
Modified Sun Feb 19 16:58:44 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4644
add sensordev lock to witness list

remove ia64 crap

Revision 4644 - Directory Listing - [select for diffs]
Modified Sun Feb 19 16:58:07 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4643
init lock

Revision 4643 - Directory Listing - [select for diffs]
Modified Thu Feb 16 23:14:25 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4642
Sigh... syscons_isa uses these right now

Revision 4642 - Directory Listing - [select for diffs]
Modified Thu Feb 16 22:44:41 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4641
make sysctl node static since this is the only place we're allocating them.  move sc_puts into syscons.c only.. it's not used anywhere else and make it static.  get rid of bogus layering with sccngetch

Revision 4641 - Directory Listing - [select for diffs]
Modified Thu Feb 16 21:19:00 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4640
revert previous change and make 4BSD the default sechuler on amd64. This is temporary while we investigate some stability issues

Revision 4640 - Directory Listing - [select for diffs]
Modified Thu Feb 16 18:41:04 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4639
make sure the stack is 16-byte aligned as required by AMD64 ABI

Revision 4639 - Directory Listing - [select for diffs]
Modified Tue Feb 14 19:33:49 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4638
Implement bswap16 without inline assembly on i386/amd64.  Compilers do a better job these days.

Revision 4638 - Directory Listing - [select for diffs]
Modified Sun Feb 12 21:16:00 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4637
bump MidnightBSD version for support for preinit, init and fini arrays and related chapges to csu and rtld-elf

Revision 4637 - Directory Listing - [select for diffs]
Modified Sun Feb 12 21:14:24 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4636
Introduce support for preinit, init and fini arrays per the ELF standard.

This patch is based on work by John Marino for DragonFly.  This makes us the second BSD to support this feature.

From his comments:

For the main executable file, the .init_array and .fini_array sections
are handled by crt1, just like .init and .fini are.  In the case of
a statically linked binary, the .preinit_array section is also handled
by crt1.  The real-time linker handles the .init_array and .fini_array
sections for dynamically shared objects (libraries) and .preinit_array
for dynamically-linked binaries.  There are no .preinit_array sections
in the DSOs per standard.

These sections are described by the System V Application Binary Interface
http://www.sco.com/developers/gabi/latest/ch4.sheader.html#special_sections


In order for this patch to work, we also introduced several items from NetBSD needed for newer versions of GCC as well as some features used in this patch. (cdefs.h)

Finally, we're also through in manpages for cpu set which is totally unrelated, but an obmission from a previous patch for ULE.

Revision 4636 - Directory Listing - [select for diffs]
Modified Fri Feb 10 02:25:38 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4635
Update Apple's mDNSResponder to 333.10

Revision 4635 - Directory Listing - [select for diffs]
Modified Fri Feb 10 02:20:48 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4634
resolve conflict

Revision 4634 - Directory Listing - [select for diffs]
Modified Fri Feb 10 02:18:38 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4632
response conflict

Revision 4632 - Directory Listing - [select for diffs]
Modified Fri Feb 10 02:16:07 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4630
This commit was generated by cvs2svn to compensate for changes in r4631,
which included commits to RCS files with non-trunk default branches.
Revision 4630 - Directory Listing - [select for diffs]
Modified Sat Feb 4 16:15:30 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4629
drop power and ia64

Revision 4629 - Directory Listing - [select for diffs]
Modified Thu Feb 2 09:09:15 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4628
add missing spin locks.  witness has to know about them

Revision 4628 - Directory Listing - [select for diffs]
Modified Thu Feb 2 09:00:40 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4627
Switch to mutex over spin lock and add partial support for kqueue

Revision 4627 - Directory Listing - [select for diffs]
Modified Tue Jan 31 03:25:27 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4626
add resize code

Revision 4626 - Directory Listing - [select for diffs]
Modified Tue Jan 31 02:12:23 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4625
add resize for sparc

Revision 4625 - Directory Listing - [select for diffs]
Modified Tue Jan 31 00:27:25 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4624
deal with various apple partition types

Revision 4624 - Directory Listing - [select for diffs]
Modified Tue Jan 31 00:13:39 2012 UTC (12 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 4623
add apple boot and ufs partition types

Revision 4623 - Directory Listing - [select for diffs]
Modified Sun Jan 29 22:14:21 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4622
handle the resize case here too.

Revision 4622 - Directory Listing - [select for diffs]
Modified Sun Jan 29 21:38:44 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4621
add linux mbr, ntfs, fat32

Revision 4621 - Directory Listing - [select for diffs]
Modified Sun Jan 29 21:03:25 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4620
start work on resize()

Revision 4620 - Directory Listing - [select for diffs]
Modified Sun Jan 29 20:19:17 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4619
Include NetBSD, Microsoft, Linux, FreeBSD and Apple partition types.  This allows us to see the types when we dump the geom data.

Revision 4619 - Directory Listing - [select for diffs]
Modified Sun Jan 29 19:49:11 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4618
add definitions for GRUB2, NetBSD and Apple/Mac OS X

Revision 4618 - Directory Listing - [select for diffs]
Modified Sun Jan 29 19:11:09 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4617
add partial support for integrety checking with a sysctl to turn it off

Revision 4617 - Directory Listing - [select for diffs]
Modified Sat Jan 28 20:16:46 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4616
get rid of cycle warning.. it's just a symlink typically.

Revision 4616 - Directory Listing - [select for diffs]
Modified Fri Jan 27 04:53:26 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4615
use new short names

Revision 4615 - Directory Listing - [select for diffs]
Modified Fri Jan 27 04:48:30 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4614
shorten the names of the partition types.  there's a hard limit of 16 characters by convention

Revision 4614 - Directory Listing - [select for diffs]
Modified Thu Jan 26 04:11:44 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4613
drop APM and remove SUJ and TRIM which we don't do yet

Revision 4613 - Directory Listing - [select for diffs]
Modified Thu Jan 26 02:17:23 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4612
remove dead code

Revision 4612 - Directory Listing - [select for diffs]
Modified Thu Jan 26 02:16:54 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4611
cast to intmax_t to shut up compiler warnings

Revision 4611 - Directory Listing - [select for diffs]
Modified Wed Jan 25 05:15:44 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4610
document new verify command

Revision 4610 - Directory Listing - [select for diffs]
Modified Wed Jan 25 04:46:51 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4609
Get rid of progress bar callback for now.  It's just too hard to read the output with this on.  If we improve this or add a gui, it might require a revisit.

Revision 4609 - Directory Listing - [select for diffs]
Modified Wed Jan 25 04:39:50 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4608
add newlines to make this easier to read.

Revision 4608 - Directory Listing - [select for diffs]
Modified Wed Jan 25 04:37:46 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4607
Add sql query to pull in records.

Revision 4607 - Directory Listing - [select for diffs]
Modified Wed Jan 25 04:19:30 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4606
Don't download the latest index (or check) for every single command. This greatly speeds up some commands.

Revision 4606 - Directory Listing - [select for diffs]
Modified Wed Jan 25 03:59:42 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4605
fix whitespace

Revision 4605 - Directory Listing - [select for diffs]
Modified Wed Jan 25 03:56:56 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4604
move fetch bundle into the public header until we can clean up mport

Revision 4604 - Directory Listing - [select for diffs]
Modified Wed Jan 25 03:53:42 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4603
fix several bugs.

Revision 4603 - Directory Listing - [select for diffs]
Modified Wed Jan 25 03:48:03 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4602
fix a few variable definitions, compile in verify functions

Revision 4602 - Directory Listing - [select for diffs]
Modified Wed Jan 25 03:46:21 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4601
don't copy and paste things.. this happens

Revision 4601 - Directory Listing - [select for diffs]
Modified Wed Jan 25 03:45:25 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4600
add documentation

Revision 4600 - Directory Listing - [select for diffs]
Modified Wed Jan 25 03:43:11 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4599
Introduce package verify feature. Goes through checksums mentioning those that fail.

Revision 4599 - Directory Listing - [select for diffs]
Modified Wed Jan 25 03:42:37 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4598
Introduce package verify feature.  Goes through checksums mentioning those that fail.

Revision 4598 - Directory Listing - [select for diffs]
Modified Sun Jan 22 21:49:40 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4597
migrate to MidnightBSD partition types

Revision 4597 - Directory Listing - [select for diffs]
Modified Sun Jan 22 18:39:05 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4596
deal with 'rw'

Revision 4596 - Directory Listing - [select for diffs]
Modified Sun Jan 22 17:39:18 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4595
heh.. used the old man page name

Revision 4595 - Directory Listing - [select for diffs]
Modified Sun Jan 22 17:36:54 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4594
add the remaining public functions

Revision 4594 - Directory Listing - [select for diffs]
Modified Sun Jan 22 17:28:16 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4593
add package meta handling functions and progress/confirm callbacks

Revision 4593 - Directory Listing - [select for diffs]
Modified Sun Jan 22 17:08:48 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4592
introduce start on mport(3) man page

Revision 4592 - Directory Listing - [select for diffs]
Modified Sun Jan 22 16:09:59 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4591
Fix error on tinderbox when building 32bit code.

Revision 4591 - Directory Listing - [select for diffs]
Modified Sat Jan 21 23:04:27 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4590
Fix more bugs with the installer

Revision 4590 - Directory Listing - [select for diffs]
Modified Sat Jan 21 16:56:14 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4589
partedit makes the assumption that arg0 defines G_PART_PARM_GEOM and G_PART_PARM_PROVIDER).  make that so

Revision 4589 - Directory Listing - [select for diffs]
Modified Wed Jan 18 14:59:40 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4588
remove firstboot rc script for live media.

Revision 4588 - Directory Listing - [select for diffs]
Modified Wed Jan 18 14:51:43 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4587
spelling is important.

Revision 4587 - Directory Listing - [select for diffs]
Modified Wed Jan 18 14:36:57 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4586
If the cd fails, we don't want to run ln here.

Revision 4586 - Directory Listing - [select for diffs]
Modified Wed Jan 18 14:31:47 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4585
add a sleep to give ipv6 interfaces time to come up properly.

Revision 4585 - Directory Listing - [select for diffs]
Modified Wed Jan 18 14:19:20 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4584
Fix clean target with the external dist directory we're using now.

Revision 4584 - Directory Listing - [select for diffs]
Modified Wed Jan 18 14:17:33 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4583
Introduce an fstab for the install cd

Revision 4583 - Directory Listing - [select for diffs]
Modified Wed Jan 18 04:32:05 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4582
fix some of the english

Revision 4582 - Directory Listing - [select for diffs]
Modified Wed Jan 18 04:09:29 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4581
Drop documenation target for now.

Explicitly define worlddir and use /usr/rel/dist rather than objdir so we don't get in a circular tar loop. It's nasty.

Revision 4581 - Directory Listing - [select for diffs]
Modified Wed Jan 18 02:26:35 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4580
Update pci vendors list with 2011 data.

Revision 4580 - Directory Listing - [select for diffs]
Modified Wed Jan 18 02:21:40 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4579
one of the sources is no longer available.  need a new way to get this list

Revision 4579 - Directory Listing - [select for diffs]
Modified Wed Jan 18 02:17:38 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4578
Sync.

Revision 4578 - Directory Listing - [select for diffs]
Modified Wed Jan 18 02:15:34 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4577
sync with freebsd 7-stable

Revision 4577 - Directory Listing - [select for diffs]
Modified Wed Jan 18 02:08:11 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4576
tweak subdir targets

Revision 4576 - Directory Listing - [select for diffs]
Modified Wed Jan 18 01:54:13 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4575
add default configuration for configuration files and default libexec path

Revision 4575 - Directory Listing - [select for diffs]
Modified Wed Jan 18 01:49:21 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4574
Fix some comments, use strlcpy, clean up the job code.

Revision 4574 - Directory Listing - [select for diffs]
Modified Wed Jan 18 01:24:50 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4573
Put MidnightBSD in the name of the iso files to make them easier to identify.  We'll probably rename these prior to release anyway, (version number) but then again that might get automated.

Revision 4573 - Directory Listing - [select for diffs]
Modified Wed Jan 18 01:19:13 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4572
version

Revision 4572 - Directory Listing - [select for diffs]
Modified Wed Jan 18 01:15:55 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4571
update version string

Revision 4571 - Directory Listing - [select for diffs]
Modified Wed Jan 18 01:12:34 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4569
update makefile and config for libarchive 3.0.3

Revision 4569 - Directory Listing - [select for diffs]
Modified Wed Jan 18 00:40:46 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4567
This commit was generated by cvs2svn to compensate for changes in r4568,
which included commits to RCS files with non-trunk default branches.
Revision 4567 - Directory Listing - [select for diffs]
Modified Sat Jan 14 22:33:06 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4566
cleanup printing of SATA version

Revision 4566 - Directory Listing - [select for diffs]
Modified Sat Jan 14 22:19:06 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4565
formatting

Revision 4565 - Directory Listing - [select for diffs]
Modified Sat Jan 14 21:56:36 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4564
fix typo.. oops :)

Revision 4564 - Directory Listing - [select for diffs]
Modified Sat Jan 14 15:30:16 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4563
add dhcp6c (dhcp over ipv6 client)

Revision 4563 - Directory Listing - [select for diffs]
Modified Sat Jan 14 15:26:22 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4562
add default configuration for dhcp6c

Revision 4562 - Directory Listing - [select for diffs]
Modified Sat Jan 14 15:18:41 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4561
add dhcp client for ipv6

Revision 4561 - Directory Listing - [select for diffs]
Modified Sat Jan 14 15:16:53 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4559
add dhcp6c sample config file

Revision 4559 - Directory Listing - [select for diffs]
Modified Sat Jan 14 14:39:29 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4558
Import wide-dhcpv6 20080615

Revision 4558 - Directory Listing - [select for diffs]
Modified Sat Jan 14 14:18:54 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4557
archive_read_finish in 2.8.x libarchive

Revision 4557 - Directory Listing - [select for diffs]
Modified Sat Jan 14 04:06:53 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4556
rework the pcm lock/unlock logic

Revision 4556 - Directory Listing - [select for diffs]
Modified Sat Jan 14 03:40:17 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4555
update to 2.8.5

Revision 4555 - Directory Listing - [select for diffs]
Modified Sat Jan 14 03:36:38 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4554
kill old versions

Revision 4554 - Directory Listing - [select for diffs]
Modified Sat Jan 14 03:35:43 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4553
use new libarchive version

Revision 4553 - Directory Listing - [select for diffs]
Modified Sat Jan 14 03:30:50 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4552
update build for libarchive

Revision 4552 - Directory Listing - [select for diffs]
Modified Sat Jan 14 03:29:34 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4550
move libarchive to contrib

Revision 4550 - Directory Listing - [select for diffs]
Modified Sat Jan 14 02:59:49 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4548
This commit was generated by cvs2svn to compensate for changes in r4549,
which included commits to RCS files with non-trunk default branches.
Revision 4548 - Directory Listing - [select for diffs]
Modified Wed Jan 11 04:11:27 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4547
update stub generator

Revision 4547 - Directory Listing - [select for diffs]
Modified Wed Jan 11 03:33:38 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4546
drop hfa here too

Revision 4546 - Directory Listing - [select for diffs]
Modified Sat Jan 7 19:02:58 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4545
helps if you don't forget the subdirectory

Revision 4545 - Directory Listing - [select for diffs]
Modified Sat Jan 7 19:01:41 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4544
make sure directory is present during release

Revision 4544 - Directory Listing - [select for diffs]
Modified Sat Jan 7 18:58:06 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4543
create games directory during make release target

Revision 4543 - Directory Listing - [select for diffs]
Modified Sat Jan 7 18:37:57 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4542
From now on, CURRENT will have witness and invariants enabled by default. This slows down performance, but it makes it much easier to catch kernel problems.

Upon creating a release branch, these options should be removed.

Revision 4542 - Directory Listing - [select for diffs]
Modified Thu Jan 5 22:04:07 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4541
add bsdinstall to mtree

Revision 4541 - Directory Listing - [select for diffs]
Modified Thu Jan 5 21:43:36 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4540
  Improve 256 color support.

  - Add screen-256color,
  - Improve rxvt-256color to set pa and op properly.
  - Add rxvt-unicode-256color as an alias to rxvt-256color.

Revision 4540 - Directory Listing - [select for diffs]
Modified Thu Jan 5 21:34:04 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4539
Some software, notably dialog(1), can understand back-tab, which is typically bound to Shift-Tab. syscons produces ^]]Z for Shift-Tab, like many VT100-like terminal (emulators). The plain xterm does not produce this sequence, but ^I for both Tab and Shift-Tab.

For compatibility with xterm-compatible terminal emulators, adding a kB attribute is desirable.


On the console,
$ dialog --menu foo 20 60 12 a one b two c three
Hitting Shift-Tab exits from dialog.

Reported by Stefan Bethke

Revision 4539 - Directory Listing - [select for diffs]
Modified Thu Jan 5 15:16:58 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4538
work around a GCC 4.2 bug.

	typeof(1.0fi) != float _Complex
	typeof((float _Complex)1.0fi) != float _Complex
	typeof((float _Complex)1.0i) == float _Complex

In other words: if casting to an equal size, GCC seems to take a
shortcut. By casting down from a double to a float, GCC doesn't take
this shortcut, yielding the proper type.

Obtained from: FreeBSD

Revision 4538 - Directory Listing - [select for diffs]
Modified Wed Jan 4 03:57:01 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4537
add sysctl lock protection around register and unregister routines

Revision 4537 - Directory Listing - [select for diffs]
Modified Wed Jan 4 03:49:56 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4536
correct steal threashold value.

Revision 4536 - Directory Listing - [select for diffs]
Modified Wed Jan 4 03:34:07 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4535
add some assertions around the sensordev_lock.

Revision 4535 - Directory Listing - [select for diffs]
Modified Wed Jan 4 03:25:58 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4534
change out the flag and drop and reacquire the lock

Revision 4534 - Directory Listing - [select for diffs]
Modified Wed Jan 4 03:19:03 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4533
whitespace

Revision 4533 - Directory Listing - [select for diffs]
Modified Wed Jan 4 03:14:22 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4532
use sysctl lock/unlock instead of giant here

Revision 4532 - Directory Listing - [select for diffs]
Modified Wed Jan 4 03:11:57 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4531
add ; for SYSINIT.. it's good form

Revision 4531 - Directory Listing - [select for diffs]
Modified Wed Jan 4 02:22:01 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4530
add pkg_tools to obsolete list

Revision 4530 - Directory Listing - [select for diffs]
Modified Wed Jan 4 02:20:15 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4529
remove pkg_install tools from src.

This has been replaced by mport tools

Revision 4529 - Directory Listing - [select for diffs]
Modified Wed Jan 4 02:19:22 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4528
add bsdinstall to world and drop pkg_install tools as we're using mport now.

Revision 4528 - Directory Listing - [select for diffs]
Modified Wed Jan 4 02:18:05 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4527
drop docsinstall

Revision 4527 - Directory Listing - [select for diffs]
Modified Wed Jan 4 02:17:32 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4526
drop docsinstall script

Revision 4526 - Directory Listing - [select for diffs]
Modified Wed Jan 4 02:14:06 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4525
Revert some of the recent changes with misc functions in freebsd compatibility.  I have no idea what i was thinking before.

Regen syscall table so we don't try to use them.

Revision 4525 - Directory Listing - [select for diffs]
Modified Wed Jan 4 01:49:24 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4524
*** empty log message ***

Revision 4524 - Directory Listing - [select for diffs]
Modified Wed Jan 4 01:35:37 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4523
sync ipc code

Revision 4523 - Directory Listing - [select for diffs]
Modified Wed Jan 4 01:02:57 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4522
remove advertising clause, add missing options, sync with FreeBSD 10, tag

Revision 4522 - Directory Listing - [select for diffs]
Modified Mon Jan 2 18:31:00 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4521
regen

Revision 4521 - Directory Listing - [select for diffs]
Modified Mon Jan 2 17:48:39 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4520
*** empty log message ***

Revision 4520 - Directory Listing - [select for diffs]
Modified Mon Jan 2 17:47:22 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4519
revert stupid commit

Revision 4519 - Directory Listing - [select for diffs]
Modified Mon Jan 2 16:42:07 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4518
drop hfa(4), its' not mpsafe

Revision 4518 - Directory Listing - [select for diffs]
Modified Mon Jan 2 16:41:40 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4517
drop hfa as it's not mpsafe

Revision 4517 - Directory Listing - [select for diffs]
Modified Mon Jan 2 16:40:58 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4516
connect lindev(4) to the build

drop hfa as it's not mpsafe

Revision 4516 - Directory Listing - [select for diffs]
Modified Mon Jan 2 16:38:38 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4515
introduce lindev(4)

Revision 4515 - Directory Listing - [select for diffs]
Modified Mon Jan 2 16:26:33 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4514
add missing compatibility functions.

Revision 4514 - Directory Listing - [select for diffs]
Modified Mon Jan 2 16:23:03 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4513
regen syscall table

Revision 4513 - Directory Listing - [select for diffs]
Modified Mon Jan 2 16:18:47 2012 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4512
Fix botched merge.

Revision 4512 - Directory Listing - [select for diffs]
Modified Sat Dec 31 21:42:59 2011 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4511
blah.. compilers today need to chill

Revision 4511 - Directory Listing - [select for diffs]
Modified Sat Dec 31 21:09:15 2011 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4510
add ioctl for 32bit compatibility.

Revision 4510 - Directory Listing - [select for diffs]
Modified Sat Dec 31 20:50:43 2011 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4509
A little early, but Happy New Year.

I'll forget otherwise :)

Revision 4509 - Directory Listing - [select for diffs]
Modified Sat Dec 31 20:30:30 2011 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4508
Refactor linux elf/note logic

Revision 4508 - Directory Listing - [select for diffs]
Modified Sat Dec 31 16:59:05 2011 UTC (12 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 4507
Modify kernel elf routines to support ELF NOTES.  Specificaly, handle 'MidnightBSD' and 'FreeBSD' notes for now.

This prepares us for binutils changes.

I have not yet modified the linuxolator elf note handling logic.  This would be very useful to do.

Revision 4507 - Directory Listing - [select for diffs]
Modified Sat Dec 31 00:34:06 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4506
fix the problem that the entry broke into two lines with multibyte AM/PM format.  obtained from FreeBSD 8-stable

Revision 4506 - Directory Listing - [select for diffs]
Modified Sat Dec 31 00:28:06 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4505
tag

Revision 4505 - Directory Listing - [select for diffs]
Modified Sat Dec 31 00:26:17 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4504
make groups max size dynamic here

Revision 4504 - Directory Listing - [select for diffs]
Modified Sat Dec 31 00:24:25 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4503
remove advertising clause per Berkeley letter

Revision 4503 - Directory Listing - [select for diffs]
Modified Sat Dec 31 00:19:43 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4502
warns 6

Revision 4502 - Directory Listing - [select for diffs]
Modified Sat Dec 31 00:11:10 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4501
sync with freebsd 8.  Drop register keywords and other ancient customs.

Revision 4501 - Directory Listing - [select for diffs]
Modified Fri Dec 30 02:02:36 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4500
Get rid of GIANT lock in sensors framework.

I've created a new sensorsdev_lock to protect list operations.  More work might be required in the individual sensor drivers (lm, it, amdtemp, etc).

Revision 4500 - Directory Listing - [select for diffs]
Modified Fri Dec 30 00:32:22 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4499
tag

Revision 4499 - Directory Listing - [select for diffs]
Modified Fri Dec 30 00:16:02 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4498
improve description

Revision 4498 - Directory Listing - [select for diffs]
Modified Thu Dec 29 04:14:00 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4497
hide very slow sysctl under DIAGNOSTIC in vfs_cache.c

Make a few refinements.

Revision 4497 - Directory Listing - [select for diffs]
Modified Thu Dec 29 04:03:27 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4496
mpsafe sysctl

Revision 4496 - Directory Listing - [select for diffs]
Modified Thu Dec 29 04:01:40 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4495
MPSAFE sysctl

Revision 4495 - Directory Listing - [select for diffs]
Modified Thu Dec 29 04:00:14 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4494
MPSAFE sysctl's.  These happen to be used frequently, especially during make operations.

Revision 4494 - Directory Listing - [select for diffs]
Modified Thu Dec 29 03:55:21 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4493
MPSAFE sysctl's

Revision 4493 - Directory Listing - [select for diffs]
Modified Thu Dec 29 03:34:07 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4492
make sysctl's MPSAFE

Revision 4492 - Directory Listing - [select for diffs]
Modified Thu Dec 29 03:26:55 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4491
explain it must be static

Revision 4491 - Directory Listing - [select for diffs]
Modified Thu Dec 29 03:12:41 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4490
make sysctl's mpsafe

Revision 4490 - Directory Listing - [select for diffs]
Modified Thu Dec 29 03:04:10 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4489
These can also be MPSAFE

Revision 4489 - Directory Listing - [select for diffs]
Modified Thu Dec 29 03:01:09 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4488
Add giant lock around vrele and make all the sysctl's MPSAFE where possible.

Revision 4488 - Directory Listing - [select for diffs]
Modified Thu Dec 29 02:33:28 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4487
Regenerate syscall table.

Add flag MPSAFE to sysctl leaf nodes so they don't require GIANT lock. More work is necesary to make things MPSAFE but this could allow for some serious performance benefits.

move some of the legacy bsdi/4.4bsd lite 2 stuff into kern_xxx.c and port some freebsd 7 centric things over for sbuf.

Revision 4487 - Directory Listing - [select for diffs]
Modified Wed Dec 28 03:14:45 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4486
Bump for raid5, geom sector changes, new kern.features.inet and kern.features.inet6

Revision 4486 - Directory Listing - [select for diffs]
Modified Wed Dec 28 03:11:20 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4485
raid5 time

Revision 4485 - Directory Listing - [select for diffs]
Modified Wed Dec 28 03:09:04 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4484
make the include directory for raid5

Revision 4484 - Directory Listing - [select for diffs]
Modified Wed Dec 28 03:06:29 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4483
change path to raid 5 header

Revision 4483 - Directory Listing - [select for diffs]
Modified Wed Dec 28 03:03:25 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4482
ipv6 and ipv4 are compiled in when kern.features.inet or inet6 are visible :)

Revision 4482 - Directory Listing - [select for diffs]
Modified Wed Dec 28 02:55:16 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4481
add feature_present(3) to test for kernel features.

Revision 4481 - Directory Listing - [select for diffs]
Modified Wed Dec 28 02:53:55 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4480
netconfig for ipv4

Revision 4480 - Directory Listing - [select for diffs]
Modified Wed Dec 28 02:53:39 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4479
more scripts

Revision 4479 - Directory Listing - [select for diffs]
Modified Wed Dec 28 02:53:23 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4478
add additional installer scripts.

netconfig won't work yet until we finish kern.features.*

Revision 4478 - Directory Listing - [select for diffs]
Modified Wed Dec 28 02:24:58 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4477
expose stripesize and offset

Revision 4477 - Directory Listing - [select for diffs]
Modified Wed Dec 28 02:24:34 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4476
expose stripesize

Revision 4476 - Directory Listing - [select for diffs]
Modified Wed Dec 28 00:46:31 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4475
document new graid5(8)

Revision 4475 - Directory Listing - [select for diffs]
Modified Wed Dec 28 00:42:31 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4474
add raid5

Revision 4474 - Directory Listing - [select for diffs]
Modified Wed Dec 28 00:41:41 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4473
import raid 5 module for geom

Revision 4473 - Directory Listing - [select for diffs]
Modified Wed Dec 28 00:41:18 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4472
Import raid 5 module for geom

Revision 4472 - Directory Listing - [select for diffs]
Modified Wed Dec 28 00:14:43 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4471
add support for midnightbsd slices as well.

Revision 4471 - Directory Listing - [select for diffs]
Modified Mon Dec 26 21:45:33 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4469
partially backout a previous commit on the 19th

Revision 4469 - Directory Listing - [select for diffs]
Modified Mon Dec 26 18:10:20 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4468
oops.. missing file

Revision 4468 - Directory Listing - [select for diffs]
Modified Sat Dec 24 06:24:01 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4467
introduce some of the scripts necessary for installation. more customization will be needed.

Revision 4467 - Directory Listing - [select for diffs]
Modified Sat Dec 24 06:17:36 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4466
Do a partial port of bsdinstall to MidnightBSD from FreeBSD 9/10

Revision 4466 - Directory Listing - [select for diffs]
Modified Sat Dec 24 05:55:12 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4464
enable free vec again after explicitly setting pointers to null in the function. This prevents the double free crash bug we saw before.

Revision 4464 - Directory Listing - [select for diffs]
Modified Sat Dec 24 03:30:49 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4463
telnetd: fix a root exploit from a fixed buffer that was not checked

Revision 4463 - Directory Listing - [select for diffs]
Modified Sat Dec 24 03:21:55 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4461
pam: don't allow escape from policy path.  Exploitable in KDE, etc.

Revision 4461 - Directory Listing - [select for diffs]
Modified Sat Dec 24 03:09:11 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4459
fix pam_ssh security issue

Revision 4459 - Directory Listing - [select for diffs]
Modified Sat Dec 24 03:01:06 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4458
oops.. fix namespace

Revision 4458 - Directory Listing - [select for diffs]
Modified Sat Dec 24 02:53:22 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4457
fix security hole in ftpd/libc/

Revision 4457 - Directory Listing - [select for diffs]
Modified Tue Dec 20 03:57:12 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4456
sync with recent kernel changes

Revision 4456 - Directory Listing - [select for diffs]
Modified Sun Dec 18 19:09:49 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4455
MidnightBSDize several boot/loader strings

Alter pmbr and gptboot to like the new MidnightBSD GPT part types

Revision 4455 - Directory Listing - [select for diffs]
Modified Sun Dec 18 03:59:06 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4454
Increment MidnightBSD version for libdialog changeover.

Revision 4454 - Directory Listing - [select for diffs]
Modified Sun Dec 18 03:58:06 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4453
document libdialog change

Revision 4453 - Directory Listing - [select for diffs]
Modified Sun Dec 18 03:50:50 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4452
use libodialog

Revision 4452 - Directory Listing - [select for diffs]
Modified Sun Dec 18 03:47:29 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4451
introduce libodialog

Revision 4451 - Directory Listing - [select for diffs]
Modified Sun Dec 18 03:45:57 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4450
switch to libodialog, add chroot feature

Revision 4450 - Directory Listing - [select for diffs]
Modified Sun Dec 18 03:41:33 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4448
Introduce lgpl version of libdialog.  Retain old version as libodialog for backward compatibility for a few things that still need it like tzsetup and sade.

Hopefully sysinstall will die soon.

Revision 4448 - Directory Listing - [select for diffs]
Modified Sun Dec 18 03:01:46 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4447
Virgin import of dialog 1.1-20111020

Revision 4447 - Directory Listing - [select for diffs]
Modified Sun Dec 18 02:23:42 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4446
-fPIE hack

Revision 4446 - Directory Listing - [select for diffs]
Modified Sun Dec 18 02:09:01 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4445
alphabetical

Revision 4445 - Directory Listing - [select for diffs]
Modified Sun Dec 18 00:45:29 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4444
*** empty log message ***

Revision 4444 - Directory Listing - [select for diffs]
Modified Sat Dec 17 22:50:50 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4443
mention gpt(8)

Revision 4443 - Directory Listing - [select for diffs]
Modified Sat Dec 17 22:49:32 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4442
sp

Revision 4442 - Directory Listing - [select for diffs]
Modified Sat Dec 17 22:48:52 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4441
mention gpart

Revision 4441 - Directory Listing - [select for diffs]
Modified Sat Dec 17 22:45:39 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4440
fix comment

Revision 4440 - Directory Listing - [select for diffs]
Modified Thu Dec 15 13:24:42 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4439
use MidnightBSD partition types when possible.

Revision 4439 - Directory Listing - [select for diffs]
Modified Tue Dec 13 03:24:13 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4438
mksh r40d

Revision 4438 - Directory Listing - [select for diffs]
Modified Tue Dec 13 03:13:07 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4437
merge in changes from r40d

Revision 4437 - Directory Listing - [select for diffs]
Modified Tue Dec 13 03:11:20 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4435
disable depricated per tg's suggestion

Revision 4435 - Directory Listing - [select for diffs]
Modified Tue Dec 13 03:09:57 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4433
This commit was generated by cvs2svn to compensate for changes in r4434,
which included commits to RCS files with non-trunk default branches.
Revision 4433 - Directory Listing - [select for diffs]
Modified Sat Dec 10 23:15:43 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4432
forgot another one

Revision 4432 - Directory Listing - [select for diffs]
Modified Sat Dec 10 23:08:42 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4431
use midnightbsd name

Revision 4431 - Directory Listing - [select for diffs]
Modified Sat Dec 10 23:07:55 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4430
lots going on

Revision 4430 - Directory Listing - [select for diffs]
Modified Sat Dec 10 23:00:32 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4429
Remove freebsd types here for now.  We may try to support their schemes in the future as well, but it's not worth it right now.

Revision 4429 - Directory Listing - [select for diffs]
Modified Sat Dec 10 22:55:34 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4428
create MidnightBSD GPT partition types rather than FreeBSD on i386/amd64.  Our sparc port isn't much of anything now, and we're still using the FreeBSD VTOC entries as their hack won't work for us as we don't have an ELFOSABI number.

Revision 4428 - Directory Listing - [select for diffs]
Modified Sat Dec 10 22:33:35 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4427
define MIDNIGHTBSD GPT types for future use!

Revision 4427 - Directory Listing - [select for diffs]
Modified Sat Dec 10 21:55:12 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4426
use atomic_store rather than set

Revision 4426 - Directory Listing - [select for diffs]
Modified Sat Dec 10 21:50:41 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4425
sync with freebsd 7-stable

Revision 4425 - Directory Listing - [select for diffs]
Modified Sat Dec 10 21:50:02 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4424
sync with kernel changes

Revision 4424 - Directory Listing - [select for diffs]
Modified Sat Dec 10 21:49:10 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4423
enlarge the default stripe size.  this is much more common with hardware raid controllers

Revision 4423 - Directory Listing - [select for diffs]
Modified Sat Dec 10 21:44:36 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4422
clarify man page

Revision 4422 - Directory Listing - [select for diffs]
Modified Sat Dec 10 21:43:47 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4421
add rotate command.

Revision 4421 - Directory Listing - [select for diffs]
Modified Sat Dec 10 21:42:42 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4420
clarify

Revision 4420 - Directory Listing - [select for diffs]
Modified Sat Dec 10 21:40:28 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4419
document kern.geom.journal.*

Revision 4419 - Directory Listing - [select for diffs]
Modified Sat Dec 10 21:39:05 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4418
remove sexism from man page

Revision 4418 - Directory Listing - [select for diffs]
Modified Sat Dec 10 21:18:06 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4417
add SB8xx southbridge support

Revision 4417 - Directory Listing - [select for diffs]
Modified Sat Dec 10 21:05:10 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4416
Merge rl(4) and re(4) from 7-stable freebsd.

Revision 4416 - Directory Listing - [select for diffs]
Modified Sat Dec 10 16:39:09 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4415
fix comment

Revision 4415 - Directory Listing - [select for diffs]
Modified Sat Dec 10 15:46:16 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4414
Bring in several improvements to GEOM from FreeBSD 7-stable.

Drop PC98 support from GEOM in MidnightBSD.  We don't support that architecture and it's not worth the effort to maintain.

raid3, label, journal, eli vinum, and part GEOM classes include several bug fixes related to sanity checking, stripe size, disabling debug printing (label), ...

Revision 4414 - Directory Listing - [select for diffs]
Modified Sat Dec 10 14:59:51 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4413
use new sbuf_new_auto macro. use MAXPHYS rather than define a custom io size in here

Revision 4413 - Directory Listing - [select for diffs]
Modified Sat Dec 10 14:57:28 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4412
Add sbuf_new_auto macro and clean up some whitespace problems.

Revision 4412 - Directory Listing - [select for diffs]
Modified Thu Dec 8 02:22:11 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4411
Fix several offset issues with the code and bring it in line with FreeBSD 7-stable

Revision 4411 - Directory Listing - [select for diffs]
Modified Thu Dec 8 02:03:15 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4410
add bootsize constant.

Revision 4410 - Directory Listing - [select for diffs]
Modified Wed Dec 7 13:52:58 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4409
we've been using bc and dc from openbsd for years. (archite committed this in 2007)

Revision 4409 - Directory Listing - [select for diffs]
Modified Wed Dec 7 13:45:46 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4408
we don't have gl_es yet

Revision 4408 - Directory Listing - [select for diffs]
Modified Wed Dec 7 13:40:58 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4407
Introduce BSD licensed version of grep.

MK_BSD_GREP = yes turns it on as grep, otherwise gnu grep is installed as grep and bsdgrep is bsd licensed grep. In the inverse, gnu grep becomes gnugrep.

For "compatibility", bsdgrep can use the gnu regex library which is also faster, but then it's not purely bsd.

Revision 4407 - Directory Listing - [select for diffs]
Modified Sun Dec 4 22:09:38 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4406
add support for labels to ffs.

This will be used by the memstick routine for releases.

Revision 4406 - Directory Listing - [select for diffs]
Modified Sat Dec 3 22:32:21 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4405
uniformly use the -f option to ln so we don't die on a dup symlink

Revision 4405 - Directory Listing - [select for diffs]
Modified Sat Dec 3 18:48:04 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4404
Don't die if the dist directory is already there on mkdir.

add an rc.local to get into the installer.  This WILL change, but it's a nice placeholder.

Revision 4404 - Directory Listing - [select for diffs]
Modified Fri Dec 2 13:17:21 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4403
add doc distribution

Revision 4403 - Directory Listing - [select for diffs]
Modified Fri Dec 2 13:15:35 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4402
hack up a release generation script

Revision 4402 - Directory Listing - [select for diffs]
Modified Fri Dec 2 13:15:03 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4401
Second pass at new release framework.

Revision 4401 - Directory Listing - [select for diffs]
Modified Fri Dec 2 13:02:55 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4400
let's not make this so old school

Revision 4400 - Directory Listing - [select for diffs]
Modified Fri Dec 2 13:00:22 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4399
modernize

Revision 4399 - Directory Listing - [select for diffs]
Modified Fri Dec 2 12:57:12 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4398
cleanup man page

Revision 4398 - Directory Listing - [select for diffs]
Modified Fri Dec 2 12:55:30 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4397
cleanup the return values for mkdir and some formatting issues with the man page

Revision 4397 - Directory Listing - [select for diffs]
Modified Fri Dec 2 05:08:16 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4396
distribution++

Revision 4396 - Directory Listing - [select for diffs]
Modified Fri Dec 2 04:47:02 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4395
add ssp

Revision 4395 - Directory Listing - [select for diffs]
Modified Fri Dec 2 04:43:40 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4394
add dirmode

Revision 4394 - Directory Listing - [select for diffs]
Modified Fri Dec 2 04:33:09 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4393
rebrand

Revision 4393 - Directory Listing - [select for diffs]
Modified Fri Dec 2 04:22:54 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4392
define SHELL and MACHINE_CPUARCH. also use -f on cp operations.

Revision 4392 - Directory Listing - [select for diffs]
Modified Fri Dec 2 04:11:34 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4391
merge in several new features from freebsd make

Revision 4391 - Directory Listing - [select for diffs]
Modified Fri Dec 2 03:41:32 2011 UTC (12 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 4390
partial merge of find(1) from freebsd 8-stable

Revision 4390 - Directory Listing - [select for diffs]
Modified Sun Nov 27 17:51:38 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4389
teach pciconf(8) about several device types.

Revision 4389 - Directory Listing - [select for diffs]
Modified Sun Nov 27 16:54:37 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4388
Add wake(8), a utility to send a wake on lan packet to another system using the hardware address or hostname entry in ethers(5).

Revision 4388 - Directory Listing - [select for diffs]
Modified Sun Nov 27 16:13:55 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4387
tag

Revision 4387 - Directory Listing - [select for diffs]
Modified Sun Nov 27 15:48:01 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4386
Include the parent Makefile.inc

Revision 4386 - Directory Listing - [select for diffs]
Modified Sun Nov 27 15:45:40 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4385
define the target arch

Revision 4385 - Directory Listing - [select for diffs]
Modified Sun Nov 27 03:42:50 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4384
add memmove and initcpu hacks related to vm_guest/virutalization detection.

turn on the new mii stuff in the base kernel

Revision 4384 - Directory Listing - [select for diffs]
Modified Sun Nov 27 03:41:53 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4383
enable additional chips

Revision 4383 - Directory Listing - [select for diffs]
Modified Sun Nov 27 03:40:50 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4382
part 2 of the virtualization piece.

Revision 4382 - Directory Listing - [select for diffs]
Modified Sun Nov 27 03:40:21 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4381
related to pci update

Revision 4381 - Directory Listing - [select for diffs]
Modified Sun Nov 27 03:39:46 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4380
Merge several changes from FreeBSD 7-stable.

Introduce virtualization detection.  The kernel knows if it's running with VMWar
e, VirtualBox, Parallels, etc and changes the hz level as well as disables MSI a
s appropriate.  We will need to drop the loader support for part of this once it
's tested further. This is more general and allows us to make more changes for s
pecail hardware emulation.

Update alc(4), bge(4), mii(4) and cardbus as well as pci.  This fixes several pr
oblems with various devices, particularly alc(4) which often had difficulty dete
cting cables were plugged in and DHCP. bge(4) gains support for several newer ch
ips and disables UDP offloading for stability reasons.

We also had to hack zfs so that the kernel memmove can be used now rather than t
he macro bcopy hack.

Revision 4380 - Directory Listing - [select for diffs]
Modified Thu Nov 24 19:34:05 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4379
add additional controller, use the last part of the serial number on a hard drive for ata array to avoid problems with two serial numbers are similar in a set and a drive is removed. mask disk idx to avoid panic when extra bits are set.

Revision 4379 - Directory Listing - [select for diffs]
Modified Thu Nov 24 16:18:09 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4378
Introduce some aliases for media types and use them in alc(4).

Revision 4378 - Directory Listing - [select for diffs]
Modified Thu Nov 24 15:59:15 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4377
turn on wol

Revision 4377 - Directory Listing - [select for diffs]
Modified Thu Nov 24 15:57:52 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4376
handle wake on lan link negotiation reset case.

Revision 4376 - Directory Listing - [select for diffs]
Modified Thu Nov 24 15:44:25 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4375
Move the lock down to protect

Revision 4375 - Directory Listing - [select for diffs]
Modified Wed Nov 23 13:19:08 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4374
Allow multiple make option lines to be used with +=

calloc failure handling.

WARNS 6

remove some alpha crap

Revision 4374 - Directory Listing - [select for diffs]
Modified Wed Nov 23 13:00:08 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4373
Further refine directions to use lowercase mksh and mention location of skel files.

Revision 4373 - Directory Listing - [select for diffs]
Modified Wed Nov 23 12:56:46 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4372
tag

Revision 4372 - Directory Listing - [select for diffs]
Modified Wed Nov 23 12:48:52 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4371
Add explicit test so that non-existence of /usr/games/fortune
doesn't affect command exit status.

Revision 4371 - Directory Listing - [select for diffs]
Modified Wed Nov 23 12:46:37 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4370
don't let the exit status of fortune screw things up.

Revision 4370 - Directory Listing - [select for diffs]
Modified Wed Nov 23 12:43:59 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4369
skel/.shrc: Improve commented CDPATH example for POSIX requirements.

POSIX says an empty entry in CDPATH shall not result in the new directory
being printed, while any non-empty entry shall result in the new directory
being printed, including ".". Therefore, the value of CDPATH should almost
always start with a colon, not dot and colon.

Our sh does not print the name for empty entries as well as "." entries.

Revision 4369 - Directory Listing - [select for diffs]
Modified Wed Nov 23 12:38:11 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4368
sync dot.mkshrc with mksh vR40c

Revision 4368 - Directory Listing - [select for diffs]
Modified Wed Nov 23 12:33:32 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4367
update the sample so i when i screw up the comment, it's closer to the current version

Revision 4367 - Directory Listing - [select for diffs]
Modified Wed Nov 23 01:56:42 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4366
mksh R40c

Revision 4366 - Directory Listing - [select for diffs]
Modified Wed Nov 23 01:06:17 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4365
when the pointers are identical, just return 0 off the bat.

Revision 4365 - Directory Listing - [select for diffs]
Modified Tue Nov 22 23:38:06 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4363
resolve conflicts.

Revision 4363 - Directory Listing - [select for diffs]
Modified Tue Nov 22 23:28:05 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4361
This commit was generated by cvs2svn to compensate for changes in r4362,
which included commits to RCS files with non-trunk default branches.
Revision 4361 - Directory Listing - [select for diffs]
Modified Sat Nov 19 17:54:54 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4360
pthread_cond_timedwait()'s timeout is broken
if the kernel condition variable is used (that means, when it is called
from a thread with realtime priority or with a priority-inherit or
priority-protect mutex; process-shared mutexes and condition variables
do not currently work).

Revision 4360 - Directory Listing - [select for diffs]
Modified Sat Nov 19 15:42:02 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4359
Fix headphone pin config on Lenovo B450 Laptop.

Revision 4359 - Directory Listing - [select for diffs]
Modified Sat Nov 19 15:39:41 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4358
add a bunch of conexant chips

Revision 4358 - Directory Listing - [select for diffs]
Modified Sat Nov 19 15:35:09 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4357
rename several intel chips with the proper family names and add a few missing ones

Revision 4357 - Directory Listing - [select for diffs]
Modified Sat Nov 19 15:30:35 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4356
Add support for several Nvidia and Conexant audio chips.

Revision 4356 - Directory Listing - [select for diffs]
Modified Sat Nov 19 15:26:16 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4355
Add Intel Pather Point support.

Revision 4355 - Directory Listing - [select for diffs]
Modified Sat Nov 19 15:24:51 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4354
Add support for Intel Patsburg PCH chipset.

Revision 4354 - Directory Listing - [select for diffs]
Modified Sat Nov 19 15:19:43 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4353
Add support for Intel Cougar Point

Revision 4353 - Directory Listing - [select for diffs]
Modified Sat Nov 19 15:17:33 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4352
define RDC_M3010

Revision 4352 - Directory Listing - [select for diffs]
Modified Sat Nov 19 15:15:56 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4351
Hide version in VERBOSE

Revision 4351 - Directory Listing - [select for diffs]
Modified Fri Nov 18 01:15:50 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4350
Modify resolver to handle _ which is not up to spec, but many other operating systems use them now :(

Revision 4350 - Directory Listing - [select for diffs]
Modified Fri Nov 18 00:12:20 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4348
Update bind for ANOTHER security hole.

Revision 4348 - Directory Listing - [select for diffs]
Modified Fri Nov 18 00:08:23 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4346
This commit was generated by cvs2svn to compensate for changes in r4347,
which included commits to RCS files with non-trunk default branches.
Revision 4346 - Directory Listing - [select for diffs]
Modified Wed Nov 16 00:55:50 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4345
include proper header files

Revision 4345 - Directory Listing - [select for diffs]
Modified Tue Nov 8 04:54:20 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4344
time zone data 2011n

Revision 4344 - Directory Listing - [select for diffs]
Modified Tue Nov 8 04:53:17 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4343
time zone data 2011n from http://www.iana.org/time-zones/repository/releases/tzdata2011n.tar.gz

Revision 4343 - Directory Listing - [select for diffs]
Modified Sat Nov 5 19:28:29 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4342
fix indenting

Revision 4342 - Directory Listing - [select for diffs]
Modified Sat Nov 5 15:31:53 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4341
use indent to make this slightly less awful.

Revision 4341 - Directory Listing - [select for diffs]
Modified Sat Nov 5 15:25:53 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4340
use static

Revision 4340 - Directory Listing - [select for diffs]
Modified Sat Nov 5 14:58:35 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4339
use static

Revision 4339 - Directory Listing - [select for diffs]
Modified Sat Nov 5 14:58:21 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4338
make functions and vars static.  Use modern ansi style definitions

Revision 4338 - Directory Listing - [select for diffs]
Modified Sat Nov 5 14:42:11 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4337
make functions and var static

Revision 4337 - Directory Listing - [select for diffs]
Modified Sat Nov 5 14:32:12 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4336
fix type for ioctl request

Revision 4336 - Directory Listing - [select for diffs]
Modified Sat Nov 5 14:15:23 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4335
The maximum length for a geom label is 15 characters as the struct defines the size as 16.  Tell the user the label is too long instead of truncating it!

Revision 4335 - Directory Listing - [select for diffs]
Modified Sat Nov 5 14:04:05 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4334
Remove unused variable

Revision 4334 - Directory Listing - [select for diffs]
Modified Fri Nov 4 22:25:47 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4333
redo the locking and get rid of the task queue.

Revision 4333 - Directory Listing - [select for diffs]
Modified Fri Nov 4 20:23:13 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4332
Avoid signed underflow when interpreter path is shorter than argv[0].

Revision 4332 - Directory Listing - [select for diffs]
Modified Fri Nov 4 17:42:29 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4331
Make a few more changes to get this building on our test machines.

Revision 4331 - Directory Listing - [select for diffs]
Modified Fri Nov 4 17:27:40 2011 UTC (12 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 4330
First pass at fixing CVE-2011-3336, reported by Maksymilian Arciemowicz.

http://securityreason.com/achievement_securityalert/102

Revision 4330 - Directory Listing - [select for diffs]
Modified Sat Oct 29 23:31:34 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4329
Revert zfs related file changes from several days ago. This was a bad idea.

Revision 4329 - Directory Listing - [select for diffs]
Modified Sat Oct 29 19:12:08 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4328
The overflow bug has been found and fixed.   Turn on SSP

Revision 4328 - Directory Listing - [select for diffs]
Modified Thu Oct 27 16:25:32 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4327
release resources and fix possible cause of SSP fault

Revision 4327 - Directory Listing - [select for diffs]
Modified Thu Oct 27 16:09:55 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4326
try to work around target arch symlink bug.  this breaks ports on i386

Revision 4326 - Directory Listing - [select for diffs]
Modified Thu Oct 27 00:26:45 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4325
add additional targets to Makefile that we've already done in Makefile.inc1

Revision 4325 - Directory Listing - [select for diffs]
Modified Wed Oct 26 18:43:28 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4324
Add lib32 to mtree file (finally)

Revision 4324 - Directory Listing - [select for diffs]
Modified Wed Oct 26 17:17:50 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4323
Introduce new clean check (-C)

Drop back down to warns 2.  There's still one warning left and I'm not sure how to get rid of it yet (fsck only).

Revision 4323 - Directory Listing - [select for diffs]
Modified Wed Oct 26 16:23:34 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4322
*** empty log message ***

Revision 4322 - Directory Listing - [select for diffs]
Modified Wed Oct 26 15:44:41 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4321
*** empty log message ***

Revision 4321 - Directory Listing - [select for diffs]
Modified Wed Oct 26 15:10:32 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4320
sanity fixes for compiler

Revision 4320 - Directory Listing - [select for diffs]
Modified Wed Oct 26 14:52:44 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4319
disable ssp for now until we can find the overflow.

Revision 4319 - Directory Listing - [select for diffs]
Modified Wed Oct 26 14:00:17 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4318
c89 required for zfs code

Revision 4318 - Directory Listing - [select for diffs]
Modified Wed Oct 26 13:22:45 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4317
Fix some warnings

Revision 4317 - Directory Listing - [select for diffs]
Modified Wed Oct 26 13:13:30 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4316
Document mDNSResponder and BIND upgrades

Revision 4316 - Directory Listing - [select for diffs]
Modified Wed Oct 26 12:58:13 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4315
Bump version for the following:

BIND 9.6 ESV R5
mDNSResponder
SSP (stack protector) enabled for userland and kernel.
GPT boot

Revision 4315 - Directory Listing - [select for diffs]
Modified Wed Oct 26 12:23:40 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4314
update for 9.6 ESV r5

Revision 4314 - Directory Listing - [select for diffs]
Modified Wed Oct 26 12:01:23 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4312
Resolve merge conflicts.

Revision 4312 - Directory Listing - [select for diffs]
Modified Wed Oct 26 11:58:41 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4310
This commit was generated by cvs2svn to compensate for changes in r4311,
which included commits to RCS files with non-trunk default branches.
Revision 4310 - Directory Listing - [select for diffs]
Modified Wed Oct 26 11:48:21 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4308
resolve merge conflict

Revision 4308 - Directory Listing - [select for diffs]
Modified Wed Oct 26 11:39:05 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4306
This commit was generated by cvs2svn to compensate for changes in r4307,
which included commits to RCS files with non-trunk default branches.
Revision 4306 - Directory Listing - [select for diffs]
Modified Wed Oct 26 02:00:23 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4305
set ssp flags to nothing

Revision 4305 - Directory Listing - [select for diffs]
Modified Wed Oct 26 01:46:44 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4304
remove arch we don't support

Revision 4304 - Directory Listing - [select for diffs]
Modified Wed Oct 26 01:46:29 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4303
remove dead alpha code and fix off by one error in gets

Revision 4303 - Directory Listing - [select for diffs]
Modified Sun Oct 23 16:21:32 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4302
we've got a long way to go before the new release building structure is in place.

Revision 4302 - Directory Listing - [select for diffs]
Modified Sun Oct 23 16:20:13 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4301
add readme until we migrate files here

Revision 4301 - Directory Listing - [select for diffs]
Modified Sun Oct 23 16:17:30 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4300
Catch up conf/files and conf/files.[i386|amd64]

tweak our build environment for gnu99/c99.

Add the stack protector from FreeBSD.  This relies on a random number generator which is seeded at startup of the kernel (kern/init_main.c, kern/stack_protector.c and sys/kernel.h)

Also introduce qpi which supports workstation chipsets using qpi.   It connects to the nexus and then has pci buses under it.

Revision 4300 - Directory Listing - [select for diffs]
Modified Sun Oct 23 15:54:05 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4299
make more c99 friendly

Revision 4299 - Directory Listing - [select for diffs]
Modified Sun Oct 23 15:23:20 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4298
this directory doesn't exist

Revision 4298 - Directory Listing - [select for diffs]
Modified Sun Oct 23 15:05:16 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4297
catch up to recent directory structure.

Revision 4297 - Directory Listing - [select for diffs]
Modified Sun Oct 23 14:41:54 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4296
sync libalias with FreeBSD 7-stable

Revision 4296 - Directory Listing - [select for diffs]
Modified Sun Oct 23 00:54:13 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4295
gcc is irritating

Revision 4295 - Directory Listing - [select for diffs]
Modified Sun Oct 23 00:41:26 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4294
no ssp

Revision 4294 - Directory Listing - [select for diffs]
Modified Sun Oct 23 00:23:38 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4293
get rid of compiler warning stopping the build

Revision 4293 - Directory Listing - [select for diffs]
Modified Sat Oct 22 23:15:43 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4292
remove unused parameter.

Revision 4292 - Directory Listing - [select for diffs]
Modified Sat Oct 22 22:56:21 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4291
not c99 friendly

Revision 4291 - Directory Listing - [select for diffs]
Modified Sat Oct 22 20:59:45 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4290
Introduce crazy hack to work around GCC warning that's killing buildworld.

va_start doesn't like it when you modify the value of an argument to a function before calling it. It makes sense, but it's inconvenient.

Revision 4290 - Directory Listing - [select for diffs]
Modified Sat Oct 22 19:19:33 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4289
Create new targets to aid in the transition to a live cd based install.

Revision 4289 - Directory Listing - [select for diffs]
Modified Sat Oct 22 19:17:47 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4288
don't universally disable NO_WERROR, default to gnu99 for world, enable stack protector

Revision 4288 - Directory Listing - [select for diffs]
Modified Sat Oct 22 19:03:19 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4287
not c99 friendly

Revision 4287 - Directory Listing - [select for diffs]
Modified Sat Oct 22 19:02:28 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4286
gcc can't depend on ssp.. that's insane

Revision 4286 - Directory Listing - [select for diffs]
Modified Sat Oct 22 18:52:17 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4285
c99

Revision 4285 - Directory Listing - [select for diffs]
Modified Sat Oct 22 18:47:49 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4284
no ssp

Revision 4284 - Directory Listing - [select for diffs]
Modified Sat Oct 22 18:42:20 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4283
we have strndup

Revision 4283 - Directory Listing - [select for diffs]
Modified Sat Oct 22 18:33:49 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4282
gnu99 compatable

Revision 4282 - Directory Listing - [select for diffs]
Modified Sat Oct 22 17:12:20 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4281
include top level directory

Revision 4281 - Directory Listing - [select for diffs]
Modified Sat Oct 22 17:11:43 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4280
don't warn for pointer argument passing or assignment with diferent signedness.

Revision 4280 - Directory Listing - [select for diffs]
Modified Sat Oct 22 15:59:44 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4279
use c99

Revision 4279 - Directory Listing - [select for diffs]
Modified Sat Oct 22 14:36:45 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4278
back out until we go c99 in sys

Revision 4278 - Directory Listing - [select for diffs]
Modified Sat Oct 22 14:32:46 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4277
Back this change out for now.  I need to turn on c99 for sys first.

Revision 4277 - Directory Listing - [select for diffs]
Modified Sat Oct 22 14:29:38 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4276
introduce cflow

Revision 4276 - Directory Listing - [select for diffs]
Modified Sat Oct 22 14:28:33 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4275
Add directions for import

Revision 4275 - Directory Listing - [select for diffs]
Modified Sat Oct 22 14:25:21 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4273
Introduce cflow 0.0.6

Revision 4273 - Directory Listing - [select for diffs]
Modified Sat Oct 22 14:24:48 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4272
Virgin import of cflow 0.0.6 (trimmed)

Revision 4272 - Directory Listing - [select for diffs]
Modified Fri Oct 21 15:16:04 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4271
use the c99 standard

Revision 4271 - Directory Listing - [select for diffs]
Modified Thu Oct 20 21:24:37 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4270
Remove freebsd legacy doc releaseng stuf. We'll handle docs in our own way.

Revision 4270 - Directory Listing - [select for diffs]
Modified Thu Oct 20 21:11:31 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4269
sus4

Revision 4269 - Directory Listing - [select for diffs]
Modified Thu Oct 20 20:47:57 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4268
Use makefs instead of the cdrtools to build a release.  This means MidnightBSD releases are self hosting.

Revision 4268 - Directory Listing - [select for diffs]
Modified Thu Oct 20 20:01:08 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4267
*** empty log message ***

Revision 4267 - Directory Listing - [select for diffs]
Modified Thu Oct 20 19:59:13 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4266
Introduce cd9660 support

Revision 4266 - Directory Listing - [select for diffs]
Modified Thu Oct 20 17:46:17 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4265
add mergemaster mergemaster.mtree generator for release process

Revision 4265 - Directory Listing - [select for diffs]
Modified Thu Oct 20 17:21:23 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4264
Add DVD ISO target

Revision 4264 - Directory Listing - [select for diffs]
Modified Thu Oct 20 16:56:45 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4263
0.4 is current now

Revision 4263 - Directory Listing - [select for diffs]
Modified Thu Oct 20 15:22:15 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4262
*** empty log message ***

Revision 4262 - Directory Listing - [select for diffs]
Modified Thu Oct 20 15:03:43 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4261
disable syscalls we don't support yet

Revision 4261 - Directory Listing - [select for diffs]
Modified Thu Oct 20 14:35:55 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4260
Remove "DOS" makefile.  We don't need it and it's not in the upstream distribution either

Revision 4260 - Directory Listing - [select for diffs]
Modified Thu Oct 20 14:33:13 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4259
Document less v436, intr_bind, awk update, ...

Revision 4259 - Directory Listing - [select for diffs]
Modified Thu Oct 20 14:28:04 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4258
Add a few additional files that were added in v436

Revision 4258 - Directory Listing - [select for diffs]
Modified Thu Oct 20 14:27:39 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4257
Fix a few botches with the merge, add less_is_more extern def for pattern.c

Revision 4257 - Directory Listing - [select for diffs]
Modified Thu Oct 20 14:17:05 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4255
resolve merge conflict for v436 import

Revision 4255 - Directory Listing - [select for diffs]
Modified Thu Oct 20 14:11:58 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4253
This commit was generated by cvs2svn to compensate for changes in r4254,
which included commits to RCS files with non-trunk default branches.
Revision 4253 - Directory Listing - [select for diffs]
Modified Thu Oct 20 04:44:28 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4252
add amdsbwd(4) man page.  Update pages for schedulers as the default changed on i386/amd64

Revision 4252 - Directory Listing - [select for diffs]
Modified Thu Oct 20 04:39:31 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4251
add amd southbridge watchdog (sb700 and similar)

Obtained from: FreeBSD 7.3

Revision 4251 - Directory Listing - [select for diffs]
Modified Thu Oct 20 04:28:11 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4250
add amdtemp and atheros ar5416 to notes

Revision 4250 - Directory Listing - [select for diffs]
Modified Thu Oct 20 04:25:20 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4249
add atheros ar5416 wireless and amdtemp sensor to NOTES

Revision 4249 - Directory Listing - [select for diffs]
Modified Wed Oct 19 20:45:33 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4248
attempt to turn on cross compile in hope of fixing make universe

Revision 4248 - Directory Listing - [select for diffs]
Modified Wed Oct 19 20:01:02 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4247
add ; to make some preprocessors happy

Revision 4247 - Directory Listing - [select for diffs]
Modified Wed Oct 19 19:59:08 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4246
forgot to commit these

Revision 4246 - Directory Listing - [select for diffs]
Modified Wed Oct 19 19:57:40 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4245
disable nmount as we haven't ported the kernel nfs lock manager yet

Revision 4245 - Directory Listing - [select for diffs]
Modified Wed Oct 19 15:24:59 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4244
This never made sense in our environment anyway.

Revision 4244 - Directory Listing - [select for diffs]
Modified Wed Oct 19 15:21:54 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4243
add man page for et(4)

Revision 4243 - Directory Listing - [select for diffs]
Modified Wed Oct 19 15:17:28 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4242
Add driver from DragonFly for Agere gigabit and fast ethernet NICs.

Revision 4242 - Directory Listing - [select for diffs]
Modified Wed Oct 19 15:09:55 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4241
add various realtek, broadcom, jmicron, ... devices.

Revision 4241 - Directory Listing - [select for diffs]
Modified Wed Oct 19 15:08:26 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4240
awk 20110810

Revision 4240 - Directory Listing - [select for diffs]
Modified Wed Oct 19 15:05:48 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4239
Update upgrade instructions.

Revision 4239 - Directory Listing - [select for diffs]
Modified Wed Oct 19 15:03:45 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4237
Resolve conflicts

Revision 4237 - Directory Listing - [select for diffs]
Modified Wed Oct 19 15:00:02 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4235
This commit was generated by cvs2svn to compensate for changes in r4236,
which included commits to RCS files with non-trunk default branches.
Revision 4235 - Directory Listing - [select for diffs]
Modified Wed Oct 19 14:52:13 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4234
update root zones to 2011060800

Revision 4234 - Directory Listing - [select for diffs]
Modified Wed Oct 19 13:56:07 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4233
Introduce sysctls for exposing kernel features like PAE, AIO or freebsd 4,5,6 compatibility.

Fix a definition that I missed on a previous commit that was breaking sparc.

Revision 4233 - Directory Listing - [select for diffs]
Modified Tue Oct 18 21:17:06 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4232
Add BUS_BIND_INTR() method to the bus interface to bind an IRQ resource to a CPU.

bus_bind_intr is a wrapper routine for drivers to use. It is supported on all MidnightBSD architectures.

Obtained from: FreeBSD 7.1

Revision 4232 - Directory Listing - [select for diffs]
Modified Tue Oct 18 14:33:04 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4231
Remove lndir from base.  This was added to make it easier for mirports, but since MidnightBSD does not include the rest of X in base it doesn't help much anyway.

Let's assume that anyone using mirports would still need our own X packages.

Revision 4231 - Directory Listing - [select for diffs]
Modified Mon Oct 17 20:20:49 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4230
Start work on interrupt system.  This code will let one assign an interrupt to a core.

Revision 4230 - Directory Listing - [select for diffs]
Modified Mon Oct 17 18:33:33 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4229
timezone++

Revision 4229 - Directory Listing - [select for diffs]
Modified Mon Oct 17 18:32:29 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4228
Time Zone Data v. 2011l (Released 10 October 2011)

Revision 4228 - Directory Listing - [select for diffs]
Modified Mon Oct 17 18:31:18 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4227
Updates from Newsletter VI-9 and VI-10:

    Newsletter VI-9 2011-06-12
    Name changes for Fiji and Myanmar as well as other minor corrections.

    Newsletter VI-10 2011-08-09
    Code elements for South Sudan.

...

Obtained from: http://www.iso.org/iso/country_codes.html

Revision 4227 - Directory Listing - [select for diffs]
Modified Mon Oct 17 10:26:21 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4226
add logic to handle the linux gs register and some additional changes related to cpu affinity.

Be sure to set gpart boot partition (mbr compat) active for some bioses to work.

Revision 4226 - Directory Listing - [select for diffs]
Modified Mon Oct 17 10:25:48 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4225
add logic to handle the linux gs register and some additional changes related to cpu affinity.

Revision 4225 - Directory Listing - [select for diffs]
Modified Mon Oct 17 08:59:45 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4224
add constant for linux gs switch

Revision 4224 - Directory Listing - [select for diffs]
Modified Sun Oct 16 21:11:44 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4223
add gptboot

Revision 4223 - Directory Listing - [select for diffs]
Modified Sun Oct 16 21:11:09 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4222
Update the boot code to support GPT partition schemes.

Revision 4222 - Directory Listing - [select for diffs]
Modified Sun Oct 16 21:03:48 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4221
*** empty log message ***

Revision 4221 - Directory Listing - [select for diffs]
Modified Sun Oct 16 19:23:11 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4220
include uuid_equal and uuid_is_nil from libc.  This will be used by the loader, etc.

Revision 4220 - Directory Listing - [select for diffs]
Modified Sun Oct 16 05:57:34 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4219
uuid_stream can serialize a uuid to a stream

Revision 4219 - Directory Listing - [select for diffs]
Modified Sun Oct 16 05:17:40 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4218
$MidnightBSD$

Introduce constants for SMAP TYPES. This beats 0x01 randomly in code.

Revision 4218 - Directory Listing - [select for diffs]
Modified Sun Oct 16 05:16:21 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4217
Introduce boot partition for gpt and some support for zfs

Revision 4217 - Directory Listing - [select for diffs]
Modified Sat Oct 15 21:45:52 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4216
The start of the EFI GPT partiiton in the PMBR can always be used with CHS addressing.  Don't use 0xff which is hack in the intel spec for use when CHS won't work.  Most PC bioses can't handle this hack and hang or don't detect the disk as bootable.

Revision 4216 - Directory Listing - [select for diffs]
Modified Sat Oct 15 20:50:43 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4215
Minor bugfixes to cd9660

Revision 4215 - Directory Listing - [select for diffs]
Modified Sat Oct 15 20:18:31 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4214
Introduce CPU Affinity in MidnightBSD.

The ULE scheduler is now default on i386 and amd64 architectures.

cpuset(1) allows the user to limit a process to a group of CPU cores to run on using new system calls.

32bit versions of the system calls were also added to support 32bit binaries running on amd64 boxes. libc's
symbol map was modified to include the cpuset* system calls to expose them to userland.

This is based on work by Jeff Roberson from FreeBSD 7.1.

Revision 4214 - Directory Listing - [select for diffs]
Modified Sat Oct 15 05:31:09 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4213
perform cleanup on error case.

Revision 4213 - Directory Listing - [select for diffs]
Modified Sat Oct 15 05:18:45 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4212
timezone value is signed.

Revision 4212 - Directory Listing - [select for diffs]
Modified Sat Oct 15 05:12:20 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4211
refer to linsysfs(5) as it's also a linux emulation piece

Revision 4211 - Directory Listing - [select for diffs]
Modified Sat Oct 15 04:29:35 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4210
reorder struct list to help with alignment

Revision 4210 - Directory Listing - [select for diffs]
Modified Tue Oct 11 00:29:02 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4209
fix debug modifier

Revision 4209 - Directory Listing - [select for diffs]
Modified Tue Oct 11 00:27:28 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4208
sync with freebsd 7-stable

Revision 4208 - Directory Listing - [select for diffs]
Modified Tue Oct 11 00:18:03 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4207
Import service(8) from FreeBSD.

Revision 4207 - Directory Listing - [select for diffs]
Modified Mon Oct 10 23:36:53 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4206
add group management functions.  Fix most warnings and increase WARNS level.

Revision 4206 - Directory Listing - [select for diffs]
Modified Mon Oct 10 22:49:35 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4205
make compiler happy

Revision 4205 - Directory Listing - [select for diffs]
Modified Mon Oct 10 22:37:49 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4204
fix some issues with this man page

Revision 4204 - Directory Listing - [select for diffs]
Modified Mon Oct 10 04:11:32 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4203
sync libdisk with freebsd 7-stable

Revision 4203 - Directory Listing - [select for diffs]
Modified Sun Oct 9 22:03:38 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4202
Supply unique st_dev, st_ino value pair for fstat(2) on pipes.  This is required with sus4 and fixes compatibility problems with several linux centric daemons. This is a port from FreeBSD 10-CURRENT.

Filter out some bad traffic with ipv6 /ipfw.

Revision 4202 - Directory Listing - [select for diffs]
Modified Wed Oct 5 03:53:54 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4201
tag

Revision 4201 - Directory Listing - [select for diffs]
Modified Wed Oct 5 03:52:09 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4199
When script(1) reads EOF from input it starts spinning on zero-byte
reads eating 100% CPU. Fix this by skipping select on STDIN after
reading EOF -- permanently if STDIN is not terminal and for one second
if it is.

Also after reading EOF from STDIN we have to pass it to the program
being scripted. The previous approach was to write zero bytes into the
pseudo-terminal. This does not work because zero-byte write does not
have any effect on read. Fix this by sending VEOF instead.

Obtained from: freebsd

Revision 4199 - Directory Listing - [select for diffs]
Modified Wed Oct 5 02:05:41 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4198
Fix linuxolator unix socket handling after recent security patch.

Revision 4198 - Directory Listing - [select for diffs]
Modified Sat Oct 1 21:25:49 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4197
remove alpha, ia64, pc98 files

Revision 4197 - Directory Listing - [select for diffs]
Modified Sat Oct 1 04:58:18 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4196
Introduce new feature to traceroute(8), AS lookup using -a.  This will prefix entries with AS numbers and you can specify the whois server using -A.

Obtained from: NetBSD/FreeBSD

Revision 4196 - Directory Listing - [select for diffs]
Modified Sat Oct 1 04:47:31 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4195
fetch(1) update

Revision 4195 - Directory Listing - [select for diffs]
Modified Sat Oct 1 04:44:33 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4194
Import fetch(1) from FreeBSD 9-stable on this date

Revision 4194 - Directory Listing - [select for diffs]
Modified Sat Oct 1 04:41:55 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4193
Import changes from FreeBSD 9-STABLE on this date

Revision 4193 - Directory Listing - [select for diffs]
Modified Sat Oct 1 03:26:55 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4192
Document alc(4)work, usb umass/usbdevs

Revision 4192 - Directory Listing - [select for diffs]
Modified Sat Oct 1 02:37:07 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4191
get rid of invalid use of atomic(9)

Revision 4191 - Directory Listing - [select for diffs]
Modified Sat Oct 1 02:34:01 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4190
disable lockups when the network cable isn't plugged in with some alc(4)

Revision 4190 - Directory Listing - [select for diffs]
Modified Sat Oct 1 02:31:45 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4189
don't use stale ip/tcp header pointers

Revision 4189 - Directory Listing - [select for diffs]
Modified Sat Oct 1 02:29:26 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4188
TX mbuf parser for VLAN is still required to enable TX checksum offloading if VLAN hardware tagging is disabled.

Obtained from: FreeBSD  cvs revison 1.1.2.11

Revision 4188 - Directory Listing - [select for diffs]
Modified Sat Oct 1 02:25:43 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4187
fix typos (from upstream)

Revision 4187 - Directory Listing - [select for diffs]
Modified Sat Oct 1 01:32:04 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4186
add quirks for several devices including cyberpower UPS

Revision 4186 - Directory Listing - [select for diffs]
Modified Sat Oct 1 01:29:07 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4185
add several new device quirks for umass.

Revision 4185 - Directory Listing - [select for diffs]
Modified Fri Sep 30 23:08:24 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4184
add manual for gcache

Revision 4184 - Directory Listing - [select for diffs]
Modified Fri Sep 30 22:56:54 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4183
recoverdisk is part of the base system now

Revision 4183 - Directory Listing - [select for diffs]
Modified Fri Sep 30 22:44:52 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4182
Acidently blew away the cypress pata storage controller.

Revision 4182 - Directory Listing - [select for diffs]
Modified Fri Sep 30 22:33:03 2011 UTC (12 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 4181
s/FreeBSD/MidnightBSD

Revision 4181 - Directory Listing - [select for diffs]
Modified Fri Sep 30 13:04:17 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4180
Fix module name in zyd, modernize ural

Revision 4180 - Directory Listing - [select for diffs]
Modified Fri Sep 30 04:21:18 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4179
add support for several epson scanners, an hp scanner 3570C, and change the usb mouse z-axis/wheel handling. Also update our list of devices.

Revision 4179 - Directory Listing - [select for diffs]
Modified Fri Sep 30 03:40:38 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4178
update ath(4) man page

Revision 4178 - Directory Listing - [select for diffs]
Modified Fri Sep 30 03:34:44 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4177
drop ath_hal build file

Revision 4177 - Directory Listing - [select for diffs]
Modified Fri Sep 30 03:22:10 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4176
Drop floppy support.

Revision 4176 - Directory Listing - [select for diffs]
Modified Fri Sep 30 03:05:14 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4175
Document changes to ath(4) and alc(4).

Revision 4175 - Directory Listing - [select for diffs]
Modified Fri Sep 30 03:02:06 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4174
Disable hibernation.  This was causing alc(4) to hibernate when the cable was unplugged and then requiring down/up the interface or at least unplug and plugin the cable several times.

Revision 4174 - Directory Listing - [select for diffs]
Modified Fri Sep 30 02:06:01 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4173
fix path for kernel builds with ath(4)

Revision 4173 - Directory Listing - [select for diffs]
Modified Fri Sep 30 01:28:40 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4172
sync ath(4) with freebsd 7.3

Revision 4172 - Directory Listing - [select for diffs]
Modified Fri Sep 30 01:08:52 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4171
ath(4) update

Revision 4171 - Directory Listing - [select for diffs]
Modified Thu Sep 29 12:58:14 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4170
Modify generic kernel config to add stack(9) and prepare for ath(4) update.

Fix some formatting problems while here.

Revision 4170 - Directory Listing - [select for diffs]
Modified Thu Sep 29 12:49:12 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4169
ath(4) work continues...

Revision 4169 - Directory Listing - [select for diffs]
Modified Thu Sep 29 12:41:28 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4168
cleanup NOTES entries. We added stack(9) awhile back.  Remove dead ATM which was not mpsafe and removed.  alc is a recent addition.  snd_ich is ac97

Revision 4168 - Directory Listing - [select for diffs]
Modified Thu Sep 29 12:16:55 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4166
bump midnightbsd version so it's easier to see the unix domain sockets vulnerability was fixed in the running kernel

Revision 4166 - Directory Listing - [select for diffs]
Modified Thu Sep 29 00:04:55 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4165
document security updates

Revision 4165 - Directory Listing - [select for diffs]
Modified Thu Sep 29 00:03:30 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4163
Validate length of unix domain socket path.  This prevents kernel panics and other scary things.

Revision 4163 - Directory Listing - [select for diffs]
Modified Wed Sep 28 23:45:44 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4162
Fix security issue with corrupt .Z files.

Revision 4162 - Directory Listing - [select for diffs]
Modified Sun Sep 25 21:03:48 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4161
Give distinct error codes for package fails vs mport init problems..  This may help us track down some edge cases.

Revision 4161 - Directory Listing - [select for diffs]
Modified Sun Sep 25 21:00:04 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4160
call usage when there are no arguments.

Revision 4160 - Directory Listing - [select for diffs]
Modified Tue Sep 20 01:52:21 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4159
update web page for live cd

Revision 4159 - Directory Listing - [select for diffs]
Modified Tue Sep 20 01:51:56 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4158
update the list of NICs.  add additional dns server in case opendns isn't working.

Revision 4158 - Directory Listing - [select for diffs]
Modified Mon Sep 19 22:32:39 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4157
delete old freebsd documentation in other languages. this should save source space.

Revision 4157 - Directory Listing - [select for diffs]
Modified Mon Sep 19 22:28:51 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4156
lzma is required for libarchive now.

Revision 4156 - Directory Listing - [select for diffs]
Modified Sun Sep 18 20:20:42 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4155
perl port required for release bye bye

Revision 4155 - Directory Listing - [select for diffs]
Modified Sun Sep 18 20:19:27 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4154
Drop the dependance on perl 5.8.  Since perl is in base, we don't need it to generate the index anymore.

Revision 4154 - Directory Listing - [select for diffs]
Modified Thu Sep 15 02:21:42 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4153
Bump for xz/lzma 5.0.3

Revision 4153 - Directory Listing - [select for diffs]
Modified Thu Sep 15 02:21:01 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4151
xz 5.0.3

Revision 4151 - Directory Listing - [select for diffs]
Modified Thu Sep 15 02:18:58 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4149
This commit was generated by cvs2svn to compensate for changes in r4150,
which included commits to RCS files with non-trunk default branches.
Revision 4149 - Directory Listing - [select for diffs]
Modified Thu Sep 15 02:02:56 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4148
fix usage.. it's u not f

Revision 4148 - Directory Listing - [select for diffs]
Modified Sat Sep 10 23:02:34 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4147
use standardized method m_collapse

Revision 4147 - Directory Listing - [select for diffs]
Modified Sat Sep 10 15:09:11 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4146
document the download command

Revision 4146 - Directory Listing - [select for diffs]
Modified Sat Sep 10 15:05:34 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4145
Improve response message and print a message if the file already exists for mport download <pkgname>

Revision 4145 - Directory Listing - [select for diffs]
Modified Sat Sep 10 05:24:31 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4144
Introduce new "download" command.  It downloads the package into the default system package directory and prints the path if successful.

You don't *need* this command, but if you want to pre-fetch packages before installation later, it could come in handy.  Note it only downloads the package and not it's dependancies.

This behavior is similar to apt-get's download command in debian/ubuntu.  However, it doesn't download to the local directory.

Revision 4144 - Directory Listing - [select for diffs]
Modified Sun Sep 4 16:28:41 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4143
fix irq check

Revision 4143 - Directory Listing - [select for diffs]
Modified Sun Sep 4 16:26:46 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4142
module depends

Revision 4142 - Directory Listing - [select for diffs]
Modified Sun Sep 4 16:24:08 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4141
clarify comment

Revision 4141 - Directory Listing - [select for diffs]
Modified Sun Sep 4 16:23:38 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4140
add CMI120_USB device

Revision 4140 - Directory Listing - [select for diffs]
Modified Sun Sep 4 16:23:15 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4139
clean this up

Revision 4139 - Directory Listing - [select for diffs]
Modified Sun Sep 4 16:22:00 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4138
Use constant for callout_init's mpsafe check

Revision 4138 - Directory Listing - [select for diffs]
Modified Sun Sep 4 16:19:17 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4137
change the ati ixp sb600 identifier

Revision 4137 - Directory Listing - [select for diffs]
Modified Sun Sep 4 16:18:06 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4136
fix comments.

Revision 4136 - Directory Listing - [select for diffs]
Modified Sun Sep 4 16:15:52 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4135
Improve error handling.

Revision 4135 - Directory Listing - [select for diffs]
Modified Sun Sep 4 16:15:01 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4134
fix comment.

Revision 4134 - Directory Listing - [select for diffs]
Modified Sun Sep 4 13:42:39 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4133
Add new sound card RDC M3010

Revision 4133 - Directory Listing - [select for diffs]
Modified Sun Sep 4 13:34:11 2011 UTC (12 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 4132
add support for AMD/ATI 0x43851002 which is supported by the snd_hda device.  This will turn on autodetect for this card.

Revision 4132 - Directory Listing - [select for diffs]
Modified Thu Aug 25 18:10:19 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4131
Use the new settings system to store the last time the index was fetched.  This way we don't try over and over again if we haven't regeneratd server side.

Revision 4131 - Directory Listing - [select for diffs]
Modified Mon Aug 22 02:47:56 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4130
*** empty log message ***

Revision 4130 - Directory Listing - [select for diffs]
Modified Mon Aug 22 02:47:46 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4129
revert the detection change on sparc for now.

Revision 4129 - Directory Listing - [select for diffs]
Modified Mon Aug 22 02:40:55 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4128
*** empty log message ***

Revision 4128 - Directory Listing - [select for diffs]
Modified Mon Aug 22 02:23:52 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4127
add eee pc stuff

Revision 4127 - Directory Listing - [select for diffs]
Modified Mon Aug 22 02:15:32 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4126
add libalias.conf

Revision 4126 - Directory Listing - [select for diffs]
Modified Mon Aug 22 02:12:34 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4125
fix typo.

Revision 4125 - Directory Listing - [select for diffs]
Modified Mon Aug 22 02:10:44 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4124
add zfs

Revision 4124 - Directory Listing - [select for diffs]
Modified Mon Aug 22 02:09:10 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4123
remove unusued peridic processes and add logincheck (security related daily)

Revision 4123 - Directory Listing - [select for diffs]
Modified Mon Aug 22 01:59:25 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4122
Tag it.

Revision 4122 - Directory Listing - [select for diffs]
Modified Mon Aug 22 01:56:30 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4121
Add new kld script to allow one to add kernel modules to load on system startup outside of loader.conf

If you don't need the modules to boot, this is MUCH faster.

Revision 4121 - Directory Listing - [select for diffs]
Modified Sat Aug 20 00:22:01 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4120
Remove forums link for now.  Haven't found a replacement or jforum

Revision 4120 - Directory Listing - [select for diffs]
Modified Sat Aug 13 21:20:12 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4119
change  how libmagic is built.  This allows us to get libmsearch to build properly.

Revision 4119 - Directory Listing - [select for diffs]
Modified Sat Aug 13 20:19:30 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4118
Change from ftw to fts.  ftw will return -1 and stop when a cycle is detected in the file system.  Unfortunetely, crazy things happen like the libxml port that creates a symlink to .

This will allow the whole volume to be indexed.  Cycles are skipped and reported on stderr by the library.

Revision 4118 - Directory Listing - [select for diffs]
Modified Sat Aug 13 17:14:26 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4117
until we change how loops are handled, allow the full text index to get generated even if certain errors occur with the initial index.

Revision 4117 - Directory Listing - [select for diffs]
Modified Sat Aug 13 14:01:23 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4116
document sparc64 GENERIC changes

Revision 4116 - Directory Listing - [select for diffs]
Modified Sat Aug 13 13:52:08 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4115
oops.. i shouldn't have committed this.

Revision 4115 - Directory Listing - [select for diffs]
Modified Sat Aug 13 13:17:20 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4114
Sync with equivalent changes made during 0.3 and 0.4-CURRENT timeline on x86.

Revision 4114 - Directory Listing - [select for diffs]
Modified Sat Aug 13 02:18:47 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4113
GEOM_GPT was renamed GEOM_PART_GPT... forgot to fix it here.

Revision 4113 - Directory Listing - [select for diffs]
Modified Tue Aug 9 12:50:17 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4112
add basic input validation.

Revision 4112 - Directory Listing - [select for diffs]
Modified Tue Aug 9 12:38:55 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4111
Until I get time to design this properly, let's block out some paths that we don't want to index including
/var /tmp /proc /dev /usr/obj  Most of these wouldn't be indexed because of file type or permissions anyway, but it's faster to check the path rather than let it be done farther down in the code.

Revision 4111 - Directory Listing - [select for diffs]
Modified Sun Aug 7 15:46:26 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4110
play some games.

Revision 4110 - Directory Listing - [select for diffs]
Modified Sun Aug 7 15:44:51 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4109
add new entry for msearch.

Revision 4109 - Directory Listing - [select for diffs]
Modified Sun Aug 7 15:41:36 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4108
make permissions easier by putting these in a subdirectory. sqlite makes journal files

Revision 4108 - Directory Listing - [select for diffs]
Modified Sun Aug 7 15:39:40 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4107
improve error messages.

Revision 4107 - Directory Listing - [select for diffs]
Modified Sun Aug 7 15:26:46 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4106
add some basic error reporting.

Revision 4106 - Directory Listing - [select for diffs]
Modified Sun Aug 7 06:25:00 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4105
libz and sqlite3

Revision 4105 - Directory Listing - [select for diffs]
Modified Sun Aug 7 06:24:41 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4104
libz and sqlite

Revision 4104 - Directory Listing - [select for diffs]
Modified Sun Aug 7 06:21:05 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4103
add libmsearch

Revision 4103 - Directory Listing - [select for diffs]
Modified Sun Aug 7 06:17:57 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4102
disable debugging.

Revision 4102 - Directory Listing - [select for diffs]
Modified Sun Aug 7 06:16:43 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4101
explicitly add zlib as we need it for libmagic and the compress routines

Revision 4101 - Directory Listing - [select for diffs]
Modified Sun Aug 7 04:05:16 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4100
Document new msearch(1) utility.

Revision 4100 - Directory Listing - [select for diffs]
Modified Sun Aug 7 02:58:18 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4099
Add man page for msearch(1) and references in find and locate.

Revision 4099 - Directory Listing - [select for diffs]
Modified Sun Aug 7 02:37:02 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4098
fix some warnings.

Revision 4098 - Directory Listing - [select for diffs]
Modified Sun Aug 7 02:28:50 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4097
Don't make copies of all the strings getting passed into sqlite.  It uses more ram than necessary.

Revision 4097 - Directory Listing - [select for diffs]
Modified Sun Aug 7 02:12:26 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4096
Fix formatting and some memory leaks.

Revision 4096 - Directory Listing - [select for diffs]
Modified Sun Aug 7 01:43:52 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4095
disable debugging.

Revision 4095 - Directory Listing - [select for diffs]
Modified Sun Aug 7 01:42:46 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4094
don't allow indexer to run as root

Revision 4094 - Directory Listing - [select for diffs]
Modified Sun Aug 7 01:33:09 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4093
default mserach build to no for now.  (it does use a lot of space)

While we're at it, fix a longstanding bug where we're pointed at the wrong place for packages.  This will need to be updated for msearch eventually

Revision 4093 - Directory Listing - [select for diffs]
Modified Sun Aug 7 01:28:59 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4092
add weekly periodic script for building the msearch database.

Revision 4092 - Directory Listing - [select for diffs]
Modified Sun Aug 7 01:28:29 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4091
connect msearch to build.

Revision 4091 - Directory Listing - [select for diffs]
Modified Sun Aug 7 01:27:52 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4090
connect msearch.index to build.

Revision 4090 - Directory Listing - [select for diffs]
Modified Sun Aug 7 01:27:18 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4089
connect libmsearch to build.

Revision 4089 - Directory Listing - [select for diffs]
Modified Sun Aug 7 00:49:47 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4088
don't do multiple match statements as it doesn't make sense for full text

Revision 4088 - Directory Listing - [select for diffs]
Modified Sat Aug 6 23:44:44 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4087
handle update case.

Revision 4087 - Directory Listing - [select for diffs]
Modified Sat Aug 6 23:40:59 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4085
bump the pkgconfig file

Revision 4085 - Directory Listing - [select for diffs]
Modified Sat Aug 6 23:38:41 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4083
This commit was generated by cvs2svn to compensate for changes in r4084,
which included commits to RCS files with non-trunk default branches.
Revision 4083 - Directory Listing - [select for diffs]
Modified Sat Aug 6 23:14:51 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4082
ok i botched this.  add the getopt and else if ffor the tflag.

Revision 4082 - Directory Listing - [select for diffs]
Modified Sat Aug 6 23:10:29 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4081
add tflag to only update the fulltext index.

Revision 4081 - Directory Listing - [select for diffs]
Modified Sat Aug 6 23:05:38 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4080
connect compress, add license text that was missing.

Revision 4080 - Directory Listing - [select for diffs]
Modified Sat Aug 6 23:03:13 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4079
add rank and compress functions.  compress isn't hooked up yet.

Revision 4079 - Directory Listing - [select for diffs]
Modified Sat Aug 6 23:02:51 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4078
add ranking

Revision 4078 - Directory Listing - [select for diffs]
Modified Sat Aug 6 23:02:26 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4077
add rank flag aka -r to show ranks for full text queries

Revision 4077 - Directory Listing - [select for diffs]
Modified Sat Aug 6 02:22:58 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4076
install the extension header.

Revision 4076 - Directory Listing - [select for diffs]
Modified Fri Aug 5 03:02:09 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4075
add code to index fulltext

Revision 4075 - Directory Listing - [select for diffs]
Modified Fri Aug 5 03:01:12 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4074
add fulltext search functions.  Note that "both" mode isn't setup yet.

Revision 4074 - Directory Listing - [select for diffs]
Modified Fri Aug 5 03:00:36 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4073
-t flag uses fulltext search mode

Revision 4073 - Directory Listing - [select for diffs]
Modified Fri Aug 5 02:25:59 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4072
drop max index size to 1MB

Revision 4072 - Directory Listing - [select for diffs]
Modified Fri Aug 5 02:23:40 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4071
Add support for libmagic to detect file type.  We only index text/plain for now.

use fts4 in sqlite3.

Revision 4071 - Directory Listing - [select for diffs]
Modified Thu Aug 4 03:07:17 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4070
enable fts

Revision 4070 - Directory Listing - [select for diffs]
Modified Thu Aug 4 01:11:39 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4069
Start creating fulltext search capability.  Add functions to open, close and index files.

Revision 4069 - Directory Listing - [select for diffs]
Modified Wed Aug 3 02:49:31 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4068
Enable FTS3 in SQLITE3 for some experiments with full text search.

Revision 4068 - Directory Listing - [select for diffs]
Modified Mon Aug 1 23:17:45 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4067
setup the limit in the sql.

Revision 4067 - Directory Listing - [select for diffs]
Modified Mon Aug 1 23:16:41 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4066
we'll do the limit on the sql side..

Revision 4066 - Directory Listing - [select for diffs]
Modified Mon Aug 1 22:51:15 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4065
add the l flag to limit results.

Revision 4065 - Directory Listing - [select for diffs]
Modified Mon Aug 1 02:55:56 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4064
modify search to support multiple like queries and together. Fix some memory allocation issues. We still need to do some input validation.

Revision 4064 - Directory Listing - [select for diffs]
Modified Mon Aug 1 02:44:16 2011 UTC (12 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 4063
provide the term count.

Revision 4063 - Directory Listing - [select for diffs]
Modified Mon Aug 1 01:46:12 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4062
Disable the index on files.path for now.  It's doubling the size of the index.

Run vacuum when doing a big build.

Filter out any non "real" files.

Revision 4062 - Directory Listing - [select for diffs]
Modified Mon Aug 1 00:43:31 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4061
alias as open_hash so it's easier to find.

Revision 4061 - Directory Listing - [select for diffs]
Modified Sun Jul 31 23:16:59 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4060
add -r to delete the database.. "reset".  Until we can prune this will help with reindexing.

Revision 4060 - Directory Listing - [select for diffs]
Modified Sun Jul 31 23:05:07 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4059
Add new code to handle updates to the index as well.

We have not covered pruning yet!

Revision 4059 - Directory Listing - [select for diffs]
Modified Sun Jul 31 21:27:08 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4058
add code to walk the file hier using ftw(3).  We still need to handle "updates" to the index properly.

Revision 4058 - Directory Listing - [select for diffs]
Modified Sun Jul 31 21:25:52 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4057
allow indexer to take a path as an argument and if no arguments are given, default to indexing /

Revision 4057 - Directory Listing - [select for diffs]
Modified Sun Jul 24 15:59:08 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4056
Add new mport_setting_get and mport_setting_set functions to allow users to customize settings.  The sqlite3 master database now contains a settings table with name and val fields.

There are two obvious uses for this:

1. defining the country the user is in to pick the nearest mirror list.
2. storing the last time we fetched an index so it doesn't  try to do it all the time when it's out of date and we haven't generated one on stargazer yet.

Revision 4056 - Directory Listing - [select for diffs]
Modified Sun Jul 24 15:14:51 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4055
Start of indexer for msearch.

Revision 4055 - Directory Listing - [select for diffs]
Modified Sun Jul 24 15:11:27 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4054
This is the frontend for libmsearch.

Revision 4054 - Directory Listing - [select for diffs]
Modified Sun Jul 24 15:07:37 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4053
Start of the experimental msearch project.  This will be a sqlite backed search tool that indexes the contents of the filesystem (including contents of files).

Think locate with more features.  There is some inspiration with apple's spotlight.

Revision 4053 - Directory Listing - [select for diffs]
Modified Sat Jul 23 22:15:08 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4052
This is what i get for being lazy.

Revision 4052 - Directory Listing - [select for diffs]
Modified Sat Jul 23 21:42:39 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4051
Bump version or cpufreq changes.

Revision 4051 - Directory Listing - [select for diffs]
Modified Sat Jul 23 21:24:58 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4050
convert battery capacity/rate only when requested.

Revision 4050 - Directory Listing - [select for diffs]
Modified Sat Jul 23 21:06:15 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4049
td_osd is at the end of struct thread to avoid breaking the ABI
as a side effect it is outside of the td_startzero-td_endzero range,
requiring it to be separately zeroed

Revision 4049 - Directory Listing - [select for diffs]
Modified Sat Jul 23 21:00:48 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4048
include missing ;

Revision 4048 - Directory Listing - [select for diffs]
Modified Sat Jul 23 20:57:18 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4047
cpufreq: allocate long-lived buffer for handling of sysctl
requests.  This stops crazy alloc/free cycle when powerd
is running aggresively.

Revision 4047 - Directory Listing - [select for diffs]
Modified Sat Jul 23 20:49:06 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4046
try to obtain max mhz on cpufreq attach instead of the first request. this works around problems with HTT cores causing a "slow" loop.

Revision 4046 - Directory Listing - [select for diffs]
Modified Mon Jul 18 01:12:23 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4045
Link local traffic ftw

Revision 4045 - Directory Listing - [select for diffs]
Modified Mon Jul 18 00:54:45 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4044
Rewrite the rules to actually use ip6 for the desktop case.

Revision 4044 - Directory Listing - [select for diffs]
Modified Mon Jul 18 00:38:12 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4043
These rules are totally screwed up.

Revision 4043 - Directory Listing - [select for diffs]
Modified Mon Jul 18 00:29:19 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4042
Turn on the ipv6 firewall by default.

Revision 4042 - Directory Listing - [select for diffs]
Modified Sun Jul 17 21:58:23 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4041
our own KAME_VERSION

Revision 4041 - Directory Listing - [select for diffs]
Modified Sun Jul 17 19:15:55 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4040
allow multiple port updates as well.

Revision 4040 - Directory Listing - [select for diffs]
Modified Sun Jul 17 19:10:30 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4039
Hack to allow multiple ports to be deleted at the same time.

Revision 4039 - Directory Listing - [select for diffs]
Modified Fri Jul 15 12:10:36 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4038
Remove statement about debugging interface.  This is used in several places.

Revision 4038 - Directory Listing - [select for diffs]
Modified Thu Jul 14 00:25:03 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4037
add missing code

Revision 4037 - Directory Listing - [select for diffs]
Modified Wed Jul 13 13:02:50 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4036
add i915_suspend.c to the kernel module.

Revision 4036 - Directory Listing - [select for diffs]
Modified Wed Jul 13 12:56:33 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4035
Catch notes up.

Revision 4035 - Directory Listing - [select for diffs]
Modified Wed Jul 13 01:37:20 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4034
Part 4 of 4: Update geom and sync with freebsd 7.1

Revision 4034 - Directory Listing - [select for diffs]
Modified Wed Jul 13 01:33:21 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4033
Fix examples.

Revision 4033 - Directory Listing - [select for diffs]
Modified Wed Jul 13 01:32:15 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4032
fix example

Revision 4032 - Directory Listing - [select for diffs]
Modified Wed Jul 13 01:23:15 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4031
add options for new geom part types

Revision 4031 - Directory Listing - [select for diffs]
Modified Wed Jul 13 01:20:28 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4030
Part 3 of 4: Update geom and sync with freebsd 7.1

Revision 4030 - Directory Listing - [select for diffs]
Modified Wed Jul 13 01:17:34 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4029
add geom_linux_lvm(4) man page

Revision 4029 - Directory Listing - [select for diffs]
Modified Wed Jul 13 01:14:00 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4028
Part 2 of 4: Update geom and sync with freebsd 7.1

Update the kernel geom abi

Revision 4028 - Directory Listing - [select for diffs]
Modified Wed Jul 13 01:09:49 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4027
Part 1 of 4: Update geom and sync with freebsd 7.1.

Fix up modules.

Revision 4027 - Directory Listing - [select for diffs]
Modified Wed Jul 13 01:05:15 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4026
Fix a spelling error and add a define needed for a gpart sync with freebsd

Revision 4026 - Directory Listing - [select for diffs]
Modified Wed Jul 13 01:02:44 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4025
Introduce apple part map and vtoc part map for sparc.

For now, we're just going to use the freebsd-* names for partitions but this will change in the future.

Revision 4025 - Directory Listing - [select for diffs]
Modified Wed Jul 13 00:58:24 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4024
Teach disklabel about several file system types

Revision 4024 - Directory Listing - [select for diffs]
Modified Tue Jul 12 23:08:55 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4023
include the intel i915 suspend functionality and support for amd radeon r600*

Revision 4023 - Directory Listing - [select for diffs]
Modified Sun Jul 10 21:10:28 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4022
we don't have sun4v.. wtf

Revision 4022 - Directory Listing - [select for diffs]
Modified Sun Jul 10 21:01:53 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4021
Ack!

Revision 4021 - Directory Listing - [select for diffs]
Modified Sun Jul 10 20:49:30 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4020
migrate sparc to kdb_enter_why

Revision 4020 - Directory Listing - [select for diffs]
Modified Sun Jul 10 20:48:09 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4019
kdb_why_powerfail

Revision 4019 - Directory Listing - [select for diffs]
Modified Sun Jul 10 20:47:03 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4018
kdb_enter_why for MAC

Revision 4018 - Directory Listing - [select for diffs]
Modified Sun Jul 10 20:46:12 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4017
migrate netgraph to kdb_enter_why

Revision 4017 - Directory Listing - [select for diffs]
Modified Sun Jul 10 20:44:06 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4016
kdb_enter_why

Revision 4016 - Directory Listing - [select for diffs]
Modified Sun Jul 10 20:35:06 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4015
kdb_enter_why time

Revision 4015 - Directory Listing - [select for diffs]
Modified Sun Jul 10 20:33:56 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4014
kdb_entry_why time

Revision 4014 - Directory Listing - [select for diffs]
Modified Sun Jul 10 17:09:30 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4013
migrate to kdb_enter_why

Revision 4013 - Directory Listing - [select for diffs]
Modified Sun Jul 10 17:01:03 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4012
Introduce kdb_enter_why as an alternative to kdb_enter.  It allows you to specify why you're going into the debugger so scripts can be selected.

FreeBSD 8 has this functionality as kdb_enter.  I considered just merging it that way, but it would break binary compatibility with freebsd kernel modules which I don't want to do yet.  (think nvidia graphics driver)

Revision 4012 - Directory Listing - [select for diffs]
Modified Sun Jul 10 15:42:48 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4011
Rewrite the upgrade logic to try to upgrade packages from a bottom up order using recursion. This is necessary because package install scripts may set things up and assume that their downdepends have run.

This is one of two problems discovered during the "stargazer" test. The second is related to ports with the same name but different versions.  I've modified the ports system to pay attention to the pkgnamesuffix which will help in some cases, but say you have
python-2.4 and python-2.5.  These are distinct ports and can be installed at the same time. One idea is to use the CONFLICTS secions to know if it's safe to install two ports at the same time.  if it is, assume 2.4 doesn't get updated to 2.5.  Their presense in the index is also a clue, but the version check logic isn't that smart yet.  This will be dealt with in a later update.

I've left in some print statements as this code is untested until a new magus run can be done on i386. Use at your own risk!

Revision 4011 - Directory Listing - [select for diffs]
Modified Sun Jul 10 01:54:20 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4010
Fix a memory leak

Revision 4010 - Directory Listing - [select for diffs]
Modified Sun Jul 10 01:51:36 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4009
add a newline to the output so it's not so ugly.

Revision 4009 - Directory Listing - [select for diffs]
Modified Sun Jul 10 01:50:42 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4008
Fix a longstanding bug with the deleteall feature. Check for updepends before deleting a port.  We want to delete them from top down in case the deinstall scripts do anything and also so we don't get warnings about ports depending on downdepends.

Revision 4008 - Directory Listing - [select for diffs]
Modified Sun Jul 10 01:01:11 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4007
Remove missing file that's not checked into cvs.

Revision 4007 - Directory Listing - [select for diffs]
Modified Sat Jul 9 20:21:21 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4006
add missing comma

Revision 4006 - Directory Listing - [select for diffs]
Modified Sat Jul 9 20:20:37 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4005
add cpufreq(1)

Revision 4005 - Directory Listing - [select for diffs]
Modified Sat Jul 9 20:19:41 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4004
add cpufreq(1) reference

Revision 4004 - Directory Listing - [select for diffs]
Modified Sat Jul 9 20:17:25 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4003
Add cpufreq(1).  cpufreq is a utility to monitor the current cpu frequency easily.  powerd(8) and cpufreq(4) can change the frequency to conserve energy and it's useful to monitor this at times.

The sysctl interface is handy, but annoying for one off's like this.

Revision 4003 - Directory Listing - [select for diffs]
Modified Sat Jul 9 14:46:39 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4002
add some oldies but goodies from MirBSD.

Revision 4002 - Directory Listing - [select for diffs]
Modified Wed Jul 6 17:35:58 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4001
hande race between device_pager and devsw in a graceful manner.

Revision 4001 - Directory Listing - [select for diffs]
Modified Sun Jul 3 23:37:03 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 4000
mksh ftw

Revision 4000 - Directory Listing - [select for diffs]
Modified Sat Jul 2 15:44:23 2011 UTC (12 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3999
Remove ifdef from 4.3BSD Net/2.  I don't think it's ever going to be done. :)

Revision 3999 - Directory Listing - [select for diffs]
Modified Tue Jun 28 02:45:21 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3998
Shouldn't have removed this one.  This fixes build on stargazer.

Revision 3998 - Directory Listing - [select for diffs]
Modified Tue Jun 28 02:22:32 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3997
remove unnecessary includes

Revision 3997 - Directory Listing - [select for diffs]
Modified Sun Jun 26 14:51:31 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3996
default this to vi too.  if we have a real problem one can always set it manually to /bin/mined or /bin/ed

Revision 3996 - Directory Listing - [select for diffs]
Modified Sun Jun 26 14:50:00 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3995
default to vi not ed..

Revision 3995 - Directory Listing - [select for diffs]
Modified Fri Jun 24 00:35:13 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3994
Part 2 of SOCK_CLOEXEC and SOCK_NONBLOCK change for fedora 10 support.

Revision 3994 - Directory Listing - [select for diffs]
Modified Fri Jun 24 00:34:13 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3993
Modify linuxolator to include SOCK_CLOEXEC and SOCK_NONBLOCK.  This allows fedora 10 libs to resolve dns entries.

Revision 3993 - Directory Listing - [select for diffs]
Modified Thu Jun 23 12:41:19 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3992
mostly cosmetic changes

Revision 3992 - Directory Listing - [select for diffs]
Modified Thu Jun 23 00:23:33 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3991
fix a bug with linux & truss with descendantsof linux proccess.

Revision 3991 - Directory Listing - [select for diffs]
Modified Thu Jun 23 00:21:32 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3990
sync with freebsd 7.0

Revision 3990 - Directory Listing - [select for diffs]
Modified Wed Jun 22 23:56:22 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3989
some apps are trying to use LINUX_FUTEX_WAIT_BITSET and LINUX_FUTEX_WAIT_REQUEUE_PI which are not supported by 2.6.16 kernels.. only 2.6.26+.

Log it and throw a no-op if these are not defined and REALTIME clock is requested.

Revision 3989 - Directory Listing - [select for diffs]
Modified Wed Jun 22 23:43:48 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3987
add constats for FUTEX_CLOCK_REALTIME.  Note this is not supported as it's part of linux 2.6.25/2.6.26

Revision 3987 - Directory Listing - [select for diffs]
Modified Sun Jun 19 18:44:09 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3986
MidnightBSD has it's own vendor pool now!

Revision 3986 - Directory Listing - [select for diffs]
Modified Thu Jun 16 03:22:51 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3985
Add preliminary code to check if there is an update in the index over the installed version.  This is a bit backwords, but we want to avoid the overhead of reading the package meta info for everything currently installed.  It allows us to skip quite a few things and we're already loading the new update index anyway.

This could potentially save a LOT of bandwidth as we test packages md5 sums meaning we download them in the old case.

Revision 3985 - Directory Listing - [select for diffs]
Modified Tue Jun 14 12:36:23 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3984
midnightbsdize this

Revision 3984 - Directory Listing - [select for diffs]
Modified Tue Jun 14 02:39:37 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3983
don't ignore the unknown options.. show usage in this case

Revision 3983 - Directory Listing - [select for diffs]
Modified Tue Jun 14 02:32:01 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3982
fix issues found with static analysis

Revision 3982 - Directory Listing - [select for diffs]
Modified Tue Jun 14 02:30:32 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3981
fix garbage operand

Revision 3981 - Directory Listing - [select for diffs]
Modified Tue Jun 14 02:29:03 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3980
we don't need this

Revision 3980 - Directory Listing - [select for diffs]
Modified Tue Jun 14 02:26:38 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3979
fix a few minor issues as seen with clang static analyzer

Revision 3979 - Directory Listing - [select for diffs]
Modified Tue Jun 14 02:22:33 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3978
fix minor bug

Revision 3978 - Directory Listing - [select for diffs]
Modified Tue Jun 14 02:07:50 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3977
get rid of irrelevant assignments as seen with llvm static analyzer

Revision 3977 - Directory Listing - [select for diffs]
Modified Tue Jun 14 01:48:45 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3976
use a default return value

Revision 3976 - Directory Listing - [select for diffs]
Modified Tue Jun 14 01:43:26 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3975
fix another bug

Revision 3975 - Directory Listing - [select for diffs]
Modified Tue Jun 14 01:41:26 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3974
fix a few minor bugs

Revision 3974 - Directory Listing - [select for diffs]
Modified Mon Jun 13 03:14:06 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3973
remove old files

Revision 3973 - Directory Listing - [select for diffs]
Modified Sun Jun 12 20:06:20 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3972
mksh updated

Revision 3972 - Directory Listing - [select for diffs]
Modified Sun Jun 12 20:02:37 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3971
Update dot files, but retain the setvar hack for freebsd ash compatibility.

Revision 3971 - Directory Listing - [select for diffs]
Modified Sun Jun 12 19:54:38 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3969
Update for MKSH R40

Revision 3969 - Directory Listing - [select for diffs]
Modified Sun Jun 12 19:36:23 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3967
This commit was generated by cvs2svn to compensate for changes in r3968,
which included commits to RCS files with non-trunk default branches.
Revision 3967 - Directory Listing - [select for diffs]
Modified Sun Jun 12 19:15:26 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3966
Remove perl 5.10.x stuff from base as we've updated it recently

Revision 3966 - Directory Listing - [select for diffs]
Modified Sat Jun 11 21:01:27 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3965
default linux emulatino to 2.6.16.

Revision 3965 - Directory Listing - [select for diffs]
Modified Thu Jun 9 12:51:00 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3964
IPFW has two flaws in its handling of IPv6 packets that arrive in
fragments. First, it will deny an IPv6 packet that arrives with
a fragmentation header which has an offset of zero, but no
further fragments. This type of packet is explicitly allowed in
RFC 2460:

In response to an IPv6 packet that is sent to an IPv4 destination
(i.e., a packet that undergoes translation from IPv6 to IPv4),
the originating IPv6 node may receive an ICMP Packet Too Big
message reporting a Next-Hop MTU less than 1280. In that
case, the IPv6 node is not required to reduce the size of
subsequent packets to less than 1280, but must include a
Fragment header in those packets so that the IPv6-to-IPv4
translating router can obtain a suitable Identification value
to use in resulting IPv4 fragments. Note that this means the
payload may have to be reduced to 1232 octets (1280 minus 40
for the IPv6 header and 8 for the Fragment header), and
smaller still if additional extension headers are used.

The second flaw is that the code allows IPv6 packets that arrive in
fragments to avoid transport-layer rules. For example, consider this
ruleset:

00001 deny tcp from 2607:f0b0:0:6:209:87:239:67 80 to 2404:138:4002:4000:205:1cff:fe11:beff dst-port 37822
65534 allow ip from any to any
65535 deny ip from any to any

Rule 1 will not be applied to the fragment with offset zero
because the MF bit is intentionally included in the offset
variable used in ipfw_chk, so the check to see if the transport
header is found in fragment zero will fail. Instead, the rule
will be skipped over, and the next rule which in this example is
an allow will accept the fragment. Where an administrator might
have expected the traffic to be blocked it will instead be
allowed through the firewall.

Attached is a revised patch fixing a third flaw. ipfw will reject
very small IPv6 fragments when it tries to pullup the transport
header. This relaxes the code to be consistent with the IPv4 path
where it only tries to pull up the transport header on fragments with
offset zero.

Reported to FreeBSD by Matthew Luckie , pr 145733.

Revision 3964 - Directory Listing - [select for diffs]
Modified Mon Jun 6 23:49:44 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3963
stream end is not an error condition per se.  write the data out for the index.bz2 properly :)

Revision 3963 - Directory Listing - [select for diffs]
Modified Sun Jun 5 16:49:54 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3962
Most of the other BSDs define CPPFLAGS in addition to CFLAGS and CXXFLAGS.  This fixes some compatibility problems with their BSDmakefiles

Revision 3962 - Directory Listing - [select for diffs]
Modified Sun Jun 5 05:16:35 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3961
Remove some ancient entries that we never shipped.

remove perl 5.0 and 5.6 entries as we never shipped this in base.

remove perl entries that we DO ship now.

Revision 3961 - Directory Listing - [select for diffs]
Modified Sun Jun 5 05:12:13 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3960
On sigint or sigquit, return an error from mport_xsystem so we know something happened. This has to do with system(3) behavior.  I still wonder if this should be a hand roled solution due to environmnt "sanity"

Cache the  getsysctlbyname call so we don't make all these expensive calls.  It speeds up ports that do a lot of @exec statements in the plist.

Revision 3960 - Directory Listing - [select for diffs]
Modified Sun Jun 5 02:36:39 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3959
patch a few files causing build errors.

Revision 3959 - Directory Listing - [select for diffs]
Modified Fri Jun 3 23:04:39 2011 UTC (12 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3958
Use real mode to invoke BIOS routines rather than virtual 86 mode.

Obtained from: FreeBSD 7.1 circa Aug 2008

Revision 3958 - Directory Listing - [select for diffs]
Modified Sun May 29 21:39:07 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3957
*** empty log message ***

Revision 3957 - Directory Listing - [select for diffs]
Modified Sat May 28 19:20:18 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3956
fix comment..  too many  ins

Revision 3956 - Directory Listing - [select for diffs]
Modified Sat May 28 19:19:35 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3955
Eliminate dead store.

Revision 3955 - Directory Listing - [select for diffs]
Modified Sat May 28 19:11:40 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3953
This is a VERY ugly hack.  It allows us to run *some* binaries from FreeBSD 7.1 including newer versions of Opera.

Revision 3953 - Directory Listing - [select for diffs]
Modified Sat May 28 17:54:10 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3952
Document and bump midnightbsd version for bind 9 fix

Revision 3952 - Directory Listing - [select for diffs]
Modified Sat May 28 17:52:01 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3951
Fix a highly exploitable vulnerability in BIND caching nameserver feature.

CVE-2011-1910

Revision 3951 - Directory Listing - [select for diffs]
Modified Fri May 27 01:01:59 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3950
Document newfs change.

Revision 3950 - Directory Listing - [select for diffs]
Modified Fri May 27 00:58:26 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3949
 Raise the default blocksize for UFS/FFS filesystems from
 16K to 32K and the default fragment size from 2K to 4K.

 The rational is that most disks are now running with 4K
 sectors.  While they can (slowly) simulate 512-byte sectors
 by doing a read-modify-write, it is desirable to avoid this
 functionality.  By raising the minimum filesystem allocation
 to 4K, the filesystem will never trigger the small sector
 emulation.

 Also, the growth of disk sizes has lead us to double the
 default block size about every ten years.  The rise from 8K
 to 16K blocks was done in 2001.  So, by the 10-year metric,
 the time has come for 32K blocks.

Obtained from: FreeBSD, mckusick

Revision 3949 - Directory Listing - [select for diffs]
Modified Sat May 21 20:00:01 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3948
mention perl and mport changes.

Revision 3948 - Directory Listing - [select for diffs]
Modified Sat May 21 19:36:19 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3947
No longer include the private header.  We made the one function using it public.

Revision 3947 - Directory Listing - [select for diffs]
Modified Sat May 21 19:35:29 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3946
make mport_file_exists a public api function.

Revision 3946 - Directory Listing - [select for diffs]
Modified Sat May 21 19:26:24 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3945
Disable debug flag

Revision 3945 - Directory Listing - [select for diffs]
Modified Sat May 21 19:16:42 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3944
Document new deleteall command.

Revision 3944 - Directory Listing - [select for diffs]
Modified Sat May 21 16:15:33 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3943
Add new command, deleteall.  This allows you to remove all mport  packages currently installed on a system (for big upgrades or testing)

Revision 3943 - Directory Listing - [select for diffs]
Modified Fri May 20 13:19:53 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3942
Doh. unexpand modified the text in the middle of the license even though -a wasn't specified.

Revision 3942 - Directory Listing - [select for diffs]
Modified Fri May 20 13:18:50 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3941
style(9)

Revision 3941 - Directory Listing - [select for diffs]
Modified Fri May 20 13:15:08 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3940
style(9) cleanup

Revision 3940 - Directory Listing - [select for diffs]
Modified Fri May 20 12:50:13 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3939
Display a warning when the mport index is out of date, but don't terminate the program if one was loaded.

Revision 3939 - Directory Listing - [select for diffs]
Modified Fri May 20 12:49:37 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3938
The mport index should not be unloaded if a recentish version cannot be downloaded.  If we have one to work with, use it.  This allows mport list & friends to work when the index hasn't been updated on stargazer for some time or when network connectivity is limited. You can at least compare what you have installed to the last index.

Refactor the mirror list routine to return the number of mirrors.  We may want this available later for display in a UI and it's helpful when debugging.

Revision 3938 - Directory Listing - [select for diffs]
Modified Fri May 20 12:07:11 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3936
the error message is awkward.

Revision 3936 - Directory Listing - [select for diffs]
Modified Thu May 19 23:03:47 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3934
This commit was generated by cvs2svn to compensate for changes in r3935,
which included commits to RCS files with non-trunk default branches.
Revision 3934 - Directory Listing - [select for diffs]
Modified Thu May 19 21:13:22 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3933
5.14.0, not 5.10

Revision 3933 - Directory Listing - [select for diffs]
Modified Wed May 18 14:00:22 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3932
Bump midnightbsd version for perl 5.14.0 & sendmail 8.14.5 in src

Revision 3932 - Directory Listing - [select for diffs]
Modified Wed May 18 13:59:13 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3931
Perl & sendmail have been updated.

Revision 3931 - Directory Listing - [select for diffs]
Modified Wed May 18 13:56:00 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3930
Regenerate manifest for 5.14

Revision 3930 - Directory Listing - [select for diffs]
Modified Wed May 18 13:53:04 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3929
Resolve merge conflicts with perl 5.14.0 import

Revision 3929 - Directory Listing - [select for diffs]
Modified Wed May 18 13:49:51 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3928
resolve merge conflict

Revision 3928 - Directory Listing - [select for diffs]
Modified Wed May 18 13:33:34 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3925
This commit was generated by cvs2svn to compensate for changes in r3927,
which included commits to RCS files with non-trunk default branches.
Revision 3925 - Directory Listing - [select for diffs]
Modified Tue May 17 22:19:51 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3923
This commit was generated by cvs2svn to compensate for changes in r3924,
which included commits to RCS files with non-trunk default branches.
Revision 3923 - Directory Listing - [select for diffs]
Modified Mon May 9 13:47:28 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3922
Release SP's refcount in key_get_spdbyid().

Revision 3922 - Directory Listing - [select for diffs]
Modified Sun May 8 01:38:29 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3921
spelling time

Revision 3921 - Directory Listing - [select for diffs]
Modified Thu May 5 00:58:28 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3920
Fix a 16 year old bug in the sorting routine for non-contiguous netmasks.
For masks of identical length rn_lexobetter() did not stop on the
first non-equal byte. This leads rn_addroute() to not detecting
duplicate entries and thus we might create a very long list of masks
to check for each node.
This can have a huge impact on IPsec performance, where non-contiguous
masks are used for the flow lookup.  In a setup with 1300 flows we
saw 400 duplicate masks and only a third of the expected throughput.

Obtained from: OpenBSD (revision 1.28 src/sys/net/radix.c)

Revision 3920 - Directory Listing - [select for diffs]
Modified Tue May 3 13:30:22 2011 UTC (12 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3919
rcorder can pick a different order for rc scripts to run.  If a crazy script from ports tries to run earlier in the boot process, it's possible it will be skipped entirely.

This patch from Doug Barton saves the items already run to avoid this problem. It could still get a bit funky if we're remotely mounting a file system but I don't think most MidnightBSD users will do that.

Revision 3919 - Directory Listing - [select for diffs]
Modified Tue Apr 26 04:00:18 2011 UTC (12 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3918
Stop trying to zero UFS1 superblocks if we fall off the end of the disk or hit random partial data that looks like a superblock.

Obtained from: FreeBSD

Revision 3918 - Directory Listing - [select for diffs]
Modified Mon Apr 25 23:49:07 2011 UTC (12 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3917
Fix a crash bug with updates.  Whitespace fixes.

Revision 3917 - Directory Listing - [select for diffs]
Modified Sun Apr 24 22:40:10 2011 UTC (12 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3916
add a new error state MPORT_ERR_WARN.  This is a non fatal error that we could possibly work around.

Change the logic to loop through mirrors to make sense.

fallback to the bootstrap index url if the mirrors list fails.

Revision 3916 - Directory Listing - [select for diffs]
Modified Sun Apr 24 22:37:53 2011 UTC (12 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3915
Get more specific on errors.

Revision 3915 - Directory Listing - [select for diffs]
Modified Sun Apr 24 21:58:53 2011 UTC (12 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3914
Two weeks have seven days? wtf

Revision 3914 - Directory Listing - [select for diffs]
Modified Sun Apr 24 15:36:53 2011 UTC (12 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3913
knlist_* is defined in event.h. Fix lint build

Revision 3913 - Directory Listing - [select for diffs]
Modified Sun Apr 24 15:35:40 2011 UTC (12 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3912
Add knlist_init_mtx

Revision 3912 - Directory Listing - [select for diffs]
Modified Wed Apr 20 23:45:05 2011 UTC (12 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3911
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-1739

Revision 3911 - Directory Listing - [select for diffs]
Modified Wed Apr 20 03:39:03 2011 UTC (12 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3910
    Do not allow directly recursive RFC3173 IPComp payload.

 Security:	CVE-2011-1547

Revision 3910 - Directory Listing - [select for diffs]
Modified Sun Apr 17 18:58:52 2011 UTC (12 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3909
Add a wrapper around knlist_init

Revision 3909 - Directory Listing - [select for diffs]
Modified Thu Apr 14 04:04:02 2011 UTC (12 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3908
Handle the special ruleset 0 in devfs_ruleset_use(). An attempt set the
current ruleset to 0 with command "devfs ruleset 0" triggered a KASSERT
in devfs_ruleset_create().

Revision 3908 - Directory Listing - [select for diffs]
Modified Fri Apr 1 02:09:23 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3907
Clamp the initial advertised receive window when responding to a SYN/ACK
to the maximum allowed window. Growing the window too large would cause
an underflow in the calculations in tcp_output() to decide if a window
update should be sent which would prevent the persist timer from being
started if data was pending and the other end of the connection advertised
an initial window size of 0.

Obtained from: FreeBSD

Revision 3907 - Directory Listing - [select for diffs]
Modified Sat Mar 26 22:51:33 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3906
On  amd64, use a larger default auto swap size. it's safe to assume   64  bit architectures will have more need for it.

Revision 3906 - Directory Listing - [select for diffs]
Modified Sat Mar 26 22:17:28 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3905
we've never had a zone category that was used.

Revision 3905 - Directory Listing - [select for diffs]
Modified Sat Mar 26 16:53:46 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3904
Remove legacy ia64 support from the system.  I don't think we'll ever have the resources to support Intel Itanium chips.

Remove expert and custom installation options.  This should improve usability and only piss off a very small number of users.

Fix a bug where automated installs can't use UFS1.

Increase the default and minimum sizes of several partitions.  / /var /tmp and /usr all need to be a little bigger these days.

Revision 3904 - Directory Listing - [select for diffs]
Modified Fri Mar 25 04:12:37 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3903
Fix bug reported here: http://blogmal.42.org/tidbits/tcp-bug.story

Only affects amd64 MidnightBSD

Revision 3903 - Directory Listing - [select for diffs]
Modified Mon Mar 21 14:02:15 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3902
Remove extra version checks we don't need.

Revision 3902 - Directory Listing - [select for diffs]
Modified Sat Mar 19 23:37:17 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3901
Revert previous change, problem was masking symbols properly in libcrypt which is a shameless hack.

Revision 3901 - Directory Listing - [select for diffs]
Modified Sat Mar 19 19:30:28 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3900
Incompatible change: rename property_count as properties_count.  It's "wrong" but it shouldn't conflict with a similar definitiion in libcrypt and as it's a new function, we can safely change it.

Revision 3900 - Directory Listing - [select for diffs]
Modified Thu Mar 17 11:54:08 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3899
Uptime validity  check is not necessary as we've inherited the switch to clock_getuptime circa 2005.

vmstat now works with greater than 10 years of uptime.  Yeah that will never happen but hey we can dream :)

Revision 3899 - Directory Listing - [select for diffs]
Modified Thu Mar 17 04:41:46 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3898
Revert previous change.  depends is used later in the package creation process.

Revision 3898 - Directory Listing - [select for diffs]
Modified Tue Mar 15 16:21:34 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3897
Introduce property_count(3) based on code from R. Tyler Ballance for the port of launchd to FreeBSD.

Revision 3897 - Directory Listing - [select for diffs]
Modified Tue Mar 15 03:11:39 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3896
ssize_t is defined on MidnightBSD.

Revision 3896 - Directory Listing - [select for diffs]
Modified Tue Mar 15 01:59:16 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3895
Change prototype, warns 6

Revision 3895 - Directory Listing - [select for diffs]
Modified Tue Mar 15 01:56:14 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3894
add basic logging, allow numbers in kernel config filenames.

Revision 3894 - Directory Listing - [select for diffs]
Modified Tue Mar 15 01:12:36 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3893
reconnect libnss_mdns

Revision 3893 - Directory Listing - [select for diffs]
Modified Tue Mar 15 01:11:23 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3892
Work around problems with libnss_mdns linking

Revision 3892 - Directory Listing - [select for diffs]
Modified Tue Mar 15 01:08:09 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3891
Document recent changes.

Revision 3891 - Directory Listing - [select for diffs]
Modified Tue Mar 15 00:53:27 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3890
dnsextd was not building because it defaulted to vxworks.. this used to support bsd!

Revision 3890 - Directory Listing - [select for diffs]
Modified Mon Mar 14 14:06:28 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3889
Disconnect nss_mdns from the build until problem can be sorted out with libdns_sd path

Revision 3889 - Directory Listing - [select for diffs]
Modified Mon Mar 14 00:16:12 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3888
Document the apache  directory.

Revision 3888 - Directory Listing - [select for diffs]
Modified Sun Mar 13 21:58:41 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3887
tag

Revision 3887 - Directory Listing - [select for diffs]
Modified Sun Mar 13 21:45:06 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3886
Part II of the DRM update

Revision 3886 - Directory Listing - [select for diffs]
Modified Sun Mar 13 21:43:59 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3885
Bring in two large changes from FreeBSD 7.1:

* DRM/DRI update for direct rendering on X.  This is a large update to support newer ATI and Intel graphics adapters with acceleration. This was original ported from Linux (it's not GPL)
* cdev per open file data.

Implement the per-open file data for the cdev.

 The patch does not change the cdevsw KBI. Management of the data is
 provided by the functions
 int     devfs_set_cdevpriv(void *priv, cdevpriv_dtr_t dtr);
 int     devfs_get_cdevpriv(void **datap);
 void    devfs_clear_cdevpriv(void);
 All of the functions are supposed to be called from the cdevsw method
 contexts.

 - devfs_set_cdevpriv assigns the priv as private data for the file
   descriptor which is used to initiate currently performed driver
   operation. dtr is the function that will be called when either the
   last refernce to the file goes away, the device is destroyed  or
   devfs_clear_cdevpriv is called.
 - devfs_get_cdevpriv is the obvious accessor.
 - devfs_clear_cdevpriv allows to clear the private data for the still
   open file.

 Implementation keeps the driver-supplied pointers in the struct
 cdev_privdata, that is referenced both from the struct file and struct
 cdev, and cannot outlive any of the referee.

Obtained from: FreeBSD

Revision 3885 - Directory Listing - [select for diffs]
Modified Sun Mar 13 18:18:55 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3884
Change the xsystem command string to use up to the kern.argmax memory for @exec plist commands.

Revision 3884 - Directory Listing - [select for diffs]
Modified Sun Mar 13 17:17:44 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3883
Add apache directory to path to scan for libs.

Revision 3883 - Directory Listing - [select for diffs]
Modified Sun Mar 13 17:16:38 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3882
Build 32bit apache libs

Revision 3882 - Directory Listing - [select for diffs]
Modified Sun Mar 13 02:05:39 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3881
libarchive needs liblzma now.

Revision 3881 - Directory Listing - [select for diffs]
Modified Sun Mar 13 00:43:41 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3880
curdir makes a lot more sense here

Revision 3880 - Directory Listing - [select for diffs]
Modified Sat Mar 12 20:49:22 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3879
Backward incompatible change.. mport packages are now compressed with xz compression instead of bzip2. This means package creation requires more ram, but extracting packages is faster.  Packages will also be smaller.

Revision 3879 - Directory Listing - [select for diffs]
Modified Sat Mar 12 18:29:45 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3878
Connect liblzma to the build.  (why didn't i do this sooner)

Revision 3878 - Directory Listing - [select for diffs]
Modified Sat Mar 12 14:47:48 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3877
Rework the resize logic so that it actually works without an infinite loop.

After testing, keep the LINK_TABLE_SIZE at 1024.  Most ports won't need to resize the hash table which is somewhat expensive.

Revision 3877 - Directory Listing - [select for diffs]
Modified Sat Mar 12 03:31:33 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3876
Fix return handling on the bundle add/write.

There's a bug with the hard link hash code somewhere.  For now increase the size which fixes most ports hanging on it.  We need to fix this correclty though.

Revision 3876 - Directory Listing - [select for diffs]
Modified Sat Mar 12 01:29:38 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3875
Get rid of an extra param we don't need.  (one less warning)

don't set NULL when we're not using the assignment anyway.

Use \0 when it's the end of a string for clarity.

Revision 3875 - Directory Listing - [select for diffs]
Modified Fri Mar 11 22:07:35 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3874
Don't free node name twice.

Revision 3874 - Directory Listing - [select for diffs]
Modified Fri Mar 11 20:31:25 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3873
fclose is often used when fopen is used.

Revision 3873 - Directory Listing - [select for diffs]
Modified Fri Mar 11 18:59:57 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3872
check calls to calloc and strdup in case memory allocation fails

Revision 3872 - Directory Listing - [select for diffs]
Modified Fri Mar 11 18:28:09 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3871
Clean up whitespace and comments.

Free memory when command fails to execute

Revision 3871 - Directory Listing - [select for diffs]
Modified Thu Mar 10 22:36:36 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3870
Add code to verify packages included in the index.  We should deal with cases the package is built locally at some point.

Revision 3870 - Directory Listing - [select for diffs]
Modified Thu Mar 10 22:29:07 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3869
Add sha256 hash function wrappers.  This allows us to verify a package file in the index was not tampered with and downloaded correctly.

Revision 3869 - Directory Listing - [select for diffs]
Modified Wed Mar 9 20:50:29 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3868
add libnss_mdns man page

Revision 3868 - Directory Listing - [select for diffs]
Modified Wed Mar 9 20:20:07 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3867
don't need this header, nss.h is better

Revision 3867 - Directory Listing - [select for diffs]
Modified Wed Mar 9 20:19:01 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3866
no profile or installlib as we only want a specially named shlib

Revision 3866 - Directory Listing - [select for diffs]
Modified Wed Mar 9 20:18:07 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3865
we don't actually need this

Revision 3865 - Directory Listing - [select for diffs]
Modified Wed Mar 9 20:03:22 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3864
make some fixes

Revision 3864 - Directory Listing - [select for diffs]
Modified Wed Mar 9 16:30:05 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3863
libdns_sd too

Revision 3863 - Directory Listing - [select for diffs]
Modified Wed Mar 9 16:27:46 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3862
add libnss_mdns and libdispatch to the fray

Revision 3862 - Directory Listing - [select for diffs]
Modified Wed Mar 9 15:11:22 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3861
Implement netbsd_gethostbyaddr_r and netbsd_gethostbyname2_r

Revision 3861 - Directory Listing - [select for diffs]
Modified Wed Mar 9 05:53:49 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3860
Turn off ipv6 as dual stack freaks out mdnsd.

Revision 3860 - Directory Listing - [select for diffs]
Modified Wed Mar 9 05:45:15 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3859
we don't support sleep right now.

Revision 3859 - Directory Listing - [select for diffs]
Modified Wed Mar 9 05:44:52 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3858
turn off idle sleep

Revision 3858 - Directory Listing - [select for diffs]
Modified Wed Mar 9 05:31:59 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3856
fix typo

Revision 3856 - Directory Listing - [select for diffs]
Modified Wed Mar 9 05:03:39 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3854
This commit was generated by cvs2svn to compensate for changes in r3855,
which included commits to RCS files with non-trunk default branches.
Revision 3854 - Directory Listing - [select for diffs]
Modified Tue Mar 8 22:55:47 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3853
Sync with openbsd 4.9.  Disable -V flag for now as we don't have setfib(2) from freebsd yet.

Revision 3853 - Directory Listing - [select for diffs]
Modified Tue Mar 8 22:34:16 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3852
update time zones

Revision 3852 - Directory Listing - [select for diffs]
Modified Tue Mar 8 22:33:35 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3851
tzdata2011c

No leapsecond in June 2011.

Timezone tweaks for several america locations.

Chile winter to summer time moved by a month

Revision 3851 - Directory Listing - [select for diffs]
Modified Tue Mar 8 22:28:57 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3850
document nss_mdns addition

Revision 3850 - Directory Listing - [select for diffs]
Modified Tue Mar 8 22:19:31 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3849
Add config file for nss_mdns module called nss_mdns.conf

@see nss_mdns.conf.5

Revision 3849 - Directory Listing - [select for diffs]
Modified Tue Mar 8 22:13:48 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3848
Introduce libnss_mdns based on netbsd nss wrapper for client bit of mDNSResponder.

Revision 3848 - Directory Listing - [select for diffs]
Modified Tue Mar 8 14:11:36 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3847
Patch for CVE-2011-0014

Revision 3847 - Directory Listing - [select for diffs]
Modified Tue Mar 8 14:10:22 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3846
Patch for CVE-2011-0014

http://www.openssl.org/news/secadv_20110208.txt

Revision 3846 - Directory Listing - [select for diffs]
Modified Tue Mar 8 13:41:59 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3845
xz/lzma

Revision 3845 - Directory Listing - [select for diffs]
Modified Tue Mar 8 13:40:49 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3844
Bump for xz/lzma inclusion

Revision 3844 - Directory Listing - [select for diffs]
Modified Tue Mar 8 13:32:47 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3843
Turn on lzma

Revision 3843 - Directory Listing - [select for diffs]
Modified Tue Mar 8 13:25:12 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3842
introduce lib lzma

Revision 3842 - Directory Listing - [select for diffs]
Modified Tue Mar 8 13:23:42 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3841
Add new make variable ACFLAGS to supply flags to cc driver when compiling assembly source.

Revision 3841 - Directory Listing - [select for diffs]
Modified Tue Mar 8 13:06:51 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3840
Turn on xz

Revision 3840 - Directory Listing - [select for diffs]
Modified Tue Mar 8 12:53:10 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3838
Rework liblzma based on netbsd setup.  This works much better.

Revision 3838 - Directory Listing - [select for diffs]
Modified Tue Mar 8 03:55:29 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3836
This commit was generated by cvs2svn to compensate for changes in r3837,
which included commits to RCS files with non-trunk default branches.
Revision 3836 - Directory Listing - [select for diffs]
Modified Mon Mar 7 22:04:04 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3835
Add new clean command to mport tools.  It deletes old packages in the staging dir and runs vacuum on sqlite3.

Also fix formatting of the man page and add details about clean there.

Revision 3835 - Directory Listing - [select for diffs]
Modified Mon Mar 7 22:01:00 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3834
Add new code to call vacuum on the sqlite database and remove old packages in /var/db/mport/downloads/ (aka the staging dir).

Revision 3834 - Directory Listing - [select for diffs]
Modified Mon Mar 7 21:11:15 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3833
Catch no search term case.

Revision 3833 - Directory Listing - [select for diffs]
Modified Mon Mar 7 20:02:23 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3832
Add new search feature to mport tool.

The following works:

mport search php5   - matches exact package name
mport search "*php*" - glob style search of package names and comments

Note this searches the index of all packages.  If you want to know if a package is installed, use mport info pkgname.

Revision 3832 - Directory Listing - [select for diffs]
Modified Mon Mar 7 19:43:00 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3831
Add a new public index search function which will allow us to search index data via the search command I"m working on.

Revision 3831 - Directory Listing - [select for diffs]
Modified Sun Mar 6 23:11:41 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3830
Don't crash when mport info command run without package name

Revision 3830 - Directory Listing - [select for diffs]
Modified Sun Mar 6 23:04:48 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3829
Update the man page to include information on basic commands.

Revision 3829 - Directory Listing - [select for diffs]
Modified Sun Mar 6 22:21:03 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3828
Check if the package file exists so we don't download it again.

Revision 3828 - Directory Listing - [select for diffs]
Modified Sun Mar 6 22:06:28 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3827
Use the mport primative for updates.

Add a new upgrade method that will upgrade all installed ports that need it.  This has one big flaw in that it will fetch packages even when it doesn't need to.

Revision 3827 - Directory Listing - [select for diffs]
Modified Sun Mar 6 21:20:53 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3826
Include the origin for installed packages.  This helps when we want to update packages from mports instead of a pre-built package.

Revision 3826 - Directory Listing - [select for diffs]
Modified Sun Mar 6 20:26:39 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3825
Add new info command.  Returns information about packages that are installed as well as packages that are included in the index but not installed.

Format:
package name
lastest: (version)
installed: (version)
license:

comment/description

Revision 3825 - Directory Listing - [select for diffs]
Modified Sun Mar 6 19:58:25 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3824
fix usage

Revision 3824 - Directory Listing - [select for diffs]
Modified Sun Mar 6 18:58:14 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3823
fix whitespace in usage

Revision 3823 - Directory Listing - [select for diffs]
Modified Sun Mar 6 18:49:47 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3822
Use exec instead of system() so we can actually return proper error codes.

Revision 3822 - Directory Listing - [select for diffs]
Modified Sun Mar 6 18:28:26 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3821
exit call is redundant and not reached.

Revision 3821 - Directory Listing - [select for diffs]
Modified Sun Mar 6 18:25:08 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3820
Cleanly free up the mport instance

Revision 3820 - Directory Listing - [select for diffs]
Modified Sun Mar 6 18:20:49 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3819
minor format tweaks.

Revision 3819 - Directory Listing - [select for diffs]
Modified Sun Mar 6 18:16:22 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3818
Fix segfault when arguments are incorrect.

Fix usage

Revision 3818 - Directory Listing - [select for diffs]
Modified Sun Mar 6 17:20:25 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3817
Major refactor of mport tool code.

Use libmport to lookup entries in the index for fetching remote packages.  This means we can now create a magus run and load it on the ftp and have users remotely install mport packages!  (local install is a todo item)

Add a new update command which uninstalls a package and then fetches and installs a new one.  This is very "dumb" right now and it doesn't do updepends checks yet.

Revision 3817 - Directory Listing - [select for diffs]
Modified Sun Mar 6 16:17:36 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3816
whitespace fix as seen on tinderbox

Revision 3816 - Directory Listing - [select for diffs]
Modified Sun Mar 6 04:01:30 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3815
Add mport paths

Revision 3815 - Directory Listing - [select for diffs]
Modified Sun Mar 6 03:57:53 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3814
Minor changs for mport.fetch

Revision 3814 - Directory Listing - [select for diffs]
Modified Sun Mar 6 03:57:02 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3813
Add mport.fetch, a package fetching app.  Input is a package name which is then looked up in the mport index.

Revision 3813 - Directory Listing - [select for diffs]
Modified Sun Mar 6 00:40:02 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3812
add list updates to usage

Revision 3812 - Directory Listing - [select for diffs]
Modified Thu Mar 3 20:59:44 2011 UTC (13 years ago) by laffer1
Original Path: trunk
Diff to previous 3811
Fix version check so that it retuns outdated packages

Revision 3811 - Directory Listing - [select for diffs]
Modified Tue Mar 1 14:59:55 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3810
get picky

Revision 3810 - Directory Listing - [select for diffs]
Modified Sun Feb 27 19:38:12 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3809
bug fix.

Revision 3809 - Directory Listing - [select for diffs]
Modified Sun Feb 27 17:37:06 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3808
fix attach routine

Revision 3808 - Directory Listing - [select for diffs]
Modified Sun Feb 27 17:15:29 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3807
fix bug preventing updates list

Revision 3807 - Directory Listing - [select for diffs]
Modified Sun Feb 27 16:34:06 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3806
 Add restrict keyword to pthread_sigmask

Revision 3806 - Directory Listing - [select for diffs]
Modified Sun Feb 27 16:30:45 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3805
Add restrict keyword to pthread_sigmask prototype and manpage.

Revision 3805 - Directory Listing - [select for diffs]
Modified Sat Feb 26 21:36:15 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3804
index is a reserved word so we can't attach the db as that.

Revision 3804 - Directory Listing - [select for diffs]
Modified Sat Feb 26 21:30:31 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3803
Update os version detection for 0.4.  Perhaps this should use the sysctl interface and get the current kernel version instead?

Revision 3803 - Directory Listing - [select for diffs]
Modified Sat Feb 26 21:25:40 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3802
Add wrapper to call list updates command to see packages that need to be updated.

This compares the installed packages on the local system to the index file which is at most 24 hours old.

Revision 3802 - Directory Listing - [select for diffs]
Modified Sat Feb 26 21:24:18 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3801
Add -u to list packages that need updating.

Revision 3801 - Directory Listing - [select for diffs]
Modified Sat Feb 26 21:22:44 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3800
Add a new helper method to extract bzip2 index files after they've been fetched from the bootstrap site.

Revision 3800 - Directory Listing - [select for diffs]
Modified Sat Feb 26 15:15:24 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3799
Add license to index.

Revision 3799 - Directory Listing - [select for diffs]
Modified Sat Feb 26 14:12:38 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3798
Remove www from mport index.  We're not provding this for now.

Revision 3798 - Directory Listing - [select for diffs]
Modified Tue Feb 22 17:21:15 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3797
Sync with other bsds

Revision 3797 - Directory Listing - [select for diffs]
Modified Tue Feb 22 17:20:14 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3796
Sync with DragonFly, FreeBSD, NetBSD and OpenBSD.

Revision 3796 - Directory Listing - [select for diffs]
Modified Tue Feb 22 17:18:51 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3795
Move some of the offensive fortunes out of the regular fortunes file and into o.real

Revision 3795 - Directory Listing - [select for diffs]
Modified Mon Feb 21 00:57:08 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3794
cam(4)

Revision 3794 - Directory Listing - [select for diffs]
Modified Mon Feb 21 00:49:34 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3793
Sync with freebsd 7.3

Revision 3793 - Directory Listing - [select for diffs]
Modified Sun Feb 20 21:25:35 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3792
remove pc98 support

Revision 3792 - Directory Listing - [select for diffs]
Modified Sat Feb 19 18:45:34 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3791
Update the man page for amdtemp(4) to go with the new changes I've just committed.

Revision 3791 - Directory Listing - [select for diffs]
Modified Sat Feb 19 18:36:55 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3790
Rewrite parts of the amdtemp(4) temp monitor for K8, K10, K11 AMD CPUs to take advantage of the sensors framework.

This is similar to coretemp(4)'s changes in MidnightBSD and to kate(4) in OpenBSD/DragonFly.  However, kate(4) only handles K8 CPUs!

I don't have any K8 hardware to test on so if the sensor readings are off, I need someone to let me know.

Tested on an AMD Phenom 9600

Revision 3790 - Directory Listing - [select for diffs]
Modified Thu Feb 17 14:12:40 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3789
Restore moduli files from botched OpenSSH update

Revision 3789 - Directory Listing - [select for diffs]
Modified Thu Feb 17 14:05:52 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3788
Document perl update.

Revision 3788 - Directory Listing - [select for diffs]
Modified Thu Feb 17 14:00:11 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3787
Bump for new perl version.

Revision 3787 - Directory Listing - [select for diffs]
Modified Thu Feb 17 12:56:03 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3786
Regenerate

Revision 3786 - Directory Listing - [select for diffs]
Modified Thu Feb 17 12:54:10 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3784
Resolve conflicts.

Revision 3784 - Directory Listing - [select for diffs]
Modified Thu Feb 17 12:49:46 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3782
This commit was generated by cvs2svn to compensate for changes in r3783,
which included commits to RCS files with non-trunk default branches.
Revision 3782 - Directory Listing - [select for diffs]
Modified Wed Feb 16 23:36:01 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3781
Sync with FreeBSD 7.3-RELEASE

Revision 3781 - Directory Listing - [select for diffs]
Modified Wed Feb 16 19:59:53 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3780
Add tcp lro

Revision 3780 - Directory Listing - [select for diffs]
Modified Wed Feb 16 19:44:30 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3779
Sync with freebsd 7.3

Revision 3779 - Directory Listing - [select for diffs]
Modified Wed Feb 16 19:41:33 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3778
Sync fxp with freebsd 7.3

Revision 3778 - Directory Listing - [select for diffs]
Modified Wed Feb 16 19:37:55 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3777
Sync with freebsd 7.3-RELEASE, add WOL

Revision 3777 - Directory Listing - [select for diffs]
Modified Wed Feb 16 14:28:33 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3776
Fix populating KInfo[nentries] which overflows the array.

Inspired by a fix from dragonfly, but a new patch.

Revision 3776 - Directory Listing - [select for diffs]
Modified Wed Feb 16 13:57:06 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3775
Document intel driver update for NICs

Revision 3775 - Directory Listing - [select for diffs]
Modified Wed Feb 16 13:54:41 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3774
add igb(4)

Revision 3774 - Directory Listing - [select for diffs]
Modified Wed Feb 16 13:50:08 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3773
Add new options for bce.  Remove dead netatm entries from files and refresh for new em(4) and igb(4).

Revision 3773 - Directory Listing - [select for diffs]
Modified Wed Feb 16 13:38:47 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3772
Add intel igb(4), update em(4) part 3 of 3

Revision 3772 - Directory Listing - [select for diffs]
Modified Wed Feb 16 13:37:36 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3771
Add intel igb(4), update em(4) part 2 of 3

Revision 3771 - Directory Listing - [select for diffs]
Modified Wed Feb 16 13:36:44 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3770
Add intel igb(4), update em(4) part 1 of 3

Revision 3770 - Directory Listing - [select for diffs]
Modified Wed Feb 16 13:31:31 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3769
Update some man pages to go with driver improvements.

Revision 3769 - Directory Listing - [select for diffs]
Modified Wed Feb 16 13:27:43 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3768
Sync bfe(4) with FreeBSD 7.3-RELEASE.

Revision 3768 - Directory Listing - [select for diffs]
Modified Wed Feb 16 02:03:22 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3767
sync with freebsd 7.3, add wol support

Revision 3767 - Directory Listing - [select for diffs]
Modified Wed Feb 16 01:00:10 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3766
Upgrade bge(4).

Revision 3766 - Directory Listing - [select for diffs]
Modified Wed Feb 16 00:30:23 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3765
age(4)

Revision 3765 - Directory Listing - [select for diffs]
Modified Wed Feb 16 00:27:13 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3764
add age(4)

Revision 3764 - Directory Listing - [select for diffs]
Modified Tue Feb 15 22:09:49 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3763
add age(4) (disconnected)

Revision 3763 - Directory Listing - [select for diffs]
Modified Tue Feb 15 20:38:47 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3762
Sync with FreeBSD 7.3.  Add wake on lan support.

Revision 3762 - Directory Listing - [select for diffs]
Modified Tue Feb 15 14:06:01 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3761
Missed a few things when I updated

Revision 3761 - Directory Listing - [select for diffs]
Modified Tue Feb 15 14:04:13 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3760
Update ale(4) and sync with just after FreeBSD 7.3.

Add support for WOL.

Revision 3760 - Directory Listing - [select for diffs]
Modified Fri Feb 11 13:55:02 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3759
use RTFREE_LOCKED instead of rtfree

Revision 3759 - Directory Listing - [select for diffs]
Modified Fri Feb 11 13:18:44 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3758
$MidnightBSD$

Revision 3758 - Directory Listing - [select for diffs]
Modified Wed Feb 9 14:07:39 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3757
cdf_time helps.

Revision 3757 - Directory Listing - [select for diffs]
Modified Wed Feb 9 12:31:33 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3756
cdf function

Revision 3756 - Directory Listing - [select for diffs]
Modified Wed Feb 9 04:18:47 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3755
Add missing file.

Revision 3755 - Directory Listing - [select for diffs]
Modified Wed Feb 9 01:58:09 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3754
update magic.mime to work with file 5.05. This isn't included so we just did a cat on the all the items.

Revision 3754 - Directory Listing - [select for diffs]
Modified Wed Feb 9 01:57:31 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3753
file 5.05

Revision 3753 - Directory Listing - [select for diffs]
Modified Wed Feb 9 00:32:15 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3752
Bump MidnightBSD version.  We've updated a lot of contrib software lately and the recent window scaling patch. (BIND, file, openssl, openssh, libarchive, unzip, cpio, ...)

Revision 3752 - Directory Listing - [select for diffs]
Modified Wed Feb 9 00:30:41 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3751
Bind 9.6.3

Revision 3751 - Directory Listing - [select for diffs]
Modified Wed Feb 9 00:27:18 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3750
If the new window size ends up being the same as the old
size when it is scaled, then don't force a window update.

Obtained from: Patch by John Baldwin, FreeBSD 7-STABLE local patch

Revision 3750 - Directory Listing - [select for diffs]
Modified Wed Feb 9 00:11:33 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3749
Enable atheros cards in generic.

Revision 3749 - Directory Listing - [select for diffs]
Modified Wed Feb 9 00:10:40 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3748
Enable ufs gjournal

Revision 3748 - Directory Listing - [select for diffs]
Modified Wed Feb 9 00:02:27 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3747
Fix big typo. turn on UFS_GJOURNAL support.

Revision 3747 - Directory Listing - [select for diffs]
Modified Tue Feb 8 22:06:59 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3746
Properly close a socket for a tcp nfs client if the nfs server notices that the client has disconnected while attempting to fetch a request.

Obtained from: FreeBSD revision 218456

Revision 3746 - Directory Listing - [select for diffs]
Modified Tue Feb 8 22:00:47 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3745
BIND 9.6.3

Revision 3745 - Directory Listing - [select for diffs]
Modified Tue Feb 8 22:00:30 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3743
Bind 9.6.3

Revision 3743 - Directory Listing - [select for diffs]
Modified Tue Feb 8 21:24:36 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3741
This commit was generated by cvs2svn to compensate for changes in r3742,
which included commits to RCS files with non-trunk default branches.
Revision 3741 - Directory Listing - [select for diffs]
Modified Tue Feb 8 14:24:33 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3740
Fix the Xlist file name.

Revision 3740 - Directory Listing - [select for diffs]
Modified Mon Feb 7 00:25:10 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3739
alc(4)

Revision 3739 - Directory Listing - [select for diffs]
Modified Mon Feb 7 00:20:11 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3738
Add an entry for alc(4).

Revision 3738 - Directory Listing - [select for diffs]
Modified Mon Feb 7 00:18:45 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3737
alc(4) module connect

Revision 3737 - Directory Listing - [select for diffs]
Modified Mon Feb 7 00:17:46 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3736
Add a preliminary version of alc(4).  This version does not support wake on lan and should not be suspend/resume. It's not connected to the build yet, but one can manually build the odule.

Revision 3736 - Directory Listing - [select for diffs]
Modified Mon Feb 7 00:03:25 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3735
don't mark this mpsafe

Revision 3735 - Directory Listing - [select for diffs]
Modified Sun Feb 6 22:47:32 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3734
turn of zfs and tar for now to unbreak world.

Revision 3734 - Directory Listing - [select for diffs]
Modified Sun Feb 6 22:37:44 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3733
MK_SSP=no

Revision 3733 - Directory Listing - [select for diffs]
Modified Sun Feb 6 22:29:52 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3732
update bsdcpio to 2.8.3

Revision 3732 - Directory Listing - [select for diffs]
Modified Sun Feb 6 22:23:08 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3731
Update to bsdtar 2.8.3

Revision 3731 - Directory Listing - [select for diffs]
Modified Sun Feb 6 21:43:53 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3730
add quad tunables and sysctls

Revision 3730 - Directory Listing - [select for diffs]
Modified Sun Feb 6 21:26:31 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3729
Back out part of my last change.

Revision 3729 - Directory Listing - [select for diffs]
Modified Sun Feb 6 21:15:22 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3728
Add zfs utils, pkill, geom to rescue.

Revision 3728 - Directory Listing - [select for diffs]
Modified Sun Feb 6 18:49:24 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3727
Wake On Lan (WOL) infrastructure

Revision 3727 - Directory Listing - [select for diffs]
Modified Sun Feb 6 18:44:11 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3726
Wake On Lan (WOL) infrastructure

Add NEEDSGIANT to IFF_CANTCONFIG so that we can block changes to interfaces that are under giant later.

Revision 3726 - Directory Listing - [select for diffs]
Modified Sun Feb 6 18:25:19 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3725
PCI-express capability registers

Revision 3725 - Directory Listing - [select for diffs]
Modified Sun Feb 6 18:17:50 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3724
Turn MidnightBSD ident on

Revision 3724 - Directory Listing - [select for diffs]
Modified Sun Feb 6 18:17:31 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3723
Turn the version addendum back on.

Revision 3723 - Directory Listing - [select for diffs]
Modified Sun Feb 6 18:04:39 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3722
Sync unzip  with FreeBSD 9.  Exclude r/R flags as we don't yet have getdelim and they don't seem to be connected anyway.

Revision 3722 - Directory Listing - [select for diffs]
Modified Sun Feb 6 16:37:04 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3721
eeemon(4) mention

Revision 3721 - Directory Listing - [select for diffs]
Modified Sun Feb 6 16:35:16 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3720
Add eeemon(4) man page.

Revision 3720 - Directory Listing - [select for diffs]
Modified Sun Feb 6 16:25:18 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3719
Introduce eeemon, a kernel module to control fan speed, voltage and monitor cpu temp.

Obtained from: Rui Paulo (FreeBSD user repository)

Revision 3719 - Directory Listing - [select for diffs]
Modified Sun Feb 6 03:07:05 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3718
Update libarchive and sync  with FreeBSD 9-CURRENT version  as of today.

Revision 3718 - Directory Listing - [select for diffs]
Modified Sun Feb 6 01:42:41 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3717
Libf2c was imported as part of the freebsd initial import.  However, it wasn't used in FreeBSD since 3.x and we don't need it at all.

Revision 3717 - Directory Listing - [select for diffs]
Modified Sun Feb 6 01:01:18 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3716
Document GNU sort, openssh updates.

Revision 3716 - Directory Listing - [select for diffs]
Modified Sun Feb 6 00:52:01 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3714
Sort 6.9

Revision 3714 - Directory Listing - [select for diffs]
Modified Sun Feb 6 00:51:10 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3712
This commit was generated by cvs2svn to compensate for changes in r3713,
which included commits to RCS files with non-trunk default branches.
Revision 3712 - Directory Listing - [select for diffs]
Modified Sat Feb 5 21:41:21 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3711
OpenSSH 5.7p1 fix

Revision 3711 - Directory Listing - [select for diffs]
Modified Sat Feb 5 20:22:55 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3710
enc_min.c is required.

Revision 3710 - Directory Listing - [select for diffs]
Modified Sat Feb 5 19:31:40 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3709
add missing file.

Revision 3709 - Directory Listing - [select for diffs]
Modified Sat Feb 5 19:28:24 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3708
Some fixes for openssl .98q

Revision 3708 - Directory Listing - [select for diffs]
Modified Sat Feb 5 14:30:17 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3707
Remove the blacklists from our openssh configuration.

Revision 3707 - Directory Listing - [select for diffs]
Modified Sat Feb 5 14:25:54 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3706
Update makefiles for openssh 5.7p1.

ssh-vulnkey is no longer included. I would hope most debian keys have been replaced at this point.

Revision 3706 - Directory Listing - [select for diffs]
Modified Sat Feb 5 14:07:23 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3705
woot

Revision 3705 - Directory Listing - [select for diffs]
Modified Sat Feb 5 14:05:37 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3704
*** empty log message ***

Revision 3704 - Directory Listing - [select for diffs]
Modified Sat Feb 5 14:05:18 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3703
wow i hate this thing.

Revision 3703 - Directory Listing - [select for diffs]
Modified Sat Feb 5 14:03:19 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3702
bring  back the openSSH love.

Revision 3702 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:42:47 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3701
add missin files?

Revision 3701 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:42:26 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3700
woot

Revision 3700 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:41:45 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3699
What a mess.

Revision 3699 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:40:39 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3698
drat.

Revision 3698 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:39:57 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3697
revert.

Revision 3697 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:38:57 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3696
OpenSSH 5.7p1

Revision 3696 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:37:03 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3695
readd entropy.h

Revision 3695 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:36:14 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3694
Restore

Revision 3694 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:33:39 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3693
readd platform.h

Revision 3693 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:32:55 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3692
readd defines.h

Revision 3692 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:31:45 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3691
restore includes.h

Revision 3691 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:29:49 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3690
Update config.h for OpenSSH 5.7p1

Revision 3690 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:23:49 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3688
Resolve merge conflicts.

Revision 3688 - Directory Listing - [select for diffs]
Modified Fri Feb 4 14:04:19 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3686
This commit was generated by cvs2svn to compensate for changes in r3687,
which included commits to RCS files with non-trunk default branches.
Revision 3686 - Directory Listing - [select for diffs]
Modified Fri Feb 4 13:35:58 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3684
Resolve merge conflicts

Revision 3684 - Directory Listing - [select for diffs]
Modified Fri Feb 4 13:20:53 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3682
This commit was generated by cvs2svn to compensate for changes in r3683,
which included commits to RCS files with non-trunk default branches.
Revision 3682 - Directory Listing - [select for diffs]
Modified Fri Feb 4 01:57:13 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3681
Bump for OpenSSL update.

Revision 3681 - Directory Listing - [select for diffs]
Modified Fri Feb 4 01:56:17 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3680
Document openssl update.

Revision 3680 - Directory Listing - [select for diffs]
Modified Fri Feb 4 00:00:11 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3678
Upgrade to OpenSSL v0.9.8q

Revision 3678 - Directory Listing - [select for diffs]
Modified Thu Feb 3 23:52:17 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3676
This commit was generated by cvs2svn to compensate for changes in r3677,
which included commits to RCS files with non-trunk default branches.
Revision 3676 - Directory Listing - [select for diffs]
Modified Thu Feb 3 23:46:30 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3672
fixsome problems with these  notes.

Revision 3672 - Directory Listing - [select for diffs]
Modified Thu Feb 3 14:31:14 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3671
sqlite 3.7.5 imported.

Revision 3671 - Directory Listing - [select for diffs]
Modified Thu Feb 3 14:30:37 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3669
Manually update the  version number.  This  could arguably be on the  vendor branch, but it's  got to be generated by configure.

Revision 3669 - Directory Listing - [select for diffs]
Modified Thu Feb 3 14:27:20 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3667
This commit was generated by cvs2svn to compensate for changes in r3668,
which included commits to RCS files with non-trunk default branches.
Revision 3667 - Directory Listing - [select for diffs]
Modified Thu Feb 3 14:12:53 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3666
document  awk upgrade

Revision 3666 - Directory Listing - [select for diffs]
Modified Thu Feb 3 14:08:18 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3665
Apply changes directly instead of the patch hack we did before.  Note this includes some patches from FreeBSD for collation, but most of the other patches in their tree have been applied upstream.

Revision 3665 - Directory Listing - [select for diffs]
Modified Thu Feb 3 14:07:13 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3663
Remove diffs for old version.

Revision 3663 - Directory Listing - [select for diffs]
Modified Thu Feb 3 13:42:18 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3661
This commit was generated by cvs2svn to compensate for changes in r3662,
which included commits to RCS files with non-trunk default branches.
Revision 3661 - Directory Listing - [select for diffs]
Modified Thu Feb 3 13:37:48 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3660
Mention newer home page in case we need access to the source

Revision 3660 - Directory Listing - [select for diffs]
Modified Thu Feb 3 04:27:20 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3659
didn't know what year it was earlier.

yes i updated file too

Revision 3659 - Directory Listing - [select for diffs]
Modified Thu Feb 3 04:22:24 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3657
Resolve conflicts

Revision 3657 - Directory Listing - [select for diffs]
Modified Thu Feb 3 04:14:35 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3655
This commit was generated by cvs2svn to compensate for changes in r3656,
which included commits to RCS files with non-trunk default branches.
Revision 3655 - Directory Listing - [select for diffs]
Modified Wed Feb 2 22:37:10 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3653
tcsh 6.17

Revision 3653 - Directory Listing - [select for diffs]
Modified Wed Feb 2 22:33:56 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3651
This commit was generated by cvs2svn to compensate for changes in r3652,
which included commits to RCS files with non-trunk default branches.
Revision 3651 - Directory Listing - [select for diffs]
Modified Tue Feb 1 14:18:29 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3650
add eee_nordic

Revision 3650 - Directory Listing - [select for diffs]
Modified Tue Feb 1 14:17:24 2011 UTC (13 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3645
add all available kbdmaps

Revision 3645 - Directory Listing - [select for diffs]
Modified Sat Jan 29 23:36:46 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3644
We don't have a compat directory.  That was a freebsdism.

Also add the apache licensed directory while we're here.

Revision 3644 - Directory Listing - [select for diffs]
Modified Sat Jan 29 23:00:34 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3632
fix script to include proper tree

Revision 3632 - Directory Listing - [select for diffs]
Modified Sun Jan 23 21:57:37 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3630
keep perl files around.

Revision 3630 - Directory Listing - [select for diffs]
Modified Sun Jan 23 21:40:16 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3629
Don't print out an error message when netwait isn't in use (most of the time)

Revision 3629 - Directory Listing - [select for diffs]
Modified Sun Jan 23 21:39:16 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3625
we're installing libperl.so again.

Revision 3625 - Directory Listing - [select for diffs]
Modified Sat Jan 22 20:47:55 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3624
Update the man page for the sensors framework switch.

Revision 3624 - Directory Listing - [select for diffs]
Modified Sat Jan 22 20:40:38 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3623
Switch coretemp over to the sensors framework.

Revision 3623 - Directory Listing - [select for diffs]
Modified Sat Jan 22 19:55:16 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3622
Import it(4) and lm(4) for common Super I/O hardware sensors.

This is based on the 2007 Google Summer of Code project by Constantine A. Murenin and code from OpenBSD.

Revision 3622 - Directory Listing - [select for diffs]
Modified Sat Jan 22 18:10:58 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3621
Fix a potential loop problem (how did that get in there?)

Revision 3621 - Directory Listing - [select for diffs]
Modified Thu Jan 20 22:25:01 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3620
update sudo while we're at it.

Revision 3620 - Directory Listing - [select for diffs]
Modified Thu Jan 20 22:24:15 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3619
1.7.4-p6

Revision 3619 - Directory Listing - [select for diffs]
Modified Thu Jan 20 22:17:41 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3618
start the upgrade to 1.7.4p6

Revision 3618 - Directory Listing - [select for diffs]
Modified Thu Jan 20 22:08:10 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3617
bind ++

Revision 3617 - Directory Listing - [select for diffs]
Modified Thu Jan 20 21:26:27 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3616
BIND 9.6.2-p3

Revision 3616 - Directory Listing - [select for diffs]
Modified Thu Jan 20 21:23:24 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3614
update xlist for new docs

Revision 3614 - Directory Listing - [select for diffs]
Modified Thu Jan 20 21:16:00 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3612
This commit was generated by cvs2svn to compensate for changes in r3613,
which included commits to RCS files with non-trunk default branches.
Revision 3612 - Directory Listing - [select for diffs]
Modified Mon Jan 17 19:41:17 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3611
Explicitly set PQ_NONE instead of relying on it being zero.

Revision 3611 - Directory Listing - [select for diffs]
Modified Mon Jan 17 19:33:15 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3610
Avoid preemption while manipulating CRs and MTRRs

Revision 3610 - Directory Listing - [select for diffs]
Modified Mon Jan 17 19:26:02 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3609
Fix a crash bug with STAT COMMAND.

Revision 3609 - Directory Listing - [select for diffs]
Modified Sat Jan 15 18:57:19 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3608
update to 3.2

Revision 3608 - Directory Listing - [select for diffs]
Modified Sat Jan 15 05:56:21 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3607
add  jme(4) for JMicron ethernet  devices. This is experimental and  any bugs should be reported.

Revision 3607 - Directory Listing - [select for diffs]
Modified Sat Jan 15 03:10:36 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3605
turn off diagnostic messages.

Revision 3605 - Directory Listing - [select for diffs]
Modified Mon Jan 10 13:51:56 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3603
Create a symlink for libperl.so to allow mports to find the perl shared library.

Revision 3603 - Directory Listing - [select for diffs]
Modified Sun Jan 9 16:53:26 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3602
enable shared perl library

Revision 3602 - Directory Listing - [select for diffs]
Modified Sat Jan 8 17:45:51 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3601
Pad mac addresses properly with leading 0 like netbsd does.

Revision 3601 - Directory Listing - [select for diffs]
Modified Sat Jan 8 16:08:45 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3600
fix some bugs found by NetBSD and FreeBSD projects.  Remove 4 clause ucb

Revision 3600 - Directory Listing - [select for diffs]
Modified Fri Jan 7 01:15:37 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3599
 Don't require /usr/lib/aout

Revision 3599 - Directory Listing - [select for diffs]
Modified Wed Jan 5 00:51:04 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3598
strange...

Revision 3598 - Directory Listing - [select for diffs]
Modified Tue Jan 4 14:23:53 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3597
Opteron rev E family of processor expose a bug where, in very rare
ocassions, memory barriers semantic is not honoured by the hardware
itself. As a result, some random breakage can happen in uninvestigable
ways (for further explanation see at the content of the commit itself).

As long as just a specific familly is bugged of an entire architecture
is broken, a complete fix-up is impratical without harming to some
extents the other correct cases.
Considering that (and considering the frequency of the bug exposure)
just print out a warning message if the affected machine is identified.

Pointed out by:	Samy Al Bahra <sbahra at repnop dot org>

Obtained from: FreeBSD (revision 198868)

Revision 3597 - Directory Listing - [select for diffs]
Modified Tue Jan 4 00:50:51 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3596
let's deal with errors.

Revision 3596 - Directory Listing - [select for diffs]
Modified Tue Jan 4 00:46:07 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3595
Format strings are your friends.

Revision 3595 - Directory Listing - [select for diffs]
Modified Mon Jan 3 05:43:27 2011 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3594
Add support for the 8103E a hardware revision of the 8169.

 Follow the lead of vendor's interrupt moderation mechanism.
  It seems RTL8169/RTL8168/RTL810xE has a kind of interrupt
  moderation mechanism but it is not documented at all. The magic
  value dramatically reduced number of interrupts without noticeable
  performance drops so apply it to all RTL8169/RTL8169 controllers.

Obtained from FreeBSD & Realtek FreeBSD driver.

Revision 3594 - Directory Listing - [select for diffs]
Modified Fri Dec 31 21:53:50 2010 UTC (13 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3592
Happy new year.

Revision 3592 - Directory Listing - [select for diffs]
Modified Thu Dec 30 03:17:53 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3590
Update bind configuration so we have a writable directory.  Update root servers list which is seriously out of date.

Revision 3590 - Directory Listing - [select for diffs]
Modified Thu Dec 30 03:11:18 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3588
add working directory for bind9

Revision 3588 - Directory Listing - [select for diffs]
Modified Thu Dec 30 02:32:45 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3585
This commit was generated by cvs2svn to compensate for changes in r3587,
which included commits to RCS files with non-trunk default branches.
Revision 3585 - Directory Listing - [select for diffs]
Modified Sat Dec 25 13:10:49 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3584
Add documentation for mports bsd.mport.mk.

Revision 3584 - Directory Listing - [select for diffs]
Modified Sun Dec 19 17:37:09 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3583
we don't want strict aliasing or profiled libs here

Revision 3583 - Directory Listing - [select for diffs]
Modified Sat Dec 18 07:59:46 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3582
Can't free the memory when we're trying to print it

Revision 3582 - Directory Listing - [select for diffs]
Modified Sat Dec 11 08:24:39 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3581
Free memory when using malloc.

use nline when it's created.

Revision 3581 - Directory Listing - [select for diffs]
Modified Sat Dec 11 07:02:48 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3580
fix typo.

Revision 3580 - Directory Listing - [select for diffs]
Modified Sat Dec 11 07:01:11 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3579
Fix a bug in update_primitive where a free'd var was strdup'd.

Assign NULL to several pointers.  While it shouldn't matter, if something weird happens it will make it easier to track down.

Revision 3579 - Directory Listing - [select for diffs]
Modified Sat Dec 11 05:49:35 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3578
ansify and use null term character instead of just 0

Revision 3578 - Directory Listing - [select for diffs]
Modified Sat Dec 11 04:22:57 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3576
Give a more specific error message depending on status of no target

Revision 3576 - Directory Listing - [select for diffs]
Modified Fri Dec 10 00:52:05 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3575
When reopening a stream backed by an open file descriptor, do not close
  the existing file descriptor.  Instead, let dup2() atomically close the
  old file descriptor when assigning the newly opened file to the same
  descriptor.  This closes a race in a multithreaded application where a
  concurrent open() could allocate the existing file descriptor in between
  the calls to close() and dup2().

Obtained from: FreeBSD

Revision 3575 - Directory Listing - [select for diffs]
Modified Thu Dec 9 00:03:40 2010 UTC (13 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3573
fix some issues with cross builds... obviously perl will still be borked. This should have gone here first.

Revision 3573 - Directory Listing - [select for diffs]
Modified Tue Nov 30 14:03:18 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3572
A double free exists in the SSL client ECDH handling code, when
processing specially crafted public keys with invalid prime
numbers. [CVE-2010-2939]

Revision 3572 - Directory Listing - [select for diffs]
Modified Fri Nov 26 05:10:39 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3571
- Check that strtoul(3) succeeds to convert the entire string in a few
  places.
- In getasciilabel(), set the disk type only when a valid type is given.

Obtained from: FreeBSD

Revision 3571 - Directory Listing - [select for diffs]
Modified Fri Nov 26 05:05:07 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3570
Get growfs to act like newfs by zeroing two blocks of inodies for each new cylinder group.

Obtained from: FreeBSD

Revision 3570 - Directory Listing - [select for diffs]
Modified Fri Nov 26 04:51:37 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3568
Handle geli-encrypted root disk devices.
Add support for identifying a journaled root filesystem.
Fix support for identifying the given /dev/vinum/root example.

Obtained from: FreeBSD

Revision 3568 - Directory Listing - [select for diffs]
Modified Fri Nov 26 04:24:31 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3567
The expand_number and flopen function definitions didn't get merged properly on import.  Let's fix that now.

Revision 3567 - Directory Listing - [select for diffs]
Modified Tue Nov 23 01:37:07 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3566
Author: mckusick
Date: Tue Nov 23 01:32:44 2010
New Revision: 215729
URL: http://svn.freebsd.org/changeset/base/215729

Log:
 MFC of 213119

 Reported problem:
 Large (60GB) filesystems created using "newfs -U -O 1 -b 65536 -f 8192"
 show incorrect results from "df" for free and used space when mounted
 immediately after creation. fsck on the new filesystem (before ever
 mounting it once) gives a "SUMMARY INFORMATION BAD" error in phase 5.

 This error hasn't occurred in any runs of fsck immediately after
 "newfs -U -b 65536 -f 8192" (leaving out the "-O 1" option).

 Solution:
 The default UFS1 superblock is located at offset 8K in the filesystem
 partition; the default UFS2 superblock is located at offset 64K in
 the filesystem partition. For UFS1 filesystems with a blocksize of
 64K, the first alternate superblock resides at 64K which is the the
 location used for the default UFS2 superblock. By default, the
 system first checks for a valid superblock at the default location
 for a UFS2 filoesystem. For a UFS1 filesystem with a blocksize of
 64K, there is a valid UFS1 superblock at this location. Thus, even
 though it is expected to be a backup superblock, the system will
 use it as its default superblock. So, we have to ensure that all the
 statistcs on usage are correct in this first alternate superblock
 as it is the superblock that will actually be used.

 While tracking down this problem, another limitation of UFS1 became
 evident. For UFS1, the number of inodes per cylinder group is stored
 in an int16_t. Thus the maximum number of inodes per cylinder group
 is limited to 2^15 - 1. This limit can easily be exceeded for block
 sizes of 32K and above. Thus when building UFS1 filesystems, newfs
 must limit the number of inodes per cylinder group to 2^15 - 1.

 Reported by: Guy Helmer<ghelmer@palisadesys.com>
 Followup by: Bruce Cran <brucec@freebsd.org>
 PR: 107692

Obtained from: FreeBSD

Revision 3566 - Directory Listing - [select for diffs]
Modified Sat Nov 20 17:50:23 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3565
remove debugging

Revision 3565 - Directory Listing - [select for diffs]
Modified Sat Nov 20 17:49:41 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3564
 Several portions of the kernel and userland code related to UFS file
        systems (and UFS2) cannot properly handle inode counts above 2^31 due
        to use of int types.  Based on a patch from FreeBSD, I've modified
        our UFS2 implementation to handle unsigned values for inode counts
        which should allow for file systems greater than 16TB.

        newfs and growfs was also modified.

Revision 3564 - Directory Listing - [select for diffs]
Modified Sat Nov 20 17:49:26 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3563
debug code for testing port problems.

Revision 3563 - Directory Listing - [select for diffs]
Modified Sat Nov 20 17:49:05 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3562
experiments with lzma

Revision 3562 - Directory Listing - [select for diffs]
Modified Tue Nov 16 14:21:22 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3561
Patch from Paul B Mahol:

Following patch fix panic on i386 for drivers using such functions.

Those two functions take 64-bit variable(s) for their arguments.
On i386 that takes additional 32-bit variable per argument.
This is required so that windrv_wrap() can correctly wrap function that
miniport driver calls with stdcall convention.
Similar explanation is provided in subr_ndis.c for other functions.
On amd64 we do not use these numbers.

Revision 3561 - Directory Listing - [select for diffs]
Modified Tue Nov 16 01:53:54 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3560
woot.. more fun with cleanup

Revision 3560 - Directory Listing - [select for diffs]
Modified Tue Nov 16 01:37:12 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3559
more of those lovely finalize statements

Revision 3559 - Directory Listing - [select for diffs]
Modified Tue Nov 16 01:21:00 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3558
more memory frees

Revision 3558 - Directory Listing - [select for diffs]
Modified Tue Nov 16 01:06:12 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3557
Missed one.

Revision 3557 - Directory Listing - [select for diffs]
Modified Tue Nov 16 01:05:34 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3556
Add more finalize statements

Revision 3556 - Directory Listing - [select for diffs]
Modified Thu Nov 11 13:33:14 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3554
I'm having a great time with pseudofs!

Revision 3554 - Directory Listing - [select for diffs]
Modified Thu Nov 11 13:28:11 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3552
don't try to unlock a mutex that wasn't locked.  FreeBSD SA 10:09

Revision 3552 - Directory Listing - [select for diffs]
Modified Wed Nov 10 18:03:16 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3551
What a weird bug.  apparently some plists have @mode or @group commands with no arguments.  This is supposed to "reset" to the default state.  libmport can't handle this right now though.

As a workaround, i have added a case to check for data being null.   That means the argument is missing
@mode vs @mode 644 where data is 644 as stored in sqlite.

This allows us to uninstall phpMyAdmin.

The next question is what to do about this case. I think a default mode should be defined for installing files and directories for ports in libmport and we should die on weird edge cases for plists.  I don't think the package should have been created like this.

Revision 3551 - Directory Listing - [select for diffs]
Modified Wed Nov 10 17:31:21 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3550
for some reason i was thinking this was strncpy.. i need more sleep.

Revision 3550 - Directory Listing - [select for diffs]
Modified Wed Nov 10 17:29:20 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3549
Make sure the filename is null terminated.  This shoudln't happen in practice, but why not be safe about it anyway.

Revision 3549 - Directory Listing - [select for diffs]
Modified Tue Nov 9 14:07:51 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3548
Update to 3.1

Revision 3548 - Directory Listing - [select for diffs]
Modified Fri Nov 5 20:13:27 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3547
might as well go all new 3.0

Revision 3547 - Directory Listing - [select for diffs]
Modified Wed Nov 3 11:00:22 2010 UTC (13 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3546
update to 2.5.1.  New vendor release.

Revision 3546 - Directory Listing - [select for diffs]
Modified Fri Oct 22 18:11:52 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3545
tag

Revision 3545 - Directory Listing - [select for diffs]
Modified Fri Oct 22 17:55:40 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3544
test is closer than you think!  DEBUG_FLAGS is the right way to do this.

Revision 3544 - Directory Listing - [select for diffs]
Modified Thu Oct 21 18:41:09 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3543
Trick compiler so that it doesn't treat vm_refcnt as a loop invariant.

Revision 3543 - Directory Listing - [select for diffs]
Modified Thu Oct 21 15:55:20 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3542
Document new sysrc utility.

Revision 3542 - Directory Listing - [select for diffs]
Modified Thu Oct 21 15:51:00 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3541
sysrc is a new utility written by Devin Teske that allows a user to easily modify the contents of /etc/rc.conf (or a version in a jail).  It will check for existing variables and adjust the value as necessary.  This is less error prone than echo >> type operations and it causes less spam.

Revision 3541 - Directory Listing - [select for diffs]
Modified Thu Oct 21 15:36:07 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3540
The values are unsigned here.  This causes problems while printing on zfs fs with a large pool.

Revision 3540 - Directory Listing - [select for diffs]
Modified Sun Oct 17 00:32:33 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3538
cvstrac fix.

Revision 3538 - Directory Listing - [select for diffs]
Modified Thu Oct 14 15:44:35 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3537
Add detatch code for usb mice.  Techncially, moused dies anyway when it's disconnected, but this is correct.

Revision 3537 - Directory Listing - [select for diffs]
Modified Sun Oct 10 16:29:59 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3536
This looks like a typo.

Revision 3536 - Directory Listing - [select for diffs]
Modified Sat Oct 9 23:12:54 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3533
fix a warning about strlen

Revision 3533 - Directory Listing - [select for diffs]
Modified Fri Oct 8 16:46:15 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3532
Fix the man page while we're here.

Revision 3532 - Directory Listing - [select for diffs]
Modified Fri Oct 8 16:37:52 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3531
Enable the new GLOB_LIMIT flag to fix a security vulnerability that is remotely exploitable with sftp daemon.
This enables the patch to libc/gen/glob.c

Revision 3531 - Directory Listing - [select for diffs]
Modified Fri Oct 8 16:33:29 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3530
A recently security vulnerability was reported in glob memory limit handling.  It allows for remote dos attacks on ftp and sftp servers among other things.

Add new limits based on a patch from DragonFly and NetBSD.

Note there are still issues here:

1. No man page changes yet.
2. sftp has not been fully patched yet.

Revision 3530 - Directory Listing - [select for diffs]
Modified Wed Oct 6 12:57:35 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3528
Fix merge conflict

Revision 3528 - Directory Listing - [select for diffs]
Modified Wed Oct 6 12:55:39 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3525
This commit was generated by cvs2svn to compensate for changes in r3527,
which included commits to RCS files with non-trunk default branches.
Revision 3525 - Directory Listing - [select for diffs]
Modified Fri Oct 1 12:36:46 2010 UTC (13 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3524
Commit Jeremy Chadwick's netwait script.  This script adds a timeout period for network activity while the system is starting.  There's an assumption in the system that link state means the network is working.  Some NICs such as the realtek based chips tend to go up and down causing the system to think everything is ok and then losing access to remote file systems, ntp/rdate, etc.

This is not an ideal solution, but it does help.

Based on FreeBSD PR conf/151063

It's quite possible they'll integrate something similar in their new defaultroute script in FreeBSD 8/9.

Note this does not include the rc.conf.5 changes yet.

Revision 3524 - Directory Listing - [select for diffs]
Modified Mon Sep 27 22:20:09 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3523
Conditionally define MAXCPU the same for all kernels regardless of SMP or !SMP.

On i386 and amd64 define MAXCPU to 32 since they exist now.  Most kernel structures are resized based on this value.

Revision 3523 - Directory Listing - [select for diffs]
Modified Sun Sep 26 16:02:20 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3522
Remove unnecessary white space.  Add a possible fix for the cross compile problems on tinderbox.

Revision 3522 - Directory Listing - [select for diffs]
Modified Sat Sep 25 16:20:35 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3521
Allow users to turn on/off interrupt harvesting

Revision 3521 - Directory Listing - [select for diffs]
Modified Sat Sep 25 16:14:13 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3520
allow for clean shutdown

Revision 3520 - Directory Listing - [select for diffs]
Modified Sat Sep 25 16:12:49 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3519
Back firewall require change out.  This requires more thought.

Revision 3519 - Directory Listing - [select for diffs]
Modified Sat Sep 25 16:11:00 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3518
Require that the firewalls are up before the network.. why have a window of opportunity?

Revision 3518 - Directory Listing - [select for diffs]
Modified Sat Sep 25 16:06:22 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3514
sysctl sometimes reports warnings instead of errors.  Make the script catch these cases.

Revision 3514 - Directory Listing - [select for diffs]
Modified Mon Sep 20 15:52:53 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3513
Security update for integer overflow in bzip2

Revision 3513 - Directory Listing - [select for diffs]
Modified Sun Sep 12 17:28:34 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3512
remove -o flag.. we don't really need it

Revision 3512 - Directory Listing - [select for diffs]
Modified Sat Sep 11 20:07:15 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3511
add mport.info utility.  It works similar to mport.list except it's for single ports instead of all of them.  Specifically it implements something comparable to pkg_info -qO origin right now.

Revision 3511 - Directory Listing - [select for diffs]
Modified Sat Sep 11 20:06:10 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3510
free mport instance before shutdown

Revision 3510 - Directory Listing - [select for diffs]
Modified Sat Sep 11 17:23:03 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3508
if scripts are pruned, we don't want errors

Revision 3508 - Directory Listing - [select for diffs]
Modified Sat Sep 11 17:19:39 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3507
Remove isdnd script

Revision 3507 - Directory Listing - [select for diffs]
Modified Sat Sep 11 17:18:22 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3505
REmove isdn.. we killed that a few months ago.

Revision 3505 - Directory Listing - [select for diffs]
Modified Fri Sep 10 19:05:00 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3504
fix off by one error

Revision 3504 - Directory Listing - [select for diffs]
Modified Fri Sep 10 19:04:23 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3503
fix a file desc leak

Revision 3503 - Directory Listing - [select for diffs]
Modified Fri Sep 10 18:52:58 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3502
conditionalize ipv6 support

Revision 3502 - Directory Listing - [select for diffs]
Modified Fri Sep 10 18:51:40 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3501
conditionalize ipv6 support, and remove the date from the version string

Revision 3501 - Directory Listing - [select for diffs]
Modified Fri Sep 10 18:33:45 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3500
Allow bonjour traffic from the lan.

Revision 3500 - Directory Listing - [select for diffs]
Modified Fri Sep 10 18:24:25 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3499
Add mdns entry

Revision 3499 - Directory Listing - [select for diffs]
Modified Fri Sep 10 18:08:20 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3498
Don't forget to start hostid

Revision 3498 - Directory Listing - [select for diffs]
Modified Fri Sep 10 18:03:37 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3497
Show examples of network wise close servers to encourage users to pick servers closer to them.

Revision 3497 - Directory Listing - [select for diffs]
Modified Fri Sep 10 17:58:20 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3495
Cleanup networks and bring it into reality with today.

Revision 3495 - Directory Listing - [select for diffs]
Modified Wed Sep 8 21:34:36 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3491
Check target arch as well as target to deterimine if we are doing a cross build.  This will help on systems with 32bit vs 64bit issues.

Revision 3491 - Directory Listing - [select for diffs]
Modified Mon Sep 6 00:23:34 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3488
Move things along.. current is now 0.4-CURRENT.  Change the man pages, osreldate and other tunables in the system accordingly.  While we're here, update other bsd systems in our mdoc.local.

Revision 3488 - Directory Listing - [select for diffs]
Modified Sat Sep 4 21:40:22 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3487
let the world know we're a midnightbsd partition.  Reorder NTFS as it's more common.  Add ASUS and DELL partition types.

Revision 3487 - Directory Listing - [select for diffs]
Modified Sat Sep 4 19:48:07 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3486
we should really call strdup here..

Revision 3486 - Directory Listing - [select for diffs]
Modified Sat Sep 4 19:39:47 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3485
Add -q flag to quiet operation in scripts.  Enhance p command so it understands size qualifiers.

Revision 3485 - Directory Listing - [select for diffs]
Modified Sat Sep 4 19:30:04 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3484
Add opton to specify which program to mount with.

Revision 3484 - Directory Listing - [select for diffs]
Modified Thu Sep 2 12:59:28 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3483
Bump param.h for the security update to libutil plus some of the sparc64 changes.

Revision 3483 - Directory Listing - [select for diffs]
Modified Thu Sep 2 12:58:27 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3482
Document security update.

Revision 3482 - Directory Listing - [select for diffs]
Modified Thu Sep 2 12:51:16 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3481
Fix a potential security issue first spotted with OpenSSH and modifications to login.conf


http://secunia.com/advisories/40923/

In setusercontext(), do not apply user settings unless running as the
user in question (usually but not necessarily because we were called
with LOGIN_SETUSER).  This plugs a hole where users could raise their
resource limits and expand their CPU mask.

Obtained from: FreeBSD

Revision 3481 - Directory Listing - [select for diffs]
Modified Wed Sep 1 00:22:55 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3480
Let's get ata going

Revision 3480 - Directory Listing - [select for diffs]
Modified Tue Aug 31 23:34:39 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3479
oops.. add missing file

Revision 3479 - Directory Listing - [select for diffs]
Modified Tue Aug 31 21:59:04 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3478
add compatibility code for sparc64 & ata.  sun disk label doesn't handle > 128GB well...

Revision 3478 - Directory Listing - [select for diffs]
Modified Tue Aug 31 13:08:08 2010 UTC (13 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3477
Sync with FreeBSD 7-stable.  Includes NetBSD style changes and 3 clause removal.    Also exports mc146818_def_read and mc146818_def_write so the front end can make use of them.

Revision 3477 - Directory Listing - [select for diffs]
Modified Mon Aug 30 17:10:34 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3476
fix typos and build problem for amd64 and sparc64

Revision 3476 - Directory Listing - [select for diffs]
Modified Sun Aug 22 22:19:05 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3475
Document mdnsd

Revision 3475 - Directory Listing - [select for diffs]
Modified Sun Aug 22 22:06:29 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3474
Create rc script to start mdnsd on system startup.

Revision 3474 - Directory Listing - [select for diffs]
Modified Sun Aug 22 21:55:06 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3473
Add an entry for mdnsd, apple's multicast dns daemon.

Revision 3473 - Directory Listing - [select for diffs]
Modified Sun Aug 22 21:42:55 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3472
dns-sd utility

Revision 3472 - Directory Listing - [select for diffs]
Modified Sun Aug 22 21:03:02 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3471
add man page

Revision 3471 - Directory Listing - [select for diffs]
Modified Sun Aug 22 21:00:14 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3470
fix warning when building

Revision 3470 - Directory Listing - [select for diffs]
Modified Sun Aug 22 20:56:03 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3469
MidnightBSD patches.

Revision 3469 - Directory Listing - [select for diffs]
Modified Sun Aug 22 20:55:37 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3468
Start dnsextd port

Revision 3468 - Directory Listing - [select for diffs]
Modified Sun Aug 22 20:18:58 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3467
install dns_sd.h

Revision 3467 - Directory Listing - [select for diffs]
Modified Sun Aug 22 20:05:37 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3466
We don't need the command line tool man page here.

Revision 3466 - Directory Listing - [select for diffs]
Modified Sun Aug 22 20:01:13 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3465
add libdns_sd

Revision 3465 - Directory Listing - [select for diffs]
Modified Sun Aug 22 19:54:58 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3464
mdnsd connect

Revision 3464 - Directory Listing - [select for diffs]
Modified Sat Aug 21 01:48:10 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3463
Remove icc support.  We don't have it in mports anymore and newer versions don't work anyway.

Revision 3463 - Directory Listing - [select for diffs]
Modified Thu Aug 19 00:03:02 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3461
Add mDNSResponder import instructions.

Revision 3461 - Directory Listing - [select for diffs]
Modified Wed Aug 18 23:59:38 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3459
This commit was generated by cvs2svn to compensate for changes in r3460,
which included commits to RCS files with non-trunk default branches.
Revision 3459 - Directory Listing - [select for diffs]
Modified Mon Aug 16 00:04:23 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3458
why did i use cpp syntax for a makefile?

Revision 3458 - Directory Listing - [select for diffs]
Modified Sun Aug 15 04:37:10 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3457
libdispatch

Revision 3457 - Directory Listing - [select for diffs]
Modified Sun Aug 15 04:34:15 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3456
Bump midnightbsd version to detect libdispatch presence.

Revision 3456 - Directory Listing - [select for diffs]
Modified Sun Aug 15 04:28:26 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3455
Add an internal _once() method that works like pthread_once(3) but safe for libc routines.  This is safe to use in single threaded and multithreaded processes.

Obtained from: FreeBSD (SVN 200649)

Revision 3455 - Directory Listing - [select for diffs]
Modified Sun Aug 15 04:12:02 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3454
Improve C99 compatiblity.  Use directly calculated offsets into the supplied buffer.


Obtained from: FreeBSD

Revision 3454 - Directory Listing - [select for diffs]
Modified Sun Aug 15 04:05:09 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3453
Add prototype for internal libc interface.

Revision 3453 - Directory Listing - [select for diffs]
Modified Sun Aug 15 03:46:32 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3452
Fix incorrrect argument to list head initializer.

Revision 3452 - Directory Listing - [select for diffs]
Modified Sat Aug 14 22:27:02 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3451
Add libdispatch example

Revision 3451 - Directory Listing - [select for diffs]
Modified Sat Aug 14 22:26:09 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3450
add a sample directory for libdispatch

Revision 3450 - Directory Listing - [select for diffs]
Modified Sat Aug 14 22:15:14 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3449
fix problems on i386 based machines.  MidnightBSD effectively requires a 586 anyway

Revision 3449 - Directory Listing - [select for diffs]
Modified Sat Aug 14 22:01:44 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3448
make sure we're linked to libpthread

Revision 3448 - Directory Listing - [select for diffs]
Modified Sat Aug 14 21:42:15 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3447
clean these up while i'm here.

Revision 3447 - Directory Listing - [select for diffs]
Modified Sat Aug 14 21:41:56 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3446
Fix this makefile.. i should be more careful when copying things.

Revision 3446 - Directory Listing - [select for diffs]
Modified Sat Aug 14 21:17:41 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3445
Connect apache licensed software to build.

Revision 3445 - Directory Listing - [select for diffs]
Modified Sat Aug 14 21:11:14 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3444
Merge midnightbsd changes.

Revision 3444 - Directory Listing - [select for diffs]
Modified Sat Aug 14 20:42:19 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3443
add APACHE option so we can conditionally turn off apache licensed code in the base system

Revision 3443 - Directory Listing - [select for diffs]
Modified Sat Aug 14 20:39:49 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3441
Add include directory for libdispatch.

Revision 3441 - Directory Listing - [select for diffs]
Modified Sat Aug 14 20:29:50 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3439
This commit was generated by cvs2svn to compensate for changes in r3440,
which included commits to RCS files with non-trunk default branches.
Revision 3439 - Directory Listing - [select for diffs]
Modified Sat Aug 14 20:26:14 2010 UTC (13 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3438
Introduce Apache licensed code. libdispatch++

Revision 3438 - Directory Listing - [select for diffs]
Modified Sat Jul 31 05:51:23 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3437
make warns3 friendly

Revision 3437 - Directory Listing - [select for diffs]
Modified Sat Jul 31 05:47:02 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3436
make warns 3 friendly

Revision 3436 - Directory Listing - [select for diffs]
Modified Sat Jul 31 05:38:50 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3435
Add -m option to cron(8), which overrides default mail recipient for cron mails unless it's explicitly provided by MAILTO= in crontab.  Setting the recipient to null string disables default mails.  Also remove __P instances. Obtained from: FreeBSD 9-CURRENT

Revision 3435 - Directory Listing - [select for diffs]
Modified Sat Jul 31 05:27:08 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3434
Add pam support, Obtained from: FreeBSD 9-CURRENT

Revision 3434 - Directory Listing - [select for diffs]
Modified Sat Jul 31 03:56:38 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3433
Add some new functions to the primitive.  FreeBSD pkg_info offers some variations on output including

pkg_info -aoq which outputs the origin with newlines such as archivers/zip and
pkg_info -ao which outputs a long format of the form

Information for portname-version:

Origin:
archivers/zip

We're implementing a similar format for future use/compatibility in the mports Mk files to optimize checking for installed packages (Dependencies)

We didn't bother with a since this primitive always lists all by default.

Revision 3433 - Directory Listing - [select for diffs]
Modified Sat Jul 31 03:40:40 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3432
wrong bsd

Revision 3432 - Directory Listing - [select for diffs]
Modified Tue Jul 13 23:21:45 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3431
Bump for sendfile(2) mbuf fix.

Revision 3431 - Directory Listing - [select for diffs]
Modified Tue Jul 13 23:16:10 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3430
Denote mbuf fix

Revision 3430 - Directory Listing - [select for diffs]
Modified Tue Jul 13 23:14:57 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3429
Maintain read only state on mbuf copies.  This was causing data corruption with sendfile(2).

Revision 3429 - Directory Listing - [select for diffs]
Modified Sun Jul 4 15:48:51 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3428
brainfuck(1)

Revision 3428 - Directory Listing - [select for diffs]
Modified Sun Jul 4 13:59:12 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3427
Introduce brainfuck(1) to MidnightBSD.  brainfuck is a language/interpreter with details in the man page.

Obtained from: MirBSD

Revision 3427 - Directory Listing - [select for diffs]
Modified Sat Jul 3 16:49:32 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3426
Refactor the linux_mmap_common function to take individual arguments similar to FreeBSD.  This is easier to read and similar to other kernel interfaces.  This also makes it easier to fix the mmap offsets greater than 32  bits.   We can deal with a 64 bit file offset now.  This is based on a patch to FreeBSD by Christian Zander @ NVIDIA

Revision 3426 - Directory Listing - [select for diffs]
Modified Sat Jul 3 16:43:27 2010 UTC (13 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3425
Refactor the linux_mmap_common function to take individual arguments similar to FreeBSD.  This is easier to read and similar to other kernel interfaces.  This also makes it easier to fix the mmap offsets greater than 32  bits.   We can deal with a 64 bit file offset now.  This is based on a patch to FreeBSD by Christian Zander @ NVIDIA

Revision 3425 - Directory Listing - [select for diffs]
Modified Sun Jun 20 20:15:12 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3424
sync with freebsd 7 stable, this also supports crash's nic

Revision 3424 - Directory Listing - [select for diffs]
Modified Sun Jun 20 20:13:20 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3423
sync with freebsd 7 stable, this should also support crash's nic

Revision 3423 - Directory Listing - [select for diffs]
Modified Sat Jun 19 14:56:05 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3422
Do not require pos parameter to be zero in MAP_ANONYMOUS mmap requests
 in Linux emulation layer. Linux seems to only require that pos is
 page-aligned, but otherwise ignores it. Default FreeBSD mmap parameter
 checking is too strict to allow some Linux binaries to run. tsMuxeR is
 one example of such a binary.

Obtained from: kan@FreeBSD

Revision 3422 - Directory Listing - [select for diffs]
Modified Sat Jun 19 14:52:47 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3421
Add reference to c89(7)

Revision 3421 - Directory Listing - [select for diffs]
Modified Sat Jun 19 14:49:04 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3420
We removed the majority of picobsd years ago.

Revision 3420 - Directory Listing - [select for diffs]
Modified Sat Jun 19 14:48:18 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3419
Modify man page to reference new c99(7).

Revision 3419 - Directory Listing - [select for diffs]
Modified Sat Jun 19 14:47:17 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3418
Remove adding_user(8)

Revision 3418 - Directory Listing - [select for diffs]
Modified Sat Jun 19 14:46:43 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3417
Add c99 standards document.

adding_user(8) was not a command and thus belongs here.

Revision 3417 - Directory Listing - [select for diffs]
Modified Sat Jun 19 14:37:32 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3416
top(1) mistakenly reports uptime off by 30 seconds due to a rounding calculation copied from another utility.  Reported to FreeBSD by Janne Snabb.

Revision 3416 - Directory Listing - [select for diffs]
Modified Wed Jun 16 13:01:06 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3415
Add the liblzma library used for xz compression

Revision 3415 - Directory Listing - [select for diffs]
Modified Wed Jun 16 12:59:44 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3414
Prepare for liblzma

Revision 3414 - Directory Listing - [select for diffs]
Modified Wed Jun 16 12:35:21 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3412
Add import instructions and files.

Revision 3412 - Directory Listing - [select for diffs]
Modified Wed Jun 16 12:26:20 2010 UTC (13 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3410
This commit was generated by cvs2svn to compensate for changes in r3411,
which included commits to RCS files with non-trunk default branches.
Revision 3410 - Directory Listing - [select for diffs]
Modified Sun May 30 21:24:10 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3409
Add nsswitch.conf

Revision 3409 - Directory Listing - [select for diffs]
Modified Sun May 30 03:03:24 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3408
remove debug statement

Revision 3408 - Directory Listing - [select for diffs]
Modified Sun May 30 03:02:12 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3406
While this is mostly unnecessary, let's allocate memory in many cases with calloc for now. It will make finding bugs that much easier since we're guaranteed to have the memory zerod.

Revision 3406 - Directory Listing - [select for diffs]
Modified Thu May 27 13:55:02 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3404
The nfsclient didn't validate the length of the path passed to it.  This could cause code execution particularly when users are allowed to mount file systems.

Revision 3404 - Directory Listing - [select for diffs]
Modified Thu May 27 13:49:03 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3403
Security update for "OPIE off-by-one stack overflow" reported to FreeBSD by   Maksymilian Arciemowicz and Adam Zabrocki

This relates to FreBSD SA 10:05.opie

Revision 3403 - Directory Listing - [select for diffs]
Modified Wed May 5 20:40:34 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3402
zlib++

Revision 3402 - Directory Listing - [select for diffs]
Modified Wed May 5 20:37:05 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3401
blast blast

Revision 3401 - Directory Listing - [select for diffs]
Modified Wed May 5 20:36:40 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3400
yuckers

Revision 3400 - Directory Listing - [select for diffs]
Modified Wed May 5 20:36:19 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3399
visual pascal is even worse

Revision 3399 - Directory Listing - [select for diffs]
Modified Wed May 5 20:10:27 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3398
we don't do pascal

Revision 3398 - Directory Listing - [select for diffs]
Modified Wed May 5 19:31:24 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3397
remove garbage

Revision 3397 - Directory Listing - [select for diffs]
Modified Wed May 5 19:28:11 2010 UTC (13 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 3396
Zlib 1.2.5 with symbol/versioning and reverting FREEBSD-upgrade from the last commit

Revision 3396 - Directory Listing - [select for diffs]
Modified Wed May 5 18:46:22 2010 UTC (13 years, 10 months ago) by vganji
Original Path: trunk
Diff to previous 3395
UPdate libz to latest version

Revision 3395 - Directory Listing - [select for diffs]
Modified Tue May 4 21:41:55 2010 UTC (13 years, 10 months ago) by vganji
Original Path: trunk
Diff to previous 3394
Update the Makefile to match the FreeBSD changes

Revision 3394 - Directory Listing - [select for diffs]
Modified Sat May 1 00:14:17 2010 UTC (13 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3393
Sudo was updated

Revision 3393 - Directory Listing - [select for diffs]
Modified Sat May 1 00:12:27 2010 UTC (13 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 3392
Update to 1.7.2p6

Revision 3392 - Directory Listing - [select for diffs]
Modified Wed Mar 31 13:00:05 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3391
Fix initialization of lists and slists

Revision 3391 - Directory Listing - [select for diffs]
Modified Sat Mar 27 22:39:14 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3390
when vget fails because the vnode has been reclaimed, don't bother looping.

Revision 3390 - Directory Listing - [select for diffs]
Modified Sat Mar 27 21:46:55 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3389
add option to show the file system type, -T

Revision 3389 - Directory Listing - [select for diffs]
Modified Fri Mar 26 18:15:18 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3388
Fix build error with missing header on amd64.

Revision 3388 - Directory Listing - [select for diffs]
Modified Wed Mar 24 12:07:02 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3387
Dont' delete the .snap snapshot directory.  This should never be auto cleaned

Revision 3387 - Directory Listing - [select for diffs]
Modified Tue Mar 23 00:52:05 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3386
Enable mmap for minigzip(1)

Revision 3386 - Directory Listing - [select for diffs]
Modified Sun Mar 21 20:05:10 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3385
Document zlib 1.2.4 update

Revision 3385 - Directory Listing - [select for diffs]
Modified Sun Mar 21 20:04:23 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3384
Update upgrade instructions, remove examples

Revision 3384 - Directory Listing - [select for diffs]
Modified Sun Mar 21 20:02:35 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3383
remove files that shouldn't have been imported here

Revision 3383 - Directory Listing - [select for diffs]
Modified Sun Mar 21 20:01:16 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3382
Remove files I shouldn't have imported from this branch

Revision 3382 - Directory Listing - [select for diffs]
Modified Sun Mar 21 19:57:34 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3380
Resolve conflicts

Revision 3380 - Directory Listing - [select for diffs]
Modified Sun Mar 21 19:52:04 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3377
This commit was generated by cvs2svn to compensate for changes in r3379,
which included commits to RCS files with non-trunk default branches.
Revision 3377 - Directory Listing - [select for diffs]
Modified Sat Mar 20 03:48:49 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3376
Document this mornings change.

Revision 3376 - Directory Listing - [select for diffs]
Modified Sat Mar 20 03:06:38 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3375
We don't do ppc or ia64

Revision 3375 - Directory Listing - [select for diffs]
Modified Sat Mar 20 02:24:56 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3374
Add a setting for the via c7 cpus.  Delete the ia64 stuff since we don't support that anyway.

Revision 3374 - Directory Listing - [select for diffs]
Modified Fri Mar 19 13:05:50 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3373
sse support is a effectively required now

Revision 3373 - Directory Listing - [select for diffs]
Modified Thu Mar 18 00:39:54 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3372
Easily document the linux 2.6.16 knob

Revision 3372 - Directory Listing - [select for diffs]
Modified Thu Mar 18 00:12:58 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3371
bump the midnightbsd version to indicate the presense of updated hda audio, new tme zones and the cpu detection code.  we need to do more with this cpu detection code.  Note this also includes changes to linprocfs from freebsd 7-stable that might help with newer kernel emulation.

Revision 3371 - Directory Listing - [select for diffs]
Modified Wed Mar 17 23:53:35 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3370
timezones and ati updates

Revision 3370 - Directory Listing - [select for diffs]
Modified Wed Mar 17 23:51:34 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3369
Update timezone files to 2010e

Revision 3369 - Directory Listing - [select for diffs]
Modified Wed Mar 17 23:45:20 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3368
We need to add a lot more, but this gets my ati card detecting.

Revision 3368 - Directory Listing - [select for diffs]
Modified Wed Mar 17 23:40:25 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3367
Add support for several newer sound cards including the following ATI and realtek chipsets:

hdac0: <ATI SB600 High Definition Audio Controller> mem 0xfbbf4000-0xfbbf7fff ir
q 16 at device 20.2 on pci0
hdac0: HDA Driver Revision: 20091113_0138
hdac0: [ITHREAD]
hdac0: HDA Codec #0: Realtek ALC887
hdac1: <ATI RV730 High Definition Audio Controller> mem 0xfbcec000-0xfbceffff ir
q 19 at device 0.1 on pci1
hdac1: HDA Driver Revision: 20091113_0138
hdac1: [ITHREAD]
hdac1: HDA Codec #0: ATI R6xx HDMI
hdac2: <ATI RV730 High Definition Audio Controller> mem 0xfbdec000-0xfbdeffff ir
q 17 at device 0.1 on pci2
hdac2: HDA Driver Revision: 20091113_0138
hdac2: [ITHREAD]
hdac2: HDA Codec #0: ATI R6xx HDMI
pcm0: <HDA Realtek ALC887 PCM #0 Analog> at cad 0 nid 1 on hdac0
pcm1: <HDA Realtek ALC887 PCM #1 Analog> at cad 0 nid 1 on hdac0
pcm2: <HDA Realtek ALC887 PCM #2 Digital> at cad 0 nid 1 on hdac0
pcm3: <HDA Realtek ALC887 PCM #3 Digital> at cad 0 nid 1 on hdac0
pcm4: <HDA ATI R6xx HDMI PCM #0 HDMI> at cad 0 nid 1 on hdac1
pcm5: <HDA ATI R6xx HDMI PCM #0 HDMI> at cad 0 nid 1 on hdac2

Revision 3367 - Directory Listing - [select for diffs]
Modified Tue Mar 16 00:04:15 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3366
This was applicable to 0.2.x and lower.  Newer snd_hda and so on don't do it

Revision 3366 - Directory Listing - [select for diffs]
Modified Sun Mar 14 00:01:08 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3365
Document recent changes.

Revision 3365 - Directory Listing - [select for diffs]
Modified Sat Mar 13 23:58:53 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3364
Update CPU detection logic.  This should greatly simplify determining cpu make.

Revision 3364 - Directory Listing - [select for diffs]
Modified Sat Mar 13 19:15:51 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3363
Update our cpu types and include a list of vendors of CPUs.  This will be used with identcpu and kernel modules later to "detect" cpu vendors to enable/disable features.

Revision 3363 - Directory Listing - [select for diffs]
Modified Sat Mar 13 05:10:11 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3362
Remove all debugging settings.  We don't want production code to do this.

Revision 3362 - Directory Listing - [select for diffs]
Modified Sat Mar 13 05:07:04 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3361
Add a third party public domain string replace function to correctly deal with the case where mports contain a + in the name

zipios++ fails fake do to the regular expression dying on +.  We may need to handle other special charactes if they come up in port names.  I haven't seen any to date.

Revision 3361 - Directory Listing - [select for diffs]
Modified Sat Mar 13 02:47:58 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3360
a few subtle fixes with fd handling.  Technically open returns a fd that's not negative.

Revision 3360 - Directory Listing - [select for diffs]
Modified Sat Mar 13 02:39:52 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3359
yet more const char*

Revision 3359 - Directory Listing - [select for diffs]
Modified Sat Mar 13 02:33:48 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3358
fix more warnings with const char* issues

Revision 3358 - Directory Listing - [select for diffs]
Modified Sat Mar 13 01:42:55 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3357
Fix a few compiler warnings.

Revision 3357 - Directory Listing - [select for diffs]
Modified Sat Mar 13 00:57:30 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3356
lets fix one compiler warning

Revision 3356 - Directory Listing - [select for diffs]
Modified Fri Mar 12 13:02:54 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3355
I forgot to check for SQLITE_OK like the original code did in the success case.. duh

Revision 3355 - Directory Listing - [select for diffs]
Modified Fri Mar 12 04:28:25 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3354
hwpstate

Revision 3354 - Directory Listing - [select for diffs]
Modified Fri Mar 12 04:24:31 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3353
hwpstate for amd cpus

Revision 3353 - Directory Listing - [select for diffs]
Modified Fri Mar 12 03:59:44 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3352
We're getting weird locking errors sometimes.  If the sqlite call is "busy" or "locked", try the operation again.  It could be a temporary problem from another process or a time consuming operation.

Revision 3352 - Directory Listing - [select for diffs]
Modified Fri Mar 12 01:04:34 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3350
MKSH R39c.. missed it by a few hours.

Revision 3350 - Directory Listing - [select for diffs]
Modified Fri Mar 12 01:02:44 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3348
This commit was generated by cvs2svn to compensate for changes in r3349,
which included commits to RCS files with non-trunk default branches.
Revision 3348 - Directory Listing - [select for diffs]
Modified Wed Mar 10 05:45:23 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3347
close db

Revision 3347 - Directory Listing - [select for diffs]
Modified Wed Mar 10 05:44:13 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3346
free on close

Revision 3346 - Directory Listing - [select for diffs]
Modified Wed Mar 10 05:43:30 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3345
free on error

Revision 3345 - Directory Listing - [select for diffs]
Modified Wed Mar 10 05:42:11 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3344
close db cleanly

Revision 3344 - Directory Listing - [select for diffs]
Modified Wed Mar 10 05:41:07 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3343
likewise free db on mport.delete errors.

Revision 3343 - Directory Listing - [select for diffs]
Modified Wed Mar 10 05:38:26 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3342
If we have an error during install, make sure we close the db cleanly.

Revision 3342 - Directory Listing - [select for diffs]
Modified Wed Mar 10 05:28:05 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3341
finalize was getting called before we evaluated the column.  This was causing a seg fault on the new version of sqlite.  I'm surprised we didn't see this sooner.

Revision 3341 - Directory Listing - [select for diffs]
Modified Wed Mar 10 05:05:28 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3340
Haven't we been busy.

Revision 3340 - Directory Listing - [select for diffs]
Modified Wed Mar 10 05:04:09 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3338
update for new version

Revision 3338 - Directory Listing - [select for diffs]
Modified Wed Mar 10 05:03:06 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3336
This commit was generated by cvs2svn to compensate for changes in r3337,
which included commits to RCS files with non-trunk default branches.
Revision 3336 - Directory Listing - [select for diffs]
Modified Wed Mar 10 04:45:41 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3335
update for R39b

Revision 3335 - Directory Listing - [select for diffs]
Modified Wed Mar 10 04:35:12 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3333
minor update to directions.

Revision 3333 - Directory Listing - [select for diffs]
Modified Wed Mar 10 04:30:39 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3331
This commit was generated by cvs2svn to compensate for changes in r3332,
which included commits to RCS files with non-trunk default branches.
Revision 3331 - Directory Listing - [select for diffs]
Modified Wed Mar 10 04:21:10 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3330
update ffi.h

Revision 3330 - Directory Listing - [select for diffs]
Modified Wed Mar 10 04:18:22 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3328
update pc file

Revision 3328 - Directory Listing - [select for diffs]
Modified Wed Mar 10 04:16:16 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3326
This commit was generated by cvs2svn to compensate for changes in r3327,
which included commits to RCS files with non-trunk default branches.
Revision 3326 - Directory Listing - [select for diffs]
Modified Wed Mar 10 03:58:20 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3325
Update system sudo

Revision 3325 - Directory Listing - [select for diffs]
Modified Wed Mar 10 03:45:21 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3324
update to sudo 1.7.2p5

Revision 3324 - Directory Listing - [select for diffs]
Modified Sat Mar 6 14:40:28 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3323
Add the FID and VID definitions for our cute late night change.

Revision 3323 - Directory Listing - [select for diffs]
Modified Sat Mar 6 03:50:04 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3322
set amd_pminfo up on amd64.

Revision 3322 - Directory Listing - [select for diffs]
Modified Sat Mar 6 03:41:11 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3321
set the amd_pminfo on cpu detection.

Revision 3321 - Directory Listing - [select for diffs]
Modified Sat Mar 6 03:23:08 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3320
Add amd_pminfo definitions.

Revision 3320 - Directory Listing - [select for diffs]
Modified Sat Mar 6 03:20:08 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3319
Add amd_pmifo flag to store advanced power management info with AMD cpus.

Revision 3319 - Directory Listing - [select for diffs]
Modified Fri Mar 5 05:26:35 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3318
Add special registers for sse 4.1 4.2 x2apic, MOVBE (intel atom cpus have this) and popcnt

Revision 3318 - Directory Listing - [select for diffs]
Modified Fri Mar 5 05:22:17 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3317
add cpu identification bits for several features including sse 4.1, 4.2, MOVBE, POPCNT, XSAVE and OSXSAVE

Revision 3317 - Directory Listing - [select for diffs]
Modified Fri Mar 5 05:14:43 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3316
Introduce the AMD Phenom cpufreq support.  This is not yet connected to the build.

Obtained from: FreeBSD

Revision 3316 - Directory Listing - [select for diffs]
Modified Fri Mar 5 05:09:05 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3315
Handle unregister properly.  DOn't do it if cpu fails to detatch.

Revision 3315 - Directory Listing - [select for diffs]
Modified Fri Mar 5 05:07:04 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3314
Do not use PowerNow! if FID or VID is missing.

Revision 3314 - Directory Listing - [select for diffs]
Modified Fri Mar 5 05:05:56 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3313
Use power management information for AMD CPUs from identcpu.c.

Revision 3313 - Directory Listing - [select for diffs]
Modified Fri Mar 5 05:02:17 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3312
Fail detach if cpufreq_unregister() fails.

Revision 3312 - Directory Listing - [select for diffs]
Modified Fri Mar 5 04:59:08 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3311
Add Pentium D cores into the list that can't handle 12.5% and 25%
throttle. My SMP kernel hangs when one of those is selected by
powerd. Errata AA21 here:

ftp://download.intel.com/design/PentiumXE/specupdt/31030717.pdf

Obtained from: FreeBSD

Revision 3311 - Directory Listing - [select for diffs]
Modified Fri Mar 5 04:55:38 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3310
1.13: Use correct bitmask for checking CPU identities.
1.16: Add XXX comment about the table in general.

Obtained from: FreeBSD

Revision 3310 - Directory Listing - [select for diffs]
Modified Fri Mar 5 04:50:31 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3309
If we are unable to obtain a frequency list from either ACPI or the
static tables, then attempt to build a simple list containing just the high
and low frequencies if the hw.est.msr_info tunable is set to 1.  By default
this is disabled.

Obtained from FreeBSD

Revision 3309 - Directory Listing - [select for diffs]
Modified Fri Mar 5 04:45:18 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3308
add a proper detach

Revision 3308 - Directory Listing - [select for diffs]
Modified Fri Mar 5 04:43:31 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3307
After probing the available frequency settings, restore the CPU to run
at whatever frequency it started at.

Revision 3307 - Directory Listing - [select for diffs]
Modified Fri Mar 5 04:36:59 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3306
1.13: Use correct bitmask for checking CPU identities.
1.16: Add XXX comment about the table in general.

Increase time we wait for things to settle to 1 millisecond,
10 microseconds is too short.

Revision 3306 - Directory Listing - [select for diffs]
Modified Fri Mar 5 04:31:23 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3305
Use cpu_feature2 and don't free anything in detach.

Obtained from FreeBSD

Revision 3305 - Directory Listing - [select for diffs]
Modified Fri Mar 5 04:28:06 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3304
In est_acpi_info(), initialize count before passing its pointer to
CPUFREQ_DRV_SETTINGS().

Revision 3304 - Directory Listing - [select for diffs]
Modified Fri Mar 5 04:26:48 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3303
Validate the id16 values gathered from ACPI (previously a TODO item).

Obtained from FreeBSD

Revision 3303 - Directory Listing - [select for diffs]
Modified Fri Mar 5 04:25:08 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3302
add tag

Revision 3302 - Directory Listing - [select for diffs]
Modified Fri Mar 5 03:53:31 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3301
Attach the cpufreq child devices with specific orders to enforce
relative priority of some of the drivers that manage the same state (e.g.
ichss0 vs est0).

Revision 3301 - Directory Listing - [select for diffs]
Modified Fri Mar 5 03:48:39 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3300
Probe CPUs after the PCI hierarchy on i386 and amd64.  This allows
the cpufreq drivers to reliably use properties of PCI devices for quirks,
etc.
- For the legacy drivers, add CPU devices via an identify routine in the
  CPU driver itself rather than in the legacy driver's attach routine.
- Add CPU devices after Host-PCI bridges in the acpi bus driver.
- Change the ichss(4) driver to use pci_find_bsf() to locate the ICH and
  check its device ID rather than having a bogus PCI attachment that only
  checked for the ID in probe and always failed.  As a side effect, you
  can now kldload ichss after boot.
- Fix the ichss(4) driver to use the correct device_t for the ICH (and not
  for ichss0) when doing PCI config space operations to enable SpeedStep.

Revision 3300 - Directory Listing - [select for diffs]
Modified Fri Mar 5 03:45:57 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3299
$MidnightBSD$

Revision 3299 - Directory Listing - [select for diffs]
Modified Fri Mar 5 03:40:43 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3298
Report temperature in Kelvin to match acpi thermal and amdtemp

Revision 3298 - Directory Listing - [select for diffs]
Modified Fri Mar 5 03:35:17 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3297
Disable the check for errata AE18.  On MacBooks (1,1 version) there's
no problem with coretemp and C3 state.

Revision 3297 - Directory Listing - [select for diffs]
Modified Thu Mar 4 03:04:53 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3296
connect mport to the build.

Revision 3296 - Directory Listing - [select for diffs]
Modified Thu Mar 4 03:03:55 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3295
add license.

Revision 3295 - Directory Listing - [select for diffs]
Modified Thu Mar 4 03:02:32 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3294
This version can now install and delete to some degree.

Delete only needs the pkgname.. for instance
mport delete p7zip

install doesn't do remote yet, and it must already have a package ready in /usr/mports/Packages/<arch>/All

You must include the EXACT version number like
mport install p7zip-9.04

This will get smarter and more useful in time.

delete and list commands are useful now.

Revision 3294 - Directory Listing - [select for diffs]
Modified Thu Mar 4 02:38:01 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3293
more position fixes.

Revision 3293 - Directory Listing - [select for diffs]
Modified Thu Mar 4 02:03:08 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3292
Fix segfault because I can't count.

Revision 3292 - Directory Listing - [select for diffs]
Modified Thu Mar 4 01:51:21 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3291
Now there are three outputs.  The default shows you versions, -q does not and -v shows versions as well as comments similar to pkg_info's default output.  I chose to use a tab character to separate comments from versions.

Revision 3291 - Directory Listing - [select for diffs]
Modified Thu Mar 4 01:12:27 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3290
on second thought, let's make the output a little more like pkg_info

Revision 3290 - Directory Listing - [select for diffs]
Modified Thu Mar 4 01:09:58 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3289
list all currently installed mports.

Revision 3289 - Directory Listing - [select for diffs]
Modified Thu Mar 4 01:02:02 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3288
On second thought, let's try to sort the output.

Revision 3288 - Directory Listing - [select for diffs]
Modified Thu Mar 4 00:58:52 2010 UTC (14 years ago) by laffer1
Original Path: trunk
Diff to previous 3287
Add a new list method so we can fetch all installed ports!

Revision 3287 - Directory Listing - [select for diffs]
Modified Wed Feb 10 01:33:40 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3286
Fix stats printing of the amount of memory currently consumed by huge
allocations. [1]

Fix calculation of the number of arenas when 'n' is specified via
MALLOC_OPTIONS.

Clean up various style inconsistencies.

Obtained from:	[1] NetBSD, FreeBSD

Revision 3286 - Directory Listing - [select for diffs]
Modified Wed Feb 10 01:10:06 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3285
This is more correct and fixes a bug in some locales

Revision 3285 - Directory Listing - [select for diffs]
Modified Tue Feb 9 01:41:45 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3284
Start work on the mport wrapper program.  This needs a lot of work yet and is not connected to the build intentionally.

Revision 3284 - Directory Listing - [select for diffs]
Modified Sat Feb 6 23:12:07 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3283
Document new chipset support and mention we don't support NCQ

Revision 3283 - Directory Listing - [select for diffs]
Modified Sat Feb 6 23:10:58 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3282
Update re(4) and rl(4) manuals to cover new chipsets.

Revision 3282 - Directory Listing - [select for diffs]
Modified Sat Feb 6 23:08:34 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3281
Remove pc98 support

Revision 3281 - Directory Listing - [select for diffs]
Modified Sat Feb 6 23:08:06 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3280
add atausb

Revision 3280 - Directory Listing - [select for diffs]
Modified Sat Feb 6 23:00:15 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3279
Add constants required by the ata(4) import.

Revision 3279 - Directory Listing - [select for diffs]
Modified Sat Feb 6 22:59:54 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3278
Sync with freebsd 7-stable

Revision 3278 - Directory Listing - [select for diffs]
Modified Sat Feb 6 15:40:08 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3277
document re(4) and rl(4) updates.

document gcc fix on amd64.

Revision 3277 - Directory Listing - [select for diffs]
Modified Sat Feb 6 06:49:38 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3276
Sync re(4) and rl(4) with FreeBSD 7-Stable from a few months ago.

The big difference here is that wake on lan support has been disabled since we don't support it.

re(4) has been tested on a pciE nic, testing pci will happen shortly and we need more testing on other parts including rl(4)s.

This adds several newer cards, plus a few old ones we missed.

Revision 3276 - Directory Listing - [select for diffs]
Modified Sat Feb 6 06:25:31 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3275
Temporarily remove the pc file when building lib32.  This should unbreak the world on amd64.

Revision 3275 - Directory Listing - [select for diffs]
Modified Sat Feb 6 05:12:46 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3274
Another kludge.  This time, comment out reloading freebsd.h.  This overloads what we're trying to accomplish.  After this change, a strings on the gcc binary shows the right output for -m32.

Revision 3274 - Directory Listing - [select for diffs]
Modified Sat Feb 6 04:46:24 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3273
Attempt a kludge around the lib32 problem which stems from gcc passing incorrect parameters to ld.

Revision 3273 - Directory Listing - [select for diffs]
Modified Sat Feb 6 04:14:08 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3272
Ugh this is one problem we're having.

Revision 3272 - Directory Listing - [select for diffs]
Modified Fri Feb 5 00:58:03 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3271
fix sftp on amd64.

Revision 3271 - Directory Listing - [select for diffs]
Modified Fri Feb 5 00:39:58 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3270
fix globbing

Revision 3270 - Directory Listing - [select for diffs]
Modified Sat Jan 30 16:39:08 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3269
Fix a minor bug where some items are ignored

Revision 3269 - Directory Listing - [select for diffs]
Modified Sat Jan 30 16:35:50 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3268
silence errors with missing fstab

Revision 3268 - Directory Listing - [select for diffs]
Modified Sat Jan 30 16:34:13 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3267
Rewrite to consume significantly less memory, by using find -s instead of
  find | sort.  As a bonus, this simplifies the logic considerably.  Also
  remove the bogus "overruning the args to ls" comment and the corresponding
  "-n 20" argument to xargs; the whole point with xargs is precisely that it
  knows how large the argument list can safely get.

  Note that the first run of the updated script may hypotheticall produce
  false positives due to differences between find's and sort's sorting
  algorithm.  I haven't seen this during testing, but others might.

Obtained from: FreeBSD

Revision 3267 - Directory Listing - [select for diffs]
Modified Sat Jan 30 16:22:48 2010 UTC (14 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3266
add missing ;

Revision 3266 - Directory Listing - [select for diffs]
Modified Sat Jan 23 13:56:13 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3265
Document the pthread_timedjoin_np function.

Revision 3265 - Directory Listing - [select for diffs]
Modified Sun Jan 17 14:45:04 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3264
ansify

Revision 3264 - Directory Listing - [select for diffs]
Modified Sun Jan 17 14:42:44 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3263
Improve powerd accuracy on SMP based systems.  We're now using summary load instead of average load.

powerd is independant from number and size of frequency levels now.

Add new hiadaptive load for ac powered systems which rises freq twice as fast and drops it on 1/8 per time interval.

Default polling was changed from 1/2 to 1/4 of a second.

Based upon FreeBSD 7.2 patches to powerd.

Revision 3263 - Directory Listing - [select for diffs]
Modified Sat Jan 16 23:16:55 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3262
$MidnightBSD$

Revision 3262 - Directory Listing - [select for diffs]
Modified Sat Jan 16 23:10:07 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3261
update comment

Revision 3261 - Directory Listing - [select for diffs]
Modified Sat Jan 16 23:09:26 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3260
update google url

Revision 3260 - Directory Listing - [select for diffs]
Modified Sat Jan 16 23:07:04 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3259
Update rc.d script and rc.conf defaults for BIND 9.6.1-P2.  Add the auto forwarders ability

Revision 3259 - Directory Listing - [select for diffs]
Modified Sat Jan 16 22:54:25 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3258
Update for revised directions to install BIND 9

Revision 3258 - Directory Listing - [select for diffs]
Modified Sat Jan 16 18:17:31 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3257
Add unzip front end for libarchive

Revision 3257 - Directory Listing - [select for diffs]
Modified Sat Jan 16 17:42:06 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3256
BIND 9.6.1-P2, FreeBSD version of ash import

Revision 3256 - Directory Listing - [select for diffs]
Modified Sat Jan 16 17:40:19 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3255
BIND 9.6.1-P2

Revision 3255 - Directory Listing - [select for diffs]
Modified Sat Jan 16 17:38:41 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3254
synchronize with FreeBSD 8-Stable.  We really need to get mksh as default shell in all cases.  I hate maintaining this many shells.

Revision 3254 - Directory Listing - [select for diffs]
Modified Sat Jan 16 17:09:56 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3253
BIND 9.6.1-P2

Revision 3253 - Directory Listing - [select for diffs]
Modified Sat Jan 16 17:00:07 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3252
BIND 9.6.1-P2

Revision 3252 - Directory Listing - [select for diffs]
Modified Sat Jan 16 16:57:06 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3251
Bind 9.6.1-P2

Revision 3251 - Directory Listing - [select for diffs]
Modified Sat Jan 16 16:53:28 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3250
Add BIND_IDN support.

Revision 3250 - Directory Listing - [select for diffs]
Modified Sat Jan 16 16:44:11 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3249
Bind 9.6.1-P2

Revision 3249 - Directory Listing - [select for diffs]
Modified Sat Jan 16 16:38:06 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3248
Add new bind 9.6 options.

Revision 3248 - Directory Listing - [select for diffs]
Modified Sat Jan 16 16:14:30 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3247
Remove bind9 directory from the tree.  We're going to use bind96 now to indicate version easier.  This style (from DragonFly) makes more sense.  Besides, I really botched the last import.

Since we never had a real ISC vendor branch (only a FreeBSD branch) this was always a merge conflict mess anyway.

Revision 3247 - Directory Listing - [select for diffs]
Modified Sat Jan 16 16:10:58 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3245
Add midnightbsd upgrade guide.

Revision 3245 - Directory Listing - [select for diffs]
Modified Sat Jan 16 16:06:21 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3243
This commit was generated by cvs2svn to compensate for changes in r3244,
which included commits to RCS files with non-trunk default branches.
Revision 3243 - Directory Listing - [select for diffs]
Modified Sat Jan 16 16:03:11 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3240
This commit was generated by cvs2svn to compensate for changes in r3242,
which included commits to RCS files with non-trunk default branches.
Revision 3240 - Directory Listing - [select for diffs]
Modified Sun Jan 10 22:14:40 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3239
Bump to 3011 to indicate presence of POSIX SEMAPHORES, kqueue changes and libc MNBSD namespace.  These are required for libdispatch.

Revision 3239 - Directory Listing - [select for diffs]
Modified Sun Jan 10 21:55:09 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3238
Enable options         P1003_1B_SEMAPHORES     # POSIX-style semaphores

This option is required by many modern applications including Firefox 3.5.  We also need this to support libdispatch!

Enable on all three architectures.

Revision 3238 - Directory Listing - [select for diffs]
Modified Sun Jan 10 20:31:08 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3237
Sendmail 8.14.4

Revision 3237 - Directory Listing - [select for diffs]
Modified Sun Jan 10 20:17:24 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3235
Update import example to match last version imported.

Revision 3235 - Directory Listing - [select for diffs]
Modified Sun Jan 10 20:14:37 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3233
This commit was generated by cvs2svn to compensate for changes in r3234,
which included commits to RCS files with non-trunk default branches.
Revision 3233 - Directory Listing - [select for diffs]
Modified Sun Jan 10 20:08:51 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3232
Document kqueue and posix_spawn additions.

Revision 3232 - Directory Listing - [select for diffs]
Modified Sun Jan 10 19:31:14 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3231
style(9) fixes.

Revision 3231 - Directory Listing - [select for diffs]
Modified Sun Jan 10 19:22:39 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3230
style(9) fixes.

Revision 3230 - Directory Listing - [select for diffs]
Modified Sun Jan 10 18:40:55 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3229
Document the new EV_DISPATCH and EV_RECEIPT.

Revision 3229 - Directory Listing - [select for diffs]
Modified Sun Jan 10 18:35:28 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3228
Wow, I'm forgetful today.  Add the actual spawn.h file for posix_spawn(3).

Revision 3228 - Directory Listing - [select for diffs]
Modified Sun Jan 10 18:34:47 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3227
Add spawn.h for posix_spawn(3) interface.

Add new kqueue primitives required to support GCD, such as EVFILT_USER and EV_TRIGGER. (libdispatch)

Revision 3227 - Directory Listing - [select for diffs]
Modified Sun Jan 10 18:29:51 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3226
Oops... forgot the implementation

Revision 3226 - Directory Listing - [select for diffs]
Modified Sun Jan 10 18:29:20 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3225
Create a new MidnightBSD symbol namespace.  This will include additions and extensions not found in the legacy FBSD_1.0 space. Unless we happen to add symbols for compatibility with newer freebsd 7.x versions, this old FBSD stuff should not be used.  I have not created a private symbol yet.

Add posix spawn related functions to libc.  posix_spawn(3) and friends can replace fork and exec in some situations and have been in the specification since 1999.  Many operating systems do not yet implement them as they do not provide any benefit in terms of performance when systems use MMU.  glibc implements them as well as FreeBSD 8, DragonFly current, Mac OS X Snow Leopard. It's time.

We've used the FreeBSD 8 versions with little change here. This is one of the many requirements for libdispatch.  (mostly for test suite apps)

Revision 3225 - Directory Listing - [select for diffs]
Modified Thu Jan 7 03:13:24 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3224
zfs and bind security updates

Revision 3224 - Directory Listing - [select for diffs]
Modified Thu Jan 7 03:01:47 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3223
fix comment.

Fix initializer.

Revision 3223 - Directory Listing - [select for diffs]
Modified Thu Jan 7 00:44:18 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3222
Bump for security advisories on bind and zfs

Revision 3222 - Directory Listing - [select for diffs]
Modified Thu Jan 7 00:37:12 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3221
If a client requests DNSSEC records with the Checking Disabled (CD) flag
set, BIND may cache the unvalidated responses.  These responses may later
be returned to another client that has not set the CD flag.

based on freebsd SA-10:01

Note this patch is slightly different and may need more work.  System bind should be updated as soon as possible.

Revision 3221 - Directory Listing - [select for diffs]
Modified Thu Jan 7 00:32:39 2010 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3220
ZFS is a file-system originally developed by Sun Microsystems.

The ZFS Intent Log ("ZIL") is a mechanism that gathers together in memory
transactions of writes, and is flushed onto disk when synchronous
semantics is necessary.  In the event of crash or power failure, the
log is examined and the uncommitted transaction would be replayed to
maintain the synchronous semantics.

When replaying setattr transaction, the replay code would set the
attributes with certain insecure defaults, when the logged
transaction did not touch these attributes.

A system crash or power fail would leave some file with mode set
to 07777.  This could leak sensitive information or cause privilege
escalation.

Based on FreeBSD security advisory SA-10:03.zfs (freebsd 7.x)

Revision 3220 - Directory Listing - [select for diffs]
Modified Thu Dec 31 18:09:11 2009 UTC (14 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 3219
Happy new year!

Revision 3219 - Directory Listing - [select for diffs]
Modified Tue Dec 29 18:58:48 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3218
In this case, it's safe to use strcpy.  Avoid the extra strlen call

Revision 3218 - Directory Listing - [select for diffs]
Modified Tue Dec 29 02:39:02 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3217
Mention amdtemp(4)

Revision 3217 - Directory Listing - [select for diffs]
Modified Mon Dec 28 22:39:54 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3216
Only install amdtemp on i386/amd64

Revision 3216 - Directory Listing - [select for diffs]
Modified Mon Dec 28 22:38:09 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3215
only install amdtemp for i386/amd64

Revision 3215 - Directory Listing - [select for diffs]
Modified Mon Dec 28 19:40:47 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3214
Add amdtemp, the amd thermal sensor for phenoms, etc.

Revision 3214 - Directory Listing - [select for diffs]
Modified Mon Dec 28 19:38:40 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3213
amdtemp.4

Revision 3213 - Directory Listing - [select for diffs]
Modified Mon Dec 28 17:04:35 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3212
Document amd smb and power management interfaces.

Revision 3212 - Directory Listing - [select for diffs]
Modified Mon Dec 14 22:44:02 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3211
fix a null pointer dereference

Revision 3211 - Directory Listing - [select for diffs]
Modified Mon Dec 14 01:21:45 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3210
fix for cve 2009 3720.  This version is so old it probably has other issues.

Revision 3210 - Directory Listing - [select for diffs]
Modified Mon Dec 14 01:01:14 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3209
tag

Revision 3209 - Directory Listing - [select for diffs]
Modified Mon Dec 14 01:00:47 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3208
Termcap update:

Update termcap entries for xterm.  This fixes problems with Terminal.app (which should be using TERM=nsterm).

Add vt100 friendly passthrough printing.

Add terminal definition for Wyse 120.

Add definition for rxvt-unicode.  This fixes problems with vi and this terminal entry via ssh.

cons2517 definition fixed.

screen and linux console fixed too.

Revision 3208 - Directory Listing - [select for diffs]
Modified Sun Dec 13 01:51:34 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3207
Add a manual for fdclone(9)

Revision 3207 - Directory Listing - [select for diffs]
Modified Sun Dec 13 01:09:44 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3206
Add the fdclone KPI.  fdclone was originally developed for FreeBSD7-CURRENT by Kostik Belousov and Peter Holm.

This was developed to allow drivers to clone on open(2).  The cloned cdev is
not accessible for lookup through devfs and is destroyed automatically.

The implementation is based on version 9 of Kostik's patch.  I've also included
a sample program in share/examples/kld/fdclone on use.

$MidnightBSD$ tagged in share/examples/kld

Revision 3206 - Directory Listing - [select for diffs]
Modified Sat Dec 5 15:33:04 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3205
Bump midnightbsd version for OpenSSL security update.

Revision 3205 - Directory Listing - [select for diffs]
Modified Sat Dec 5 15:32:24 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3204
Mention OpenSSL change.

Revision 3204 - Directory Listing - [select for diffs]
Modified Sat Dec 5 15:29:50 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3203
The SSL version 3 and TLS protocols support session renegotiation without
cryptographically tying the new session parameters to the old parameters.

Disable renegotiation of session parameters.  This can break some software
packages, but it's rarely used.

Revision 3203 - Directory Listing - [select for diffs]
Modified Sat Dec 5 15:11:38 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3202
give a hint on regen

Revision 3202 - Directory Listing - [select for diffs]
Modified Sat Dec 5 15:10:28 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3201
tg told me about this the other day and i know i'll forget

Revision 3201 - Directory Listing - [select for diffs]
Modified Tue Dec 1 03:18:18 2009 UTC (14 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 3200
Temporary fix for a local root exploit.

Revision 3200 - Directory Listing - [select for diffs]
Modified Sun Nov 29 19:07:24 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3199
How about we type things correctly

Revision 3199 - Directory Listing - [select for diffs]
Modified Sat Nov 28 22:44:36 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3198
Import OpenBSD's sysctl sensors framework.  This is based on work by Constantine A. Murenin for the 2007 Google summer of code for FreeBSD.

Includes:
sample config file for sensord
rc scripts
documentation fixes and updates
sys/kern/kern_sensors.c
sys/sensors.h

This is compatible with OpenBSD 4.1 and 4.2 in terms of the userland bits.

Revision 3198 - Directory Listing - [select for diffs]
Modified Fri Nov 27 23:53:29 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3197
alrightythen.. add it here too

Revision 3197 - Directory Listing - [select for diffs]
Modified Fri Nov 27 22:57:14 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3196
Fix build with openssh

Revision 3196 - Directory Listing - [select for diffs]
Modified Fri Nov 27 20:51:25 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3195
Add the pthread_condattr_init and pthread_condattr_destroy symbols to libc.  This will be required for future versions of dbus to function properly on MidnightBSD.

Based on a FreeBSD patch by Joe Marcus Clarke.

Revision 3195 - Directory Listing - [select for diffs]
Modified Thu Nov 26 22:43:58 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3194
tag

Revision 3194 - Directory Listing - [select for diffs]
Modified Thu Nov 26 18:25:29 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3193
OpenNTPD 4.4

Revision 3193 - Directory Listing - [select for diffs]
Modified Thu Nov 26 18:23:00 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3192
Shoudln't have dropped these.

Revision 3192 - Directory Listing - [select for diffs]
Modified Thu Nov 26 18:19:25 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3191
we don't need this

Revision 3191 - Directory Listing - [select for diffs]
Modified Thu Nov 26 18:18:55 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3190
Update for 4.4

Revision 3190 - Directory Listing - [select for diffs]
Modified Thu Nov 26 18:11:02 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3188
Add non openbsd portability fixes.

Revision 3188 - Directory Listing - [select for diffs]
Modified Thu Nov 26 18:00:44 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3186
This commit was generated by cvs2svn to compensate for changes in r3187,
which included commits to RCS files with non-trunk default branches.
Revision 3186 - Directory Listing - [select for diffs]
Modified Thu Nov 26 17:00:03 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3185
Add upgrade directions

Revision 3185 - Directory Listing - [select for diffs]
Modified Thu Nov 26 16:51:42 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3184
Update for openssh and mksh

Revision 3184 - Directory Listing - [select for diffs]
Modified Thu Nov 26 16:50:28 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3183
mksh and openssh updates

Revision 3183 - Directory Listing - [select for diffs]
Modified Thu Nov 26 16:48:49 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3182
Get sshd working.

Revision 3182 - Directory Listing - [select for diffs]
Modified Thu Nov 26 16:45:07 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3181
Update symbols.

Revision 3181 - Directory Listing - [select for diffs]
Modified Thu Nov 26 16:44:41 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3180
Add fixes for 5.3p1

Revision 3180 - Directory Listing - [select for diffs]
Modified Thu Nov 26 16:41:55 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3179
proper fix

Revision 3179 - Directory Listing - [select for diffs]
Modified Thu Nov 26 16:40:51 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3178
fix build with 5.3p1

Revision 3178 - Directory Listing - [select for diffs]
Modified Thu Nov 26 16:35:37 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3177
fix build with 5.3p1

Revision 3177 - Directory Listing - [select for diffs]
Modified Thu Nov 26 16:13:47 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3176
Regenerate for 5.3p1

Revision 3176 - Directory Listing - [select for diffs]
Modified Thu Nov 26 16:07:27 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3174
resolve merge conflicts

Revision 3174 - Directory Listing - [select for diffs]
Modified Thu Nov 26 16:04:47 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3172
This commit was generated by cvs2svn to compensate for changes in r3173,
which included commits to RCS files with non-trunk default branches.
Revision 3172 - Directory Listing - [select for diffs]
Modified Thu Nov 26 15:44:25 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3170
update version numbers to help us determine the current version next time we do this.

Revision 3170 - Directory Listing - [select for diffs]
Modified Thu Nov 26 15:43:31 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3168
This commit was generated by cvs2svn to compensate for changes in r3169,
which included commits to RCS files with non-trunk default branches.
Revision 3168 - Directory Listing - [select for diffs]
Modified Thu Nov 26 15:22:10 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3167
more cleanup

Revision 3167 - Directory Listing - [select for diffs]
Modified Thu Nov 26 15:18:04 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3166
remove some architectures we don't support...

Revision 3166 - Directory Listing - [select for diffs]
Modified Thu Nov 26 14:30:47 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3165
remove ia64 + powerpc

Revision 3165 - Directory Listing - [select for diffs]
Modified Thu Nov 26 14:30:10 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3164
we don't support the itanic

Revision 3164 - Directory Listing - [select for diffs]
Modified Wed Nov 25 03:42:40 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3163
Mention recent updates.

Revision 3163 - Directory Listing - [select for diffs]
Modified Wed Nov 25 03:39:39 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3162
update to tzdata2009s

Revision 3162 - Directory Listing - [select for diffs]
Modified Wed Nov 25 03:35:10 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3161
update to 1.15.. sync with dragonfly current

Revision 3161 - Directory Listing - [select for diffs]
Modified Thu Nov 19 15:14:00 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3160
In some cases, pccards plugged in create "random" interrupts when first plugged into a system.  This check avoids panicing on such events.

Revision 3160 - Directory Listing - [select for diffs]
Modified Thu Nov 19 14:08:16 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3159
Fix cpu identification for PODP5V83.

Obtained From: FreeBSD/Takahashi Yoshihiro

Revision 3159 - Directory Listing - [select for diffs]
Modified Thu Nov 19 02:46:42 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3158
Remove erronous merge.

Revision 3158 - Directory Listing - [select for diffs]
Modified Thu Nov 19 01:34:17 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3157
Experimental patch to get the nic to stop re-initializing so much on boot.  This is caused when DHCP occurs for instance and causes problems with sendmail and other services on startup.

This requires extensive testing on re hardware

Revision 3157 - Directory Listing - [select for diffs]
Modified Tue Nov 17 01:47:51 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3156
Fix a silly bug reported by bsdgurl in IRC.

Revision 3156 - Directory Listing - [select for diffs]
Modified Sat Nov 7 01:41:53 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3155
soreceive() will send an ACK right away if data was drained from a TCP socket that advertized a 0 sized window.  However, the receive window had to be exactly zero.  Change the code to check the raw window value instead.

Revision 3155 - Directory Listing - [select for diffs]
Modified Sat Oct 31 21:42:36 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3154
Switch over to uint32_t, the preferred type.

Revision 3154 - Directory Listing - [select for diffs]
Modified Sat Oct 31 21:35:16 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3153
This shouldn't have been committed. We keep psd documents in src/share/doc/

Revision 3153 - Directory Listing - [select for diffs]
Modified Sat Oct 31 21:33:08 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3152
*** empty log message ***

Revision 3152 - Directory Listing - [select for diffs]
Modified Sat Oct 31 21:32:03 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3151
Update m4 utility; sync with OpenBSD.  Several little improvements have been made including using the ohash (in our libc) functions and some modern extensions from GNU m4.

Revision 3151 - Directory Listing - [select for diffs]
Modified Sat Oct 31 20:57:27 2009 UTC (14 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 3150
include openbsd ohash header since it's already in our libc

Revision 3150 - Directory Listing - [select for diffs]
Modified Sat Oct 24 16:13:04 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3149
remove more itanic

Revision 3149 - Directory Listing - [select for diffs]
Modified Sat Oct 24 16:06:22 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3148
remove architectures we don't care about.

Revision 3148 - Directory Listing - [select for diffs]
Modified Sat Oct 24 16:03:34 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3147
remove ppc support

Revision 3147 - Directory Listing - [select for diffs]
Modified Sat Oct 24 15:55:41 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3146
remove pc98 support.

Revision 3146 - Directory Listing - [select for diffs]
Modified Sat Oct 24 15:17:09 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3145
let's make these static

Revision 3145 - Directory Listing - [select for diffs]
Modified Sat Oct 24 15:15:57 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3144
use setenv

Revision 3144 - Directory Listing - [select for diffs]
Modified Sat Oct 24 15:14:40 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3143
Fix the END of menu definitions.

Revision 3143 - Directory Listing - [select for diffs]
Modified Sat Oct 24 14:46:49 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3142
modernize the size of partitions in the manual.

Revision 3142 - Directory Listing - [select for diffs]
Modified Sat Oct 24 14:30:28 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3141
use size_t for ext

Revision 3141 - Directory Listing - [select for diffs]
Modified Sat Oct 24 14:29:29 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3140
we don't use mknod anymore

Revision 3140 - Directory Listing - [select for diffs]
Modified Sat Oct 24 14:27:17 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3139
add a menu to pick kernel distributions within the install process.

Revision 3139 - Directory Listing - [select for diffs]
Modified Sat Oct 24 05:19:58 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3138
add some helpful error messages.

Revision 3138 - Directory Listing - [select for diffs]
Modified Sat Oct 24 05:13:57 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3137
Modify sysinstall to detect SMP systems and choose an alternate kernel on i386/amd64.  This will allow us to ship both a UNI and SMP kernel instead of just a SMP kernel.

Revision 3137 - Directory Listing - [select for diffs]
Modified Sat Oct 24 04:45:18 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3136
remove old documentation for architectures we never supported.  Add some code to enable smp vs non smp kernels with the installer.  note sysinstall changes have not been finished yet.  update fixit.profile to include geom in the path

Revision 3136 - Directory Listing - [select for diffs]
Modified Sat Oct 24 04:42:46 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3135
sync up with i386 and amd64.  This could explain the bad install discs on the last release

Revision 3135 - Directory Listing - [select for diffs]
Modified Sat Oct 24 04:41:27 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3134
Add link for cpio to pax and add tar.

Revision 3134 - Directory Listing - [select for diffs]
Modified Sat Oct 24 04:39:20 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3133
include pax and add links for fsck

Revision 3133 - Directory Listing - [select for diffs]
Modified Sat Oct 24 04:36:21 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3132
update scripts for new src dist file layout and upcoming kernel installation changes

Revision 3132 - Directory Listing - [select for diffs]
Modified Sat Oct 24 04:24:37 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3131
add -G to mkisoimages to work easier within chroot.  tweak app availablility in boot crunch.  we don't need usbd anymore

Revision 3131 - Directory Listing - [select for diffs]
Modified Sat Oct 24 03:36:34 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3130
remove ia64

Revision 3130 - Directory Listing - [select for diffs]
Modified Sat Oct 17 22:16:35 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3129
Add -A flag to adjust existing time stamps.
Print name by which program was started in usage() message.

Obtained from: FreeBSD

Revision 3129 - Directory Listing - [select for diffs]
Modified Sun Oct 11 15:12:14 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3128
Tell amd64 users how to get a working system for now.

Revision 3128 - Directory Listing - [select for diffs]
Modified Sun Oct 11 02:54:39 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3127
this should stop one of the two attacks on devfs found in freebsd

Revision 3127 - Directory Listing - [select for diffs]
Modified Sat Oct 10 17:19:59 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3126
back out the unicode friendly patch for now.  it's not 64bit clean and i don't have time to dig through it

Revision 3126 - Directory Listing - [select for diffs]
Modified Fri Oct 9 02:43:50 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3125
sysctl is helpful

Revision 3125 - Directory Listing - [select for diffs]
Modified Thu Oct 8 01:37:58 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3124
archite hasn't worked on this as security officer for awhile.. ctriv probably wants control over mport tools.

Revision 3124 - Directory Listing - [select for diffs]
Modified Thu Oct 8 01:34:25 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3123
we deleted tcpslice... don't forget it here.

Revision 3123 - Directory Listing - [select for diffs]
Modified Thu Oct 8 01:33:06 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3122
alright document nrelease too

Revision 3122 - Directory Listing - [select for diffs]
Modified Thu Oct 8 01:30:06 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3121
explain what CDDL is for

Revision 3121 - Directory Listing - [select for diffs]
Modified Thu Oct 8 01:27:57 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3120
Bump version number so we can track all the userland (and timezone) changes in ports, etc.

Revision 3120 - Directory Listing - [select for diffs]
Modified Thu Oct 8 01:27:04 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3119
document timezone update yesterday and some other things we've been up to

Revision 3119 - Directory Listing - [select for diffs]
Modified Thu Oct 8 01:19:19 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3118
document bugs

Revision 3118 - Directory Listing - [select for diffs]
Modified Thu Oct 8 01:18:47 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3117
conditionalize ipv6

Revision 3117 - Directory Listing - [select for diffs]
Modified Thu Oct 8 01:18:06 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3116
fix the man page

Revision 3116 - Directory Listing - [select for diffs]
Modified Thu Oct 8 01:16:29 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3115
why do we have two syslog.h lines?

Revision 3115 - Directory Listing - [select for diffs]
Modified Thu Oct 8 01:15:08 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3114
remove tcpslice

Revision 3114 - Directory Listing - [select for diffs]
Modified Wed Oct 7 04:38:32 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3113
sync with freebsd

Revision 3113 - Directory Listing - [select for diffs]
Modified Wed Oct 7 04:37:44 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3112
use new world order

Revision 3112 - Directory Listing - [select for diffs]
Modified Wed Oct 7 04:33:09 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3111
new world order

Revision 3111 - Directory Listing - [select for diffs]
Modified Wed Oct 7 04:27:10 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3110
sync with freebsd

Revision 3110 - Directory Listing - [select for diffs]
Modified Wed Oct 7 04:23:37 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3109
add support for specifying port binding

Revision 3109 - Directory Listing - [select for diffs]
Modified Wed Oct 7 04:22:24 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3108
merge several improvements including setting the proc title, singal handling, ...

Revision 3108 - Directory Listing - [select for diffs]
Modified Wed Oct 7 04:21:06 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3107
sync with freebsd

Revision 3107 - Directory Listing - [select for diffs]
Modified Wed Oct 7 04:18:45 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3106
sync with freebsd

Revision 3106 - Directory Listing - [select for diffs]
Modified Wed Oct 7 04:07:18 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3105
suppress certain behaviors from tar such as removing leading / and handling ..

Revision 3105 - Directory Listing - [select for diffs]
Modified Wed Oct 7 04:04:07 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3104
switch to new world order

Revision 3104 - Directory Listing - [select for diffs]
Modified Wed Oct 7 04:00:17 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3103
sync with freebsd

Revision 3103 - Directory Listing - [select for diffs]
Modified Wed Oct 7 03:49:29 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3102
sync with freebsd

Revision 3102 - Directory Listing - [select for diffs]
Modified Wed Oct 7 03:43:23 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3101
simple changes.

Revision 3101 - Directory Listing - [select for diffs]
Modified Wed Oct 7 03:38:13 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3100
use new style tests

Revision 3100 - Directory Listing - [select for diffs]
Modified Wed Oct 7 03:36:56 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3099
sync with freebsd

Revision 3099 - Directory Listing - [select for diffs]
Modified Wed Oct 7 03:34:07 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3098
sync with freebsd, update man page style

Revision 3098 - Directory Listing - [select for diffs]
Modified Wed Oct 7 03:33:10 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3097
sync with freebsd, add extended io stats

Revision 3097 - Directory Listing - [select for diffs]
Modified Wed Oct 7 03:27:24 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3096
sync with freebsd

Revision 3096 - Directory Listing - [select for diffs]
Modified Wed Oct 7 03:26:57 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3095
sync with freebsd.

Revision 3095 - Directory Listing - [select for diffs]
Modified Wed Oct 7 02:56:03 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3094
sync with freebsd

Revision 3094 - Directory Listing - [select for diffs]
Modified Wed Oct 7 02:55:29 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3093
sync with freebsd.  Modernize

Revision 3093 - Directory Listing - [select for diffs]
Modified Wed Oct 7 02:47:10 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3092
sync with freebsd

Revision 3092 - Directory Listing - [select for diffs]
Modified Wed Oct 7 02:42:43 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3091
add cxgbtool for managing 10GB cards using cxgb

Revision 3091 - Directory Listing - [select for diffs]
Modified Wed Oct 7 02:34:05 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3090
sync with freebsd

Revision 3090 - Directory Listing - [select for diffs]
Modified Wed Oct 7 02:32:55 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3089
use MINUSCRON

Revision 3089 - Directory Listing - [select for diffs]
Modified Wed Oct 7 02:28:05 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3088
sync with freebsd

Revision 3088 - Directory Listing - [select for diffs]
Modified Wed Oct 7 02:27:03 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3087
add man page for bthidd

Revision 3087 - Directory Listing - [select for diffs]
Modified Wed Oct 7 02:09:18 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3086
sync with freebsd

Revision 3086 - Directory Listing - [select for diffs]
Modified Wed Oct 7 02:06:07 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3085
improve error message to tell the user what to do

Revision 3085 - Directory Listing - [select for diffs]
Modified Wed Oct 7 01:25:07 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3084
Fix Pakistan and Argentina time zones.  tzdata2009n

Revision 3084 - Directory Listing - [select for diffs]
Modified Wed Oct 7 01:20:00 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3082
The cylinder group tag cg_initediblk needs to match the number of inodes
 actually initialized. In the growfs case for UFS2, no inodes were actually
 being initialized and the number of inodes noted as initialized was the
 number of inodes per group. This created a filesystem that was deemed
 corrupted because the inodes thus added were full of garbage.

Obtained from: FreeBSD, mjacob

Revision 3082 - Directory Listing - [select for diffs]
Modified Wed Oct 7 00:00:41 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3081
6bone decomissioned on 6/6/06.

Obtained from: FreeBSD, dougb

Revision 3081 - Directory Listing - [select for diffs]
Modified Sun Oct 4 20:17:11 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3080
sync with freebsd

Revision 3080 - Directory Listing - [select for diffs]
Modified Sun Oct 4 20:00:27 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3079
sync with freebsd

Revision 3079 - Directory Listing - [select for diffs]
Modified Sun Oct 4 19:33:47 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3078
sync with freebsd

Revision 3078 - Directory Listing - [select for diffs]
Modified Sun Oct 4 19:24:41 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3077
sync with freebsd, dump changes

Revision 3077 - Directory Listing - [select for diffs]
Modified Sun Oct 4 19:22:53 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3076
Catch up

Revision 3076 - Directory Listing - [select for diffs]
Modified Sun Oct 4 19:19:39 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3075
sync with freebsd 7

Revision 3075 - Directory Listing - [select for diffs]
Modified Sun Oct 4 19:17:25 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3074
sync with freebsd

Revision 3074 - Directory Listing - [select for diffs]
Modified Sun Oct 4 19:16:50 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3073
add support for gjournal

Revision 3073 - Directory Listing - [select for diffs]
Modified Sun Oct 4 19:04:34 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3072
Sync with freebsd

Revision 3072 - Directory Listing - [select for diffs]
Modified Sun Oct 4 18:44:43 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3071
sync with freebsd

Revision 3071 - Directory Listing - [select for diffs]
Modified Sun Oct 4 18:37:15 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3070
sync with freebsd

Revision 3070 - Directory Listing - [select for diffs]
Modified Sun Oct 4 18:32:48 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3069
add support for gjournal

Revision 3069 - Directory Listing - [select for diffs]
Modified Sun Oct 4 18:16:46 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3068
sync with freebsd

Revision 3068 - Directory Listing - [select for diffs]
Modified Sun Oct 4 18:12:16 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3067
add some examples

Revision 3067 - Directory Listing - [select for diffs]
Modified Sun Oct 4 16:24:55 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3066
branding

Revision 3066 - Directory Listing - [select for diffs]
Modified Sun Oct 4 16:15:10 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3065
sync with freebsd

Revision 3065 - Directory Listing - [select for diffs]
Modified Sun Oct 4 16:11:28 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3064
remove dead files

Revision 3064 - Directory Listing - [select for diffs]
Modified Sun Oct 4 16:06:27 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3063
add note about fix

Revision 3063 - Directory Listing - [select for diffs]
Modified Sun Oct 4 16:05:16 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3062
remove dead files

Revision 3062 - Directory Listing - [select for diffs]
Modified Sun Oct 4 16:04:05 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3061
sync with freebsd

Revision 3061 - Directory Listing - [select for diffs]
Modified Sun Oct 4 15:48:30 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3060
prune old files

Revision 3060 - Directory Listing - [select for diffs]
Modified Sun Oct 4 15:46:14 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3059
prune

Revision 3059 - Directory Listing - [select for diffs]
Modified Sun Oct 4 15:45:00 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3058
sync with freebsd

Revision 3058 - Directory Listing - [select for diffs]
Modified Sun Oct 4 15:43:37 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3057
remove dead files

Revision 3057 - Directory Listing - [select for diffs]
Modified Sun Oct 4 15:41:25 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3056
catch some of the groff definitinions up with other bsds

Revision 3056 - Directory Listing - [select for diffs]
Modified Sun Oct 4 15:22:44 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3055
Bugfixes

Revision 3055 - Directory Listing - [select for diffs]
Modified Sun Oct 4 15:16:39 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3054
we don't need this either

Revision 3054 - Directory Listing - [select for diffs]
Modified Sun Oct 4 15:14:06 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3053
remove old files

Revision 3053 - Directory Listing - [select for diffs]
Modified Sun Oct 4 15:06:50 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3052
we're going to need to set this to 1 for it to make sense even though our major version number isn't there yet.

Revision 3052 - Directory Listing - [select for diffs]
Modified Sun Oct 4 05:34:58 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3051
calloc is no longer used in calloc.c.. it's now in malloc.c

Revision 3051 - Directory Listing - [select for diffs]
Modified Sun Oct 4 04:53:50 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3050
Remove lukemftpd from base system.

Revision 3050 - Directory Listing - [select for diffs]
Modified Sun Oct 4 04:53:15 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3049
After some consideration, it makes no sense to include two ftp daemons in the base system for a desktop os.  That can be in mports

Revision 3049 - Directory Listing - [select for diffs]
Modified Fri Oct 2 13:24:40 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3047
Don't report error if key was deleted.

Obtained from: FreeBSD
http://www.freebsd.org/cgi/query-pr.cgi?pr=135462

Revision 3047 - Directory Listing - [select for diffs]
Modified Fri Oct 2 13:20:11 2009 UTC (14 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 3046
pthread_mutexattr_settype is failing for many cases due to an incorrect stub in libc.

Obtained from: FreeBSD, Joe Marcus Clarke

Revision 3046 - Directory Listing - [select for diffs]
Modified Sat Sep 19 23:53:43 2009 UTC (14 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3045
back out several previous changes which cause problems on 64bit midnightbsd

Revision 3045 - Directory Listing - [select for diffs]
Modified Sat Sep 19 21:53:58 2009 UTC (14 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3044
This should fix a bug on amd64 building libs.

Revision 3044 - Directory Listing - [select for diffs]
Modified Sat Sep 19 15:02:27 2009 UTC (14 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3043
tzupdate

Revision 3043 - Directory Listing - [select for diffs]
Modified Sat Sep 19 14:49:47 2009 UTC (14 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 3042
Update timezones to tzdata2009m (september 8 2009)

Revision 3042 - Directory Listing - [select for diffs]
Modified Sun Aug 30 06:02:33 2009 UTC (14 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3041
style(9) fix.

Revision 3041 - Directory Listing - [select for diffs]
Modified Sun Aug 30 05:09:19 2009 UTC (14 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3040
Experimental support for Intel G33 and G45 cards. This includes something like say the Intel 4500 series.

Revision 3040 - Directory Listing - [select for diffs]
Modified Sun Aug 30 04:36:57 2009 UTC (14 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3039
fix typo

Revision 3039 - Directory Listing - [select for diffs]
Modified Sat Aug 29 04:44:16 2009 UTC (14 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3038
Fix odd typo.

Revision 3038 - Directory Listing - [select for diffs]
Modified Wed Aug 26 19:11:21 2009 UTC (14 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3037
add support for some newer devices.

Revision 3037 - Directory Listing - [select for diffs]
Modified Sat Aug 15 17:24:15 2009 UTC (14 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 3034
Make the default shell mksh for new user accounts.  This script is usually run by end users and sh is not all that user friendly.

Revision 3034 - Directory Listing - [select for diffs]
Modified Wed Jul 29 15:31:29 2009 UTC (14 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3033
mention the bind issue in updating

Revision 3033 - Directory Listing - [select for diffs]
Modified Wed Jul 29 15:29:23 2009 UTC (14 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3032
Patch for Bind 9 security vulnerability.  a dynmaic update packet can trigger an assertion and cause named to exit

Revision 3032 - Directory Listing - [select for diffs]
Modified Sat Jul 11 12:19:33 2009 UTC (14 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3031
Intel PIII chips report they have a thermal sensor but actually don't.  Work around this problem by testing for them.

Revision 3031 - Directory Listing - [select for diffs]
Modified Sat Jul 11 12:10:53 2009 UTC (14 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3030
add additional intel graphics controllers (965 chipset).

Revision 3030 - Directory Listing - [select for diffs]
Modified Sat Jul 11 11:25:15 2009 UTC (14 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 3029
add pkgconfig file

Revision 3029 - Directory Listing - [select for diffs]
Modified Sat Jun 27 16:36:12 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3028
sync with freebsd

Revision 3028 - Directory Listing - [select for diffs]
Modified Sun Jun 14 21:18:47 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3027
Fix path

Revision 3027 - Directory Listing - [select for diffs]
Modified Sun Jun 14 21:16:34 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3026
add missing header

Revision 3026 - Directory Listing - [select for diffs]
Modified Thu Jun 11 03:50:29 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3021
Fix the illegal instructions with libcrytpo stuff linking to openssl.  (sendmail, dovecot, or anything else...)

This is a "feature" of gcc4 that adds illegal instructions to discourage casting certain ways.  How nice.

Revision 3021 - Directory Listing - [select for diffs]
Modified Wed Jun 10 15:35:50 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3020
Bump version to indicate the presense of new security patches.

This can also be a hint that libmport is connected to the build and netpgp.

Revision 3020 - Directory Listing - [select for diffs]
Modified Wed Jun 10 15:34:13 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3019
The SIOCSIFINFO_IN6 ioctl is missing a necessary permissions check.

Don't let everyone on the planet (with local access) change the properties on the ipv6 interfaces.

Revision 3019 - Directory Listing - [select for diffs]
Modified Wed Jun 10 15:33:05 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3018
Stop unprivileged processes from reading pages of memory belonging to other processes with anonymous pipes.

Revision 3018 - Directory Listing - [select for diffs]
Modified Tue Jun 9 21:27:26 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3017
add sqlite3, libarchive and libfetch to the early prebuilt lib list.  This isn't exactly what we want to do, but it solves the libmport problem for now. (in terms of libmport finding it's libs)

Revision 3017 - Directory Listing - [select for diffs]
Modified Tue Jun 9 17:41:34 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3016
add mport

Revision 3016 - Directory Listing - [select for diffs]
Modified Tue Jun 9 00:48:55 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3015
install the man pages.  We still need to finish includes and pc file

Revision 3015 - Directory Listing - [select for diffs]
Modified Mon Jun 8 19:28:44 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3014
Chnage order libmport is built in since we need sqlite sooner.

Revision 3014 - Directory Listing - [select for diffs]
Modified Mon Jun 8 01:50:50 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3012
Step one of libffi.  This is a partially working environment.  (i386 only for now)

The library compiles but we're not dealing with man pages, installing include files into /usr/include or other architectures.

It is not connected to the build.

Revision 3012 - Directory Listing - [select for diffs]
Modified Mon Jun 8 01:15:53 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3010
This commit was generated by cvs2svn to compensate for changes in r3011,
which included commits to RCS files with non-trunk default branches.
Revision 3010 - Directory Listing - [select for diffs]
Modified Mon Jun 8 01:09:16 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3009
Connect netpgp to the build.

Revision 3009 - Directory Listing - [select for diffs]
Modified Mon Jun 8 01:08:42 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3008
connect libnetpgp to build

Revision 3008 - Directory Listing - [select for diffs]
Modified Mon Jun 8 00:48:52 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3007
libnetpgp

Revision 3007 - Directory Listing - [select for diffs]
Modified Mon Jun 8 00:47:50 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3006
add libnetpgp

Revision 3006 - Directory Listing - [select for diffs]
Modified Sun Jun 7 23:59:51 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3005
Add netpgp makefile. This is intentionally not connected to the build yet as there are a few outstanding issues.  It does compile and run if libnetpgp is installed.  (tested i386 current)

Revision 3005 - Directory Listing - [select for diffs]
Modified Sun Jun 7 23:50:18 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3003
Start of netpgp library from NetBSD current.  This is based on the openpgpsdk, but cleaned up a lot.  We can verify and sign using a gpg compatible lib  but with a bsd license

Revision 3003 - Directory Listing - [select for diffs]
Modified Sun Jun 7 23:24:02 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3002
Vendor import of netpgp 2009.06.07

Revision 3002 - Directory Listing - [select for diffs]
Modified Sat Jun 6 23:44:24 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3001
mention usb changes and removal of pcc with a brief explanation.

Revision 3001 - Directory Listing - [select for diffs]
Modified Sat Jun 6 23:40:38 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 3000
Remove pcc from base system. The idea was sound, but the implementation is just not there yet.  This raises many questions about compiling the system with pcc direclty. This can't happen since it's on a C compiler and we've got several C++ libraries.  This also hurts our Objective-C efforts.  If we go with an alternate compiler, it must be something that supports at least Objective-C or C++. (ideally and)

I still want to try to make the system more pcc friendly, but the system is not ready for such an incomplete compiler.

Revision 3000 - Directory Listing - [select for diffs]
Modified Sat Jun 6 21:52:41 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 2999
MFC: Fix for meta port packages with base bundle.

Revision 2999 - Directory Listing - [select for diffs]
Modified Sat Jun 6 06:37:20 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 2998
part 2 of the NO SYNCRONIZE patch for my usb hdd enclosure.

Revision 2998 - Directory Listing - [select for diffs]
Modified Sat Jun 6 04:34:08 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 2997
Add NO_SYNCHRONIZE_CACHE which fakes a success result for bad IDE bridges since we can't do this in the CAM layer like a traditional SCSI device

Revision 2997 - Directory Listing - [select for diffs]
Modified Sat Jun 6 04:01:35 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 2996
Fix some typos and try again.

Revision 2996 - Directory Listing - [select for diffs]
Modified Sat Jun 6 03:50:38 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 2995
Add a workaround for the CYPRESS USB PATA chipset used for many usb drive enclosures (including the one on my desk).  This fixes the SYNCHRONIZE CACHE errors people get with this device.  I've noticed it under testing with ZFS.

Revision 2995 - Directory Listing - [select for diffs]
Modified Sat Jun 6 03:18:54 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 2994
add ZFS kernel for i386 users who have to play with KVA

Revision 2994 - Directory Listing - [select for diffs]
Modified Fri Jun 5 00:22:17 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 2993
comment out mport_upgrade function as that isn't 100% ready

Revision 2993 - Directory Listing - [select for diffs]
Modified Fri Jun 5 00:09:32 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 2992
*** empty log message ***

Revision 2992 - Directory Listing - [select for diffs]
Modified Fri Jun 5 00:08:10 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 2991
Part 2 of the mport tools update

Revision 2991 - Directory Listing - [select for diffs]
Modified Fri Jun 5 00:02:22 2009 UTC (14 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 2990
Upgrade to latest snap from github.

Revision 2990 - Directory Listing - [select for diffs]
Modified Sun May 31 17:54:03 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2989
connect mport tools

Revision 2989 - Directory Listing - [select for diffs]
Modified Sun May 31 17:51:52 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2988
connect libmport to the build

Revision 2988 - Directory Listing - [select for diffs]
Modified Sat May 30 22:34:03 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2987
we don't do X11R6 anymore

Revision 2987 - Directory Listing - [select for diffs]
Modified Sat May 30 19:05:44 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2986
Things i should have deleted a week ago.

Revision 2986 - Directory Listing - [select for diffs]
Modified Wed May 27 16:43:16 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2985
i4b --

Revision 2985 - Directory Listing - [select for diffs]
Modified Wed May 27 16:42:11 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2984
missed a spot! I4B

Revision 2984 - Directory Listing - [select for diffs]
Modified Wed May 27 06:02:01 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2983
remove isdn4bsd files.

Revision 2983 - Directory Listing - [select for diffs]
Modified Wed May 27 06:01:44 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2982
this really isn't optional

Revision 2982 - Directory Listing - [select for diffs]
Modified Wed May 27 05:59:42 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2981
remove isdn

Revision 2981 - Directory Listing - [select for diffs]
Modified Wed May 27 05:58:43 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2980
remove i4b

Revision 2980 - Directory Listing - [select for diffs]
Modified Wed May 27 05:56:29 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2979
Remove i4b options.

Revision 2979 - Directory Listing - [select for diffs]
Modified Wed May 27 05:52:20 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2978
remove isdn 4 bsd

Revision 2978 - Directory Listing - [select for diffs]
Modified Wed May 27 05:51:20 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2977
Remove isdn (i4b) related work.

Revision 2977 - Directory Listing - [select for diffs]
Modified Wed May 27 05:50:08 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2976
Remove i4b as it has been removed from teh kernel

Revision 2976 - Directory Listing - [select for diffs]
Modified Wed May 27 05:49:07 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2975
remove isdn 4 bsd support as it has been removed from the kernel

Revision 2975 - Directory Listing - [select for diffs]
Modified Tue May 26 23:59:29 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2974
Wow this was foobar

Revision 2974 - Directory Listing - [select for diffs]
Modified Tue May 26 22:59:36 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2973
Enable the gcc 4 cflags

Revision 2973 - Directory Listing - [select for diffs]
Modified Tue May 26 16:22:35 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2972
revert, this was a security fix

Revision 2972 - Directory Listing - [select for diffs]
Modified Tue May 26 16:21:34 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2971
sync yacc

Revision 2971 - Directory Listing - [select for diffs]
Modified Tue May 26 16:20:31 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2970
update man page

Revision 2970 - Directory Listing - [select for diffs]
Modified Tue May 26 16:10:06 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2969
start fixing

Revision 2969 - Directory Listing - [select for diffs]
Modified Tue May 26 05:11:37 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2968
remove dead files

Revision 2968 - Directory Listing - [select for diffs]
Modified Tue May 26 05:04:02 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2967
remove another dead file

Revision 2967 - Directory Listing - [select for diffs]
Modified Tue May 26 05:02:19 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2966
file no longer exists in this version

Revision 2966 - Directory Listing - [select for diffs]
Modified Tue May 26 04:47:03 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2965
hot damn!

Revision 2965 - Directory Listing - [select for diffs]
Modified Tue May 26 04:29:35 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2964
tag

Revision 2964 - Directory Listing - [select for diffs]
Modified Tue May 26 04:27:42 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2963
*** empty log message ***

Revision 2963 - Directory Listing - [select for diffs]
Modified Tue May 26 02:57:52 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2962
cleanup

Revision 2962 - Directory Listing - [select for diffs]
Modified Tue May 26 02:25:21 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2961
remove arm/ppc stuff

Revision 2961 - Directory Listing - [select for diffs]
Modified Tue May 26 02:04:51 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2960
fix tuple

Revision 2960 - Directory Listing - [select for diffs]
Modified Tue May 26 02:01:22 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2959
alright do some version hackery

Revision 2959 - Directory Listing - [select for diffs]
Modified Tue May 26 01:57:19 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2958
*** empty log message ***

Revision 2958 - Directory Listing - [select for diffs]
Modified Tue May 26 01:39:01 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2957
update man page

Revision 2957 - Directory Listing - [select for diffs]
Modified Tue May 26 01:35:40 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2956
sync with freebsd

Revision 2956 - Directory Listing - [select for diffs]
Modified Tue May 26 01:32:24 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2955
Sync with freebsd

Revision 2955 - Directory Listing - [select for diffs]
Modified Tue May 26 01:29:56 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2954
update for mports

Revision 2954 - Directory Listing - [select for diffs]
Modified Tue May 26 01:27:47 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2953
$MidnightBSD$, update

Revision 2953 - Directory Listing - [select for diffs]
Modified Tue May 26 01:23:47 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2952
$MidnightBSD$

Revision 2952 - Directory Listing - [select for diffs]
Modified Tue May 26 01:03:28 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2951
we don't need this

Revision 2951 - Directory Listing - [select for diffs]
Modified Sun May 24 17:02:36 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2950
3004 baby... GCC4

Revision 2950 - Directory Listing - [select for diffs]
Modified Sun May 24 00:48:17 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2949
update man page

Revision 2949 - Directory Listing - [select for diffs]
Modified Sun May 24 00:47:15 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2948
update lorder

Revision 2948 - Directory Listing - [select for diffs]
Modified Sat May 23 19:59:34 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2946
add rough documents based on FREEBSD- counterparts to help us out in the future.

Revision 2946 - Directory Listing - [select for diffs]
Modified Fri May 22 15:55:45 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2944
This commit was generated by cvs2svn to compensate for changes in r2945,
which included commits to RCS files with non-trunk default branches.
Revision 2944 - Directory Listing - [select for diffs]
Modified Fri May 22 15:54:09 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2942
This commit was generated by cvs2svn to compensate for changes in r2943,
which included commits to RCS files with non-trunk default branches.
Revision 2942 - Directory Listing - [select for diffs]
Modified Fri May 22 15:52:15 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2940
This commit was generated by cvs2svn to compensate for changes in r2941,
which included commits to RCS files with non-trunk default branches.
Revision 2940 - Directory Listing - [select for diffs]
Modified Fri May 22 15:47:24 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2938
This commit was generated by cvs2svn to compensate for changes in r2939,
which included commits to RCS files with non-trunk default branches.
Revision 2938 - Directory Listing - [select for diffs]
Modified Fri May 22 15:45:42 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2936
This commit was generated by cvs2svn to compensate for changes in r2937,
which included commits to RCS files with non-trunk default branches.
Revision 2936 - Directory Listing - [select for diffs]
Modified Fri May 22 05:25:09 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2935
tag

Revision 2935 - Directory Listing - [select for diffs]
Modified Fri May 22 05:11:00 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2934
also a rule for fbsd7

Revision 2934 - Directory Listing - [select for diffs]
Modified Fri May 22 05:10:59 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2933
add midnightbsd

Revision 2933 - Directory Listing - [select for diffs]
Modified Fri May 22 05:04:55 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2932
fix version string

Revision 2932 - Directory Listing - [select for diffs]
Modified Fri May 22 02:44:59 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2931
gcc4

Revision 2931 - Directory Listing - [select for diffs]
Modified Fri May 22 02:12:09 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2930
unbreak++

Revision 2930 - Directory Listing - [select for diffs]
Modified Fri May 22 02:06:18 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2929
gcc4

Revision 2929 - Directory Listing - [select for diffs]
Modified Fri May 22 01:06:57 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2927
This commit was generated by cvs2svn to compensate for changes in r2928,
which included commits to RCS files with non-trunk default branches.
Revision 2927 - Directory Listing - [select for diffs]
Modified Fri May 22 01:04:59 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2925
This commit was generated by cvs2svn to compensate for changes in r2926,
which included commits to RCS files with non-trunk default branches.
Revision 2925 - Directory Listing - [select for diffs]
Modified Fri May 22 01:02:14 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2923
This commit was generated by cvs2svn to compensate for changes in r2924,
which included commits to RCS files with non-trunk default branches.
Revision 2923 - Directory Listing - [select for diffs]
Modified Fri May 22 00:54:54 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2922
more gcc 4 chaos

Revision 2922 - Directory Listing - [select for diffs]
Modified Fri May 22 00:27:57 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2921
more chaos

Revision 2921 - Directory Listing - [select for diffs]
Modified Fri May 22 00:27:28 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2917
start gcc4 chaos

Revision 2917 - Directory Listing - [select for diffs]
Modified Thu May 21 00:08:40 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2916
Get rid of more pc98 fluff.  Add a message warning Vista users about our boot manager.  Remove support for tape drives.  This never worked.

Revision 2916 - Directory Listing - [select for diffs]
Modified Wed May 20 23:48:28 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2915
remove pccard.. this is ancient, before our time

Revision 2915 - Directory Listing - [select for diffs]
Modified Wed May 20 23:39:40 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2914
using strdup makes a lot more sense here

Revision 2914 - Directory Listing - [select for diffs]
Modified Wed May 20 23:33:31 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2913
Prompt user for keymap/country selection.  This will adjust the map for different locales, etc.  Also remove configuration options for exim and postfix as we don't have mports for them.

Revision 2913 - Directory Listing - [select for diffs]
Modified Wed May 20 23:16:31 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2912
we don't do ia64 either

Revision 2912 - Directory Listing - [select for diffs]
Modified Wed May 20 22:26:53 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2911
we don't do pc98

Revision 2911 - Directory Listing - [select for diffs]
Modified Wed May 20 22:24:27 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2910
We no longer have usbd, devd does all the heavy lifting.

ALso, remove process limits from sysinstall.  It makes absolutely no sense to have process limits for the installer.

Revision 2910 - Directory Listing - [select for diffs]
Modified Wed May 20 21:56:43 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2909
Mention the new installer option and change for powerd to be disabled by default.

Revision 2909 - Directory Listing - [select for diffs]
Modified Wed May 20 21:51:48 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2908
as promised, make a new powerd option in the installer

Revision 2908 - Directory Listing - [select for diffs]
Modified Wed May 20 21:41:40 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2907
related to bug 128

Revision 2907 - Directory Listing - [select for diffs]
Modified Wed May 20 21:35:09 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2906
fix the password field on the ftp

Revision 2906 - Directory Listing - [select for diffs]
Modified Wed May 20 21:30:19 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2905
Don't build docs by default.

Revision 2905 - Directory Listing - [select for diffs]
Modified Wed May 20 20:08:40 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2904
$MidnightBSD$ (and make the date newer than moduli.c)

Revision 2904 - Directory Listing - [select for diffs]
Modified Wed May 20 19:51:11 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2903
we have getrusage

Revision 2903 - Directory Listing - [select for diffs]
Modified Wed May 20 16:34:47 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2902
 Overhaul re(4).
  o Increased number of Rx/Tx descriptors to 256 for 8169 GigEs
    because it's hard to push the hardware to the limit with default
    64 descriptors.
    TSO requires large number of Tx descriptors to pass a full sized
    TCP segment(65535 bytes IP packet) to hardware. Previously it
    consumed 32 Tx descriptors, assuming MCLBYTES DMA segment size,
    to send the TCP segment which means re(4) couldn't queue more
    than two full sized IP packets.
    For 8139C+ it still uses 64 Rx/Tx descriptors due to its hardware
    limitations. With this changes there are (very) small waste of
    memory for 8139C+ users but I don't think it would affect 8139C+
    users for most cases.
  o Various bus_dma(9) fixes.
     - The hardware supports DAC so allow 64bit DMA operations.
     - Removed BUS_DMA_ALLOC_NOW flag.
     - Increased DMA segment size to 4096 from MCLBYTES because TSO
       consumes too many descriptors with MCLBYTES DMA segment size.
     - Tx/Rx side bus_dmamap_load_mbuf_sg(9) support. With these
       changes the code is more readable than previous one and got a
       (slightly) better performance as it doesn't need to pass/
       decode arguments to/from callback function.
     - Removed unnecessary callback function re_dmamap_desc() and
       nuked rl_dmaload_arg structure which was used in the callback.
     - Additional protection for DMA map load failure. In case of
       failure reuse current map instead of returning a bogus DMA
       map.
    -  Deferred DMA map unloading/sync operation for maximum
       performance until we really need to load new DMA map. If we
       happen to reuse current map(e.g. input error) there is no need
       to sync/unload/load again.
    -  The number of allowable Tx DMA segments for a mbuf chains are
       now 32 instead of magic nseg value. If the number of available
       Tx descriptors are short enough to send highly fragmented mbuf
       chains an optimized re_defrag() is called to collapse mbuf
       chains which is supposed to be much faster than m_defrag(9).
       re_defrag() was borrowed from ath(4).
     - Separated Rx/Tx DMA tag from a common DMA tag such that Rx DMA
       tag correctly uses DMA maps that were created with DMA alignment
       restriction(8bytes alignments). Tx DMA tag does not have such
       alignment limitation.
     - Added additional sanity checks for DMA ring map load failure.
     - Added additional spare Rx DMA map for graceful handling of Rx
       DMA map load failure.
     - Fixed misused bus_dmamap_sync(9) and added missing
       bus_dmamap_sync(9) in re_encap()/re_txeof()/re_rxeof().
  o Enabled TSO again as re(4) have reasonable number of Tx
    descriptors.
  o Don't touch DMA address of a Tx descriptor in re_txeof(). It's
    not needed.
  o Fix incorrect update of if_ierrors counter. For Rx buffer
    shortage it should update if_qdrops as the buffer is reused.
  o Added checks for unsupported H/W revisions and return ENXIO for
    these hardwares. This is required to remove resource allocation
    code in re_probe as other drivers do in device probe routine.
  o Modified descriptor index manipulation macros as it's now possible
    to have different number of descriptors for Rx/Tx.
  o In re_start, to save a lock operation, use IFQ_DRV_IS_EMPTY before
    trying to invoke IFQ_DRV_DEQUEUE. Also don't blindly call re_encap
    since we already know the number of available Tx descriptors in
    advance.
  o Removed RL_TX_DESC_THLD which was used to reserve RL_TX_DESC_THLD
    descriptors in Tx path. There is no such a limitation mentioned in
    8139C+/8169/8110/8168/8101/8111 datasheet and it seems to work ok
    without reserving RL_TX_DESC_THLD descriptors.
  o Fix a comment for RL_GTXSTART. The register is 8bits register.
  o Added comments for 8169/8139C+ hardware restrictions on descriptors.
  o Removed forward declaration for "struct rl_softc", it's not needed.
  o Added a new structure rl_txdesc for Tx descriptor managements and
    a structure rl_rxdesc for Rx descriptor managements.
  o Removed unused member variable rl_intlock in driver softc. There are
    still several unused member variables which are supposed to be used
    to access hardware statistics counters. But it seems that accessing
    hardware counters were not implemented yet.

Obtained from: FreeBSD , RELENG_7 if_re.c 1.101, if_re.c 1.102, if_rlreg.h 1.70

Revision 2902 - Directory Listing - [select for diffs]
Modified Wed May 20 16:27:04 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2901
fix device shutdown prototype

Revision 2901 - Directory Listing - [select for diffs]
Modified Wed May 20 16:25:39 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2900
  By definition promiscuous mode should see all unicast frames as well
  as multicast/broadcast frames. Previously re(4) ignored multicast
  frames in promiscuous mode. The RTL8169 datasheet was not clear
  how it handles multicast frames in promiscuous mode.

Obtained from: FreeBSD

Revision 2900 - Directory Listing - [select for diffs]
Modified Wed May 20 16:11:43 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2899
Enabling powerd by default was a good idea, but quite error prone.  On my new system and several others, it causes panics.  It also seems to interfere with stable operation on older hyperthreaded Pentium 4 based systems (such as the Dell GX270)

Let's disable it here and plan on adding an option in the installer to turn it on or off.

Revision 2899 - Directory Listing - [select for diffs]
Modified Sun May 17 22:02:58 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2898
relax the shutdown logic to stop hangs when shutting down the system.

Revision 2898 - Directory Listing - [select for diffs]
Modified Sun May 17 21:41:15 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2897
This is so goofy

Revision 2897 - Directory Listing - [select for diffs]
Modified Sun May 17 21:24:23 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2896
allow the user to turn off chechsum offloading via ifconfig

Revision 2896 - Directory Listing - [select for diffs]
Modified Sun May 17 21:21:50 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2895
fix prototype and return 0 on shutdown

Revision 2895 - Directory Listing - [select for diffs]
Modified Sat May 16 22:28:29 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2894
Use single byte read and write operations to toggle the BIOS and OS
 semaphores rather than 4 byte operations.

Revision 2894 - Directory Listing - [select for diffs]
Modified Sat May 16 22:25:47 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2893
 AMD GEODE USB/EHCI chip workaround from ivoras

Revision 2893 - Directory Listing - [select for diffs]
Modified Sat May 16 22:22:44 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2892
Add pci id's for ICH8 usb controllers

Revision 2892 - Directory Listing - [select for diffs]
Modified Sat May 16 22:02:07 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2891
add fixes from r38 cvs

Revision 2891 - Directory Listing - [select for diffs]
Modified Sat May 16 21:59:57 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2889
add flags for midnightbsd compatibility

Revision 2889 - Directory Listing - [select for diffs]
Modified Sat May 16 21:57:17 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2887
This commit was generated by cvs2svn to compensate for changes in r2888,
which included commits to RCS files with non-trunk default branches.
Revision 2887 - Directory Listing - [select for diffs]
Modified Sat May 16 20:27:36 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2886
a new approach to the ssh files thing

Revision 2886 - Directory Listing - [select for diffs]
Modified Sat May 16 18:38:51 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2885
add CPUID bits to ident phenom processor

There are several new CPUIDs to recognize AMD Extended Features, ECX 07FFh for Phenom processor.
According to [1], they are:

Bit 0: LAHF/SAHF
Bit 1: CMP
Bit 2: SVM (Secure Virtual Mode)
Bit 3: APIC
Bit 4: MOV CR8
*Bit 5: Advanced Bit Manipulation (LZCNT)
*Bit 6: SSE4A (EXTRQ, INSERTQ, MOVNTSS, MOVNTSD)
*Bit 7: Misalign SSE
Bit 8: 3DNow! (PREFETCH &#1080; PREFTECHW)
*Bit 9: OS Visible Workaround
*Bit 10: Instruction Based Sampling

* - missing bits in amd64/identcpu.c
[1]http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/31116.pdf

Based on patch by pluknet for FreeBSD

Revision 2885 - Directory Listing - [select for diffs]
Modified Sat May 16 18:16:48 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2884
Add (partial) support for newer re(4) chipsets.

Revision 2884 - Directory Listing - [select for diffs]
Modified Fri May 8 19:51:33 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2883
add ae(4) manual

Revision 2883 - Directory Listing - [select for diffs]
Modified Fri May 8 19:50:27 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2882
add ae(4)

Revision 2882 - Directory Listing - [select for diffs]
Modified Fri May 8 17:14:21 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2881
revert for now

Revision 2881 - Directory Listing - [select for diffs]
Modified Sun May 3 23:27:01 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2880
ok how about this

Revision 2880 - Directory Listing - [select for diffs]
Modified Sun May 3 21:01:08 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2879
we're seeing some problems installing moduli sine the openssh migration in world.  Let's try installing it this way

Revision 2879 - Directory Listing - [select for diffs]
Modified Sat May 2 21:45:07 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2878
clean up the intro

Revision 2878 - Directory Listing - [select for diffs]
Modified Sat May 2 21:12:44 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2877
catch up on man pages.

Revision 2877 - Directory Listing - [select for diffs]
Modified Sat May 2 19:51:18 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2876
update some of the man pages.  we'll have to get to this more later.

Revision 2876 - Directory Listing - [select for diffs]
Modified Sat May 2 19:30:54 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2875
reconnect pcc for testing

Revision 2875 - Directory Listing - [select for diffs]
Modified Sat May 2 19:08:24 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2874
Bump for easier detection of recent source changes such as makefs, and openssh 5.2

Revision 2874 - Directory Listing - [select for diffs]
Modified Sat May 2 19:07:25 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2873
OpenSSH 5.2

Revision 2873 - Directory Listing - [select for diffs]
Modified Sat May 2 18:17:40 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2872
reintegrate the vulnkey patch from DragonFly and Ubuntu

Revision 2872 - Directory Listing - [select for diffs]
Modified Sat May 2 18:02:33 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2871
Add changes to ssh_namespace.h as new symbols were added since 5.0

Revision 2871 - Directory Listing - [select for diffs]
Modified Sat May 2 18:01:59 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2870
cleanup

Revision 2870 - Directory Listing - [select for diffs]
Modified Sat May 2 18:01:23 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2869
Fix build of ssh, also some cleanup.

Revision 2869 - Directory Listing - [select for diffs]
Modified Sat May 2 18:00:56 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2868
Non functional cleanup

Revision 2868 - Directory Listing - [select for diffs]
Modified Sat May 2 17:24:07 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2867
update for 5.2p1

Revision 2867 - Directory Listing - [select for diffs]
Modified Sat May 2 17:23:33 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2866
re-add files we need lost as part of the botched merge.  DOH.

Revision 2866 - Directory Listing - [select for diffs]
Modified Sat May 2 17:00:32 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2865
resolve remaining conflict

Revision 2865 - Directory Listing - [select for diffs]
Modified Sat May 2 16:58:39 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2864
root == no

Revision 2864 - Directory Listing - [select for diffs]
Modified Sat May 2 16:56:00 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2863
version numbers can be fun.

Revision 2863 - Directory Listing - [select for diffs]
Modified Sat May 2 16:53:54 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2862
-j flags suck.

Revision 2862 - Directory Listing - [select for diffs]
Modified Sat May 2 16:51:51 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2860
Resolve conflicts

Revision 2860 - Directory Listing - [select for diffs]
Modified Sat May 2 16:45:51 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2858
This commit was generated by cvs2svn to compensate for changes in r2859,
which included commits to RCS files with non-trunk default branches.
Revision 2858 - Directory Listing - [select for diffs]
Modified Sat May 2 16:19:10 2009 UTC (14 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 2857
connect ale to the build.. for crash's sake :)

Revision 2857 - Directory Listing - [select for diffs]
Modified Fri May 1 17:46:43 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2856
makefs++

Revision 2856 - Directory Listing - [select for diffs]
Modified Fri May 1 17:46:01 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2855
Add makefs, a utility to create ffs images.  (think live usb stick)

Obtained from: NetBSD, FreeBSD

Revision 2855 - Directory Listing - [select for diffs]
Modified Fri May 1 17:36:02 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2854
screw it.. make a default cvs root.  This makes iso building so easy.

Revision 2854 - Directory Listing - [select for diffs]
Modified Sat Apr 25 19:36:27 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2853
remove local m_collapse implementation.. we've got a standard one now

Revision 2853 - Directory Listing - [select for diffs]
Modified Sat Apr 25 19:27:47 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2852
add m_collapse and friends

Revision 2852 - Directory Listing - [select for diffs]
Modified Sat Apr 25 19:25:42 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2851
add man pages for ale(4) and cxgb(4)

Revision 2851 - Directory Listing - [select for diffs]
Modified Sat Apr 25 19:23:36 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2850
add ale(4) (work in progress)

Revision 2850 - Directory Listing - [select for diffs]
Modified Sat Apr 25 19:23:10 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2849
add ale (work in progress, not connected)

Revision 2849 - Directory Listing - [select for diffs]
Modified Sat Apr 25 19:22:48 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2848
add ale (work in progress)

Revision 2848 - Directory Listing - [select for diffs]
Modified Thu Apr 23 04:23:54 2009 UTC (14 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 2847
Look for libraries in $DESTDIR/lib first.  This unbreaks building perl for a
0.3 world on a 0.2 box.  This isn't 100% correct yet, work needs to be done
on limiting where the perl configure looks for libs.

Revision 2847 - Directory Listing - [select for diffs]
Modified Wed Apr 22 22:43:16 2009 UTC (14 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 2845
Be careful not to double compress man pages.

Revision 2845 - Directory Listing - [select for diffs]
Modified Wed Apr 22 18:31:07 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2843
just use calloc everywhere

Revision 2843 - Directory Listing - [select for diffs]
Modified Wed Apr 22 18:10:40 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2842
OpenSSL security update

Revision 2842 - Directory Listing - [select for diffs]
Modified Wed Apr 22 18:09:11 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2841
bump the version to signify the OpenSSL security update.

Revision 2841 - Directory Listing - [select for diffs]
Modified Wed Apr 22 18:06:36 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2840
The function ASN1_STRING_print_ex does not properly validate the lengths
of BMPString or UniversalString objects before attempting to print them.

Remotely exploitable bug in openssl

Revision 2840 - Directory Listing - [select for diffs]
Modified Fri Apr 17 23:48:13 2009 UTC (14 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 2839
add missing update primative.

Revision 2839 - Directory Listing - [select for diffs]
Modified Thu Apr 16 03:13:26 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2838
sync with freebsd

Revision 2838 - Directory Listing - [select for diffs]
Modified Thu Apr 16 03:08:27 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2837
use socklen_t

Revision 2837 - Directory Listing - [select for diffs]
Modified Thu Apr 16 02:59:48 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2836
sync with freebsd 7

Revision 2836 - Directory Listing - [select for diffs]
Modified Thu Apr 16 02:58:26 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2835
document some of the adventures i've had in the last two days.

Revision 2835 - Directory Listing - [select for diffs]
Modified Thu Apr 16 02:45:01 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2834
tag

Revision 2834 - Directory Listing - [select for diffs]
Modified Thu Apr 16 02:43:37 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2833
introduce a Symbol.map for ohash

Revision 2833 - Directory Listing - [select for diffs]
Modified Thu Apr 16 02:03:03 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2832
One of the problems seen on smultron's box was that bootstrap tools were not build.  Correct an error in that section to force tools to build again.

Revision 2832 - Directory Listing - [select for diffs]
Modified Thu Apr 16 01:31:50 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2831
we're actually dying in the u name case

Revision 2831 - Directory Listing - [select for diffs]
Modified Thu Apr 16 01:29:05 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2830
document the new option in env -u name

Revision 2830 - Directory Listing - [select for diffs]
Modified Thu Apr 16 01:27:14 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2829
Add the '-u name' option to the env command, which will completely
unset the given variable name (removing it from the environment, instead
of just setting it to a null value).

Obtained from: FreeBSD

Revision 2829 - Directory Listing - [select for diffs]
Modified Thu Apr 16 00:15:25 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2828
add larn games directory under /usr/share

Revision 2828 - Directory Listing - [select for diffs]
Modified Thu Apr 16 00:08:48 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2827
remove freebsd email address.

Revision 2827 - Directory Listing - [select for diffs]
Modified Thu Apr 16 00:00:29 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2826
add larn directory

Revision 2826 - Directory Listing - [select for diffs]
Modified Wed Apr 15 23:55:11 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2825
add atc game directory

Revision 2825 - Directory Listing - [select for diffs]
Modified Wed Apr 15 20:58:12 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2824
don't need mytinfo.. unbreak world

Revision 2824 - Directory Listing - [select for diffs]
Modified Wed Apr 15 19:22:31 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2823
Correct the following defect in PF, originally reported to OpenBSD and later in our #midnightbsd chatroom:

Author           : Rembrandt
Date             : 2009-04-09
Affected Software: OpenBSD Kernel
Affected OS      : OpenBSD 4.{3,4,5}, OpenBSD-current
                  Propably older versions are affected as well
Type             : Denial of Service

OSVDB            :
Milw0rm          : 8406
CVE              :
ISS X-Force:     :
BID              : 34482
Secunia          : 34676
VUPEN ID         :
Trying to fix it responsible and get in contact with the vendor:

-- OpenBSD --
Contacted               2009-04-09 15:35 GMT+1
Patch avaiable          2009-04-11 23:43 UTC

We received no response nor a notification about an upcoming patch by
the developers.
-- END --

OpenBSDs PF firewall in OpenBSD 4.3 up to OpenBSD-current is prone to a
remote Denial of Service during a null pointer dereference in relation with
special crafted IP datagrams. If the firewall handles such a packet the kernel
panics.


Steps to reproduce:

If you are behind a OpenBSD firewall this nmap scan should trigger the problem
and crash your firewall device:

nmap -sO $some_host_so_that_the_firewall_handles_the_packets

For more informations please do read the patch issued by OpenBSD.


Patches and Workaround:

Patches are provided for OpenBSD 4.3, 4.4, 4.5 (upcoming, release 1st of may)
and OpenBSD-current (via CVS only) and are avaiable at the errata website.
The developers provide hints for a workaround at their errata website too.



Kind regards,
Rembrandt

Revision 2823 - Directory Listing - [select for diffs]
Modified Wed Apr 15 16:48:51 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2822
ports is renamed mports and i've made several changes to the manual for midnightbsd.  more are needed at a later date.  We were installing as ports and mports anyway.

Revision 2822 - Directory Listing - [select for diffs]
Modified Wed Apr 15 03:07:16 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2821
sync with freebsd

Revision 2821 - Directory Listing - [select for diffs]
Modified Wed Apr 15 03:02:37 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2820
sync with freebsd 7

Revision 2820 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:57:43 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2819
sync with freebsd

Revision 2819 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:53:43 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2818
sync netgraph ctl util with freebsd

Revision 2818 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:50:25 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2817
remove freebsd version checks

Revision 2817 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:48:03 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2816
remove freebsd os checks

Revision 2816 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:47:26 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2815
sync with freebsd 7

Revision 2815 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:45:17 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2814
sync, remove freebsd version checks.

Revision 2814 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:43:22 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2813
midnightbsd version

Revision 2813 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:42:15 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2812
remove freebsd version checks.. this makes no sense for us

Revision 2812 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:40:57 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2811
sync with freebsd, remove version check

Revision 2811 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:39:32 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2810
remove freebsd checking crap

Revision 2810 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:37:53 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2809
remove freebsd version check

Revision 2809 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:26:33 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2808
sync with freebsd

Revision 2808 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:25:17 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2807
fix error

Revision 2807 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:22:13 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2806
$MidnightBSD$

Revision 2806 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:18:13 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2805
sync with freebsd 7

Revision 2805 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:14:14 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2804
sync with freebsd 7.0

Revision 2804 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:12:32 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2803
sync mklocale

Revision 2803 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:11:37 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2802
add a comment about archite's file.  I'm not sure what we want to do with that.

Revision 2802 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:09:51 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2801
we don't have that many architectures.

Revision 2801 - Directory Listing - [select for diffs]
Modified Wed Apr 15 02:01:29 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2800
add mksh :)

Revision 2800 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:59:05 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2799
useless lib32

Revision 2799 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:56:32 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2798
sync make_libdeps.sh

Revision 2798 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:53:57 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2797
sync with freebsd

Revision 2797 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:53:06 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2796
tag

Revision 2796 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:45:20 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2795
remove backout commit which is rather specific to freebsd mailing list emails

Revision 2795 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:43:45 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2794
sync with freebsd

Revision 2794 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:41:39 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2793
remove the mfc script which is quite freebsd centric.

Revision 2793 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:36:33 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2792
sync with freebsd

Revision 2792 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:32:36 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2791
copyright update sync with freebsd

Revision 2791 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:31:34 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2790
recoverdisk is part of the base system

Revision 2790 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:30:04 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2789
update syscall timing program. rename socket testing, add dgram socketpair_stream socketpair_dgram test.  from freebsd/rwatson

Revision 2789 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:27:53 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2788
we don't need a freebsd 2 to 3 upgrade script

Revision 2788 - Directory Listing - [select for diffs]
Modified Wed Apr 15 01:25:11 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2787
alright remove the stupid version thing. we're not planning on using dtrace any time soon anyway.

Revision 2787 - Directory Listing - [select for diffs]
Modified Tue Apr 14 20:53:39 2009 UTC (14 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 2786
remove objects

Revision 2786 - Directory Listing - [select for diffs]
Modified Tue Apr 14 20:52:57 2009 UTC (14 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 2785
remove objects.

Revision 2785 - Directory Listing - [select for diffs]
Modified Tue Apr 14 20:52:04 2009 UTC (14 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 2784
sync libmport libexecs with devel version.

Revision 2784 - Directory Listing - [select for diffs]
Modified Tue Apr 14 20:42:54 2009 UTC (14 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 2783
Sync with the current devel version of libmport.

Revision 2783 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:41:56 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2782
add robots and rogue from dragonfly

Revision 2782 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:39:38 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2781
add rain from dragonfly

Revision 2781 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:38:09 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2780
add piano from dragonfly

Revision 2780 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:36:32 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2779
add larn datfiles

Revision 2779 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:36:08 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2778
add larn

Revision 2778 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:34:13 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2777
add dungeon master

Revision 2777 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:32:14 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2776
add bs from dragonfly

Revision 2776 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:30:35 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2775
*** empty log message ***

Revision 2775 - Directory Listing - [select for diffs]
Modified Sun Apr 12 00:47:15 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2774
add hangman from dragonfly

Revision 2774 - Directory Listing - [select for diffs]
Modified Sun Apr 12 00:20:26 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2773
Go fish!

Revision 2773 - Directory Listing - [select for diffs]
Modified Sat Apr 11 23:50:58 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2772
add snake from dragonfly

Revision 2772 - Directory Listing - [select for diffs]
Modified Sat Apr 11 23:50:18 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2771
add snake from Dragonfly

Revision 2771 - Directory Listing - [select for diffs]
Modified Sat Apr 11 23:47:25 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2770
add pig game from Dragonfly

Revision 2770 - Directory Listing - [select for diffs]
Modified Sat Apr 11 22:33:28 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2769
More format changes, run html tidy.

Revision 2769 - Directory Listing - [select for diffs]
Modified Sat Apr 11 20:49:30 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2768
fix title on main page, format a little better

Revision 2768 - Directory Listing - [select for diffs]
Modified Sat Apr 11 20:38:17 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2767
Now generate index pages

Revision 2767 - Directory Listing - [select for diffs]
Modified Sat Apr 11 19:33:46 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2766
This script creates html pages from installed man pages in /usr/share/man (or whatever path you specify).  It will do section 1-9 of the manual.

TODO:
Generate indexes for each section of the manual and a main index page.
Post processing on the output with other tools so it's not so ugly.

Revision 2766 - Directory Listing - [select for diffs]
Modified Sat Apr 11 17:09:34 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2765
who doesn't love wargames

Revision 2765 - Directory Listing - [select for diffs]
Modified Sat Apr 11 17:06:28 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2764
add worm, worms, wump from DragonFly

Revision 2764 - Directory Listing - [select for diffs]
Modified Sat Apr 11 17:01:12 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2763
add trek from Dragonfly :)

Revision 2763 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:58:38 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2762
$MidnightBSD$

At some point we should revisit this and move over to the newer tty handling code so COMPAT_43 isn't needed.

Revision 2762 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:55:25 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2761
$MidnightBSD$

Revision 2761 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:52:49 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2760
$MidnightBSD$

Switch to NO_MAN

Revision 2760 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:49:47 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2759
add backgammon game from DragonFly

Revision 2759 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:46:04 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2758
Add battlestar game from DragonFly

Revision 2758 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:32:15 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2757
add arithmetic game from DragonFly.

Revision 2757 - Directory Listing - [select for diffs]
Modified Sat Apr 11 04:44:29 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2756
remove useless script from previous version of this utility.

Revision 2756 - Directory Listing - [select for diffs]
Modified Sat Apr 11 04:43:26 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2755
Don't bother the user with a cryptic "file not found" message.  The sysctl is failing only in cases we don't have a battery in the system or it is not reporting battery life.

Revision 2755 - Directory Listing - [select for diffs]
Modified Sat Apr 11 01:06:00 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2754
This used tabs instead of spaces.  let's keep it consistent.

Revision 2754 - Directory Listing - [select for diffs]
Modified Sat Apr 11 00:59:58 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2753
remove arm/ia64/ppc bits

Revision 2753 - Directory Listing - [select for diffs]
Modified Fri Apr 10 00:30:35 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2752
add a shortcut for setting up natd that i used today on a system

Revision 2752 - Directory Listing - [select for diffs]
Modified Fri Apr 10 00:23:45 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2751
cleanup man page for firewalls a bit

Revision 2751 - Directory Listing - [select for diffs]
Modified Fri Apr 10 00:20:06 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2750
spacing tweak.

Revision 2750 - Directory Listing - [select for diffs]
Modified Mon Apr 6 03:11:07 2009 UTC (14 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 2749
Fix buildworld problem where usr/libdata/pkgconfig wasn't getting created in
the buildworld tmp dir.

Revision 2749 - Directory Listing - [select for diffs]
Modified Mon Apr 6 00:30:46 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2748
$MidnightBSD$

Revision 2748 - Directory Listing - [select for diffs]
Modified Mon Apr 6 00:00:28 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2747
disconnect this until i figure out why it breaks on old installs

Revision 2747 - Directory Listing - [select for diffs]
Modified Sun Apr 5 23:53:18 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2746
ok this was a bad idea for now.

Revision 2746 - Directory Listing - [select for diffs]
Modified Sun Apr 5 23:40:43 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2745
fix comment.

Revision 2745 - Directory Listing - [select for diffs]
Modified Sun Apr 5 23:39:34 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2744
add a comment about Xorg sucking with hald and mouse/kbd problems.

Revision 2744 - Directory Listing - [select for diffs]
Modified Sun Apr 5 23:35:06 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2743
drop the pc98 arch and set the amd64 32bit libs up so that they work on all amd64 compatible cpus.  also enable the VERSION var for a future project

Revision 2743 - Directory Listing - [select for diffs]
Modified Sun Apr 5 23:20:08 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2742
ash crap

Revision 2742 - Directory Listing - [select for diffs]
Modified Sun Apr 5 23:02:05 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2741
Drop some of the bootstrapping for versions of freebsd before we initially forked.

Revision 2741 - Directory Listing - [select for diffs]
Modified Sun Apr 5 22:48:21 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2740
fix bootstrapping variable.  it should use the midnightbsd value.

Revision 2740 - Directory Listing - [select for diffs]
Modified Sun Apr 5 22:47:44 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2739
*** empty log message ***

Revision 2739 - Directory Listing - [select for diffs]
Modified Sun Apr 5 22:40:26 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2738
ugh.. ok set this up correctly.

Revision 2738 - Directory Listing - [select for diffs]
Modified Sat Apr 4 20:36:23 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2737
drop debug statement

Revision 2737 - Directory Listing - [select for diffs]
Modified Sat Apr 4 20:35:22 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2736
force renegotiation on ed cards to work with different media types and dhcp properly

obtained from: freebsd

Revision 2736 - Directory Listing - [select for diffs]
Modified Sat Apr 4 15:15:07 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2735
Enable support for the Microsoft Hyper-V virtual machine system in Windows 2008 server, etc.

You may still need to set the media type for dhcp clients, but at least the system can now shutdown properly.

Revision 2735 - Directory Listing - [select for diffs]
Modified Fri Apr 3 06:28:03 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2734
mention what we did to mksh

Revision 2734 - Directory Listing - [select for diffs]
Modified Fri Apr 3 05:30:46 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2733
conditionalize bin/msh as bin/sh with MK_ASH setting.

Revision 2733 - Directory Listing - [select for diffs]
Modified Fri Apr 3 05:30:12 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2732
conditionalize bin/mksh install depending on MK_ASH

Revision 2732 - Directory Listing - [select for diffs]
Modified Fri Apr 3 05:29:51 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2731
install mksh as /bin/sh depending on MK_ASH

Revision 2731 - Directory Listing - [select for diffs]
Modified Fri Apr 3 05:18:17 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2730
Remove csup files since it's not part of the base system anylonger.

Revision 2730 - Directory Listing - [select for diffs]
Modified Fri Apr 3 05:16:13 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2729
remove csup from the base system.  We've had some open bug reports on this and it looks like we might migrate off cvs anyway.  It does not support cvs 1.12.x properly.

Revision 2729 - Directory Listing - [select for diffs]
Modified Fri Apr 3 05:14:53 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2728
remove csup related files.

Revision 2728 - Directory Listing - [select for diffs]
Modified Thu Apr 2 03:25:52 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2727
forced commit:  perform proper bounds checking on kenv(2) system call so that a DOS attack cannot occur.

Revision 2727 - Directory Listing - [select for diffs]
Modified Thu Apr 2 03:24:47 2009 UTC (14 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 2726
*** empty log message ***

Revision 2726 - Directory Listing - [select for diffs]
Modified Mon Mar 30 20:08:27 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2725
make install.man work with DESTDIR correctly

Revision 2725 - Directory Listing - [select for diffs]
Modified Mon Mar 30 18:20:43 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2724
support chinese characters, etc.

Revision 2724 - Directory Listing - [select for diffs]
Modified Mon Mar 30 18:19:40 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2723
support utf8 including some chinese characters.

Revision 2723 - Directory Listing - [select for diffs]
Modified Mon Mar 30 15:34:38 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2722
temporarily back out mksh changes.

Revision 2722 - Directory Listing - [select for diffs]
Modified Mon Mar 30 15:33:04 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2721
Temporarily back out the mksh change.  This kills buildworld too.  We need to evaluate the sitatuation before proceeding.

Revision 2721 - Directory Listing - [select for diffs]
Modified Sun Mar 29 19:46:25 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2720
add the local patches from freebsd (for the most part until we can get around to cleaning this up

Revision 2720 - Directory Listing - [select for diffs]
Modified Sun Mar 29 19:29:31 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2718
update man pages

Revision 2718 - Directory Listing - [select for diffs]
Modified Sun Mar 29 19:07:20 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2716
This commit was generated by cvs2svn to compensate for changes in r2717,
which included commits to RCS files with non-trunk default branches.
Revision 2716 - Directory Listing - [select for diffs]
Modified Sun Mar 29 17:24:39 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2715
remove previous hack.  I now suspect something with the tinderbox system.

Revision 2715 - Directory Listing - [select for diffs]
Modified Sun Mar 29 16:56:32 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2714
fix preprocessor checks, gcc4 fixes, etc

Revision 2714 - Directory Listing - [select for diffs]
Modified Sun Mar 29 16:33:38 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2713
let's make it tick

Revision 2713 - Directory Listing - [select for diffs]
Modified Sun Mar 29 16:32:48 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2712
add man page for coda(4)

Revision 2712 - Directory Listing - [select for diffs]
Modified Sun Mar 29 16:30:12 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2711
add geom_uzip(4) man page

Revision 2711 - Directory Listing - [select for diffs]
Modified Sun Mar 29 16:28:03 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2710
this should be unsigned.  found with LINT build

Revision 2710 - Directory Listing - [select for diffs]
Modified Sun Mar 29 16:22:41 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2709
add man pages for audit(4) and auditpipe(4)

Revision 2709 - Directory Listing - [select for diffs]
Modified Sun Mar 29 16:18:09 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2708
update man page for watchdog(4)

Revision 2708 - Directory Listing - [select for diffs]
Modified Sun Mar 29 16:15:57 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2707
update man page for led(4)

Revision 2707 - Directory Listing - [select for diffs]
Modified Sun Mar 29 16:15:16 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2706
add led create state

Revision 2706 - Directory Listing - [select for diffs]
Modified Sun Mar 29 15:49:15 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2705
Temporarily disable inlining on this function.  It's flipping out during LINT builds on sparc64.

Revision 2705 - Directory Listing - [select for diffs]
Modified Sun Mar 29 15:14:48 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2704
forgot the man page for sh(1)

Revision 2704 - Directory Listing - [select for diffs]
Modified Sun Mar 29 03:16:35 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2703
last commit of the evening :)

Fix a few problems with this man page in relation to the new mksh(1) as /bin/sh change.  The list needs to be revised for mksh features and missing ashisms.

Revision 2703 - Directory Listing - [select for diffs]
Modified Sun Mar 29 03:14:06 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2702
remove comment about UPDATING in mports since we dont' have one right now.

Revision 2702 - Directory Listing - [select for diffs]
Modified Sun Mar 29 03:12:45 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2701
mksh update, new /bin/sh, fortune and ahd

Revision 2701 - Directory Listing - [select for diffs]
Modified Sun Mar 29 03:10:41 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2700
switch to generic fortunes

Revision 2700 - Directory Listing - [select for diffs]
Modified Sun Mar 29 03:08:47 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2699
remove freebsd-tips.  The idea is sound, but we should really make our own down the road

Revision 2699 - Directory Listing - [select for diffs]
Modified Sun Mar 29 03:02:56 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2698
alloc.c -> lalloc.c

Revision 2698 - Directory Listing - [select for diffs]
Modified Sun Mar 29 03:00:26 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2696
Temporarily disable ahd, adaptec 79xx driver from lint testing until we get it working again.  Currently it's a compile error and we need to test other parts of the system

Revision 2696 - Directory Listing - [select for diffs]
Modified Sun Mar 29 02:56:05 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2694
This commit was generated by cvs2svn to compensate for changes in r2695,
which included commits to RCS files with non-trunk default branches.
Revision 2694 - Directory Listing - [select for diffs]
Modified Sun Mar 29 02:52:03 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2693
add freebsd extension setvar

Revision 2693 - Directory Listing - [select for diffs]
Modified Sun Mar 29 02:51:27 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2692
update dot.mkshrc for r36b.  Add a custom setvar function for freebsd compatibility.

Revision 2692 - Directory Listing - [select for diffs]
Modified Sun Mar 29 02:34:19 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2691
fix for mksh

Revision 2691 - Directory Listing - [select for diffs]
Modified Sun Mar 29 02:30:59 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2690
Switch to mksh as default.

Revision 2690 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:34:05 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2689
sync with freebsd 7

Revision 2689 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:32:14 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2688
sync with freebsd7

Revision 2688 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:30:48 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2687
sync with freebsd

Revision 2687 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:29:02 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2686
sync with freebsd 7

Revision 2686 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:23:49 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2685
remove architectures we don't support

Revision 2685 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:23:48 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2684
sync with freebsd 7

Revision 2684 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:19:22 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2683
man pages are good.

Revision 2683 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:19:02 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2682
sync with freebsd7

Revision 2682 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:15:05 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2681
sync with freebsd 7

Revision 2681 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:12:40 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2680
*** empty log message ***

Revision 2680 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:10:43 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2679
the bindir is default here

Revision 2679 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:10:02 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2678
why set the directory when we are here

Revision 2678 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:07:52 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2677
uuidgen is now in bin

Revision 2677 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:07:24 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2676
add uuidgen (from /usr/bin to here)

Revision 2676 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:06:11 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2675
move to /bin

Revision 2675 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:05:03 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2674
moved to /bin

Revision 2674 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:04:42 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2673
better yet lets move it where it default installs to

Revision 2673 - Directory Listing - [select for diffs]
Modified Fri Mar 27 22:02:25 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2672
sync pkill with freebsd and install in /bin with symlinks to /usr/bin as needed

Revision 2672 - Directory Listing - [select for diffs]
Modified Fri Mar 27 21:17:12 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2668
Mention libarchive update and ctriv's perl work.

Revision 2668 - Directory Listing - [select for diffs]
Modified Fri Mar 27 20:25:13 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2667
stop using pax as our cpio.  This might fix some of the sparc64 installer problems.

Revision 2667 - Directory Listing - [select for diffs]
Modified Fri Mar 27 20:24:09 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2666
connect bsdcpio to the build.

Revision 2666 - Directory Listing - [select for diffs]
Modified Fri Mar 27 20:22:27 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2665
add bsdcpio

Revision 2665 - Directory Listing - [select for diffs]
Modified Fri Mar 27 19:51:46 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2664
*** empty log message ***

Revision 2664 - Directory Listing - [select for diffs]
Modified Fri Mar 27 19:38:20 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2663
Update libarchive, sync with some features from google code repo 1.6.2 and freebsd RELENG_7 as of today.

Revision 2663 - Directory Listing - [select for diffs]
Modified Fri Mar 27 01:53:38 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2662
don't make the shell static

Revision 2662 - Directory Listing - [select for diffs]
Modified Thu Mar 26 21:49:30 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2661
connect perl to the build.

Revision 2661 - Directory Listing - [select for diffs]
Modified Thu Mar 26 21:49:00 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2660
use 64bit ints.

Revision 2660 - Directory Listing - [select for diffs]
Modified Wed Mar 25 22:19:39 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2659
*** empty log message ***

Revision 2659 - Directory Listing - [select for diffs]
Modified Wed Mar 25 22:13:59 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2658
fix bug

Revision 2658 - Directory Listing - [select for diffs]
Modified Wed Mar 25 19:23:09 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2657
update for 9.4.3

Revision 2657 - Directory Listing - [select for diffs]
Modified Wed Mar 25 19:13:18 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2656
update for bind 9.4.3

Revision 2656 - Directory Listing - [select for diffs]
Modified Wed Mar 25 18:10:52 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2655
bump version.  We've made a number of changes to both userland and the kernel.  Make it easier to sort this mess out.

Revision 2655 - Directory Listing - [select for diffs]
Modified Wed Mar 25 18:09:26 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2654
man page moved

Revision 2654 - Directory Listing - [select for diffs]
Modified Wed Mar 25 18:09:08 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2653
Update updating, bind, mksh, tcpdump

Revision 2653 - Directory Listing - [select for diffs]
Modified Wed Mar 25 18:06:48 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2652
man page moved from nsupdate.8 to nsupdate.1

Revision 2652 - Directory Listing - [select for diffs]
Modified Wed Mar 25 18:02:40 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2651
merge

Revision 2651 - Directory Listing - [select for diffs]
Modified Wed Mar 25 18:00:56 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2649
*** empty log message ***

Revision 2649 - Directory Listing - [select for diffs]
Modified Wed Mar 25 17:51:27 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2647
This commit was generated by cvs2svn to compensate for changes in r2648,
which included commits to RCS files with non-trunk default branches.
Revision 2647 - Directory Listing - [select for diffs]
Modified Wed Mar 25 17:18:05 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2645
$MidnightBSD$

Revision 2645 - Directory Listing - [select for diffs]
Modified Wed Mar 25 16:59:32 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2643
This commit was generated by cvs2svn to compensate for changes in r2644,
which included commits to RCS files with non-trunk default branches.
Revision 2643 - Directory Listing - [select for diffs]
Modified Wed Mar 25 16:56:49 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2642
fix print-bgp.c

Revision 2642 - Directory Listing - [select for diffs]
Modified Wed Mar 25 16:51:02 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2641
remove alpha and pc98

Revision 2641 - Directory Listing - [select for diffs]
Modified Wed Mar 25 16:08:51 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2640
update dot.mkshrc for the new version

Revision 2640 - Directory Listing - [select for diffs]
Modified Wed Mar 25 16:05:12 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2638
add some directions for this thing.

Revision 2638 - Directory Listing - [select for diffs]
Modified Wed Mar 25 16:02:19 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2636
This commit was generated by cvs2svn to compensate for changes in r2637,
which included commits to RCS files with non-trunk default branches.
Revision 2636 - Directory Listing - [select for diffs]
Modified Mon Mar 23 02:48:35 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2635
install the pkgconfig file.

Revision 2635 - Directory Listing - [select for diffs]
Modified Mon Mar 23 02:35:46 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2634
add /usr/libdata/pkgconfig

Revision 2634 - Directory Listing - [select for diffs]
Modified Mon Mar 23 02:34:53 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2633
add pkg-config file.

Revision 2633 - Directory Listing - [select for diffs]
Modified Mon Mar 23 01:57:18 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2632
Security fix for ktimer, the posix per process timer as defined in POSIX real time extensions.  This only affects current.

Revision 2632 - Directory Listing - [select for diffs]
Modified Fri Mar 20 22:26:12 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2631
Nagging is a great thing for freebsd to be doing.  We're not going to
make much of a difference nagging though, and it's slowing down builds.

Remove the sleep.

Revision 2631 - Directory Listing - [select for diffs]
Modified Fri Mar 20 03:21:04 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2630
*** empty log message ***

Revision 2630 - Directory Listing - [select for diffs]
Modified Fri Mar 20 03:16:38 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2629
add zfs check

Revision 2629 - Directory Listing - [select for diffs]
Modified Fri Mar 20 03:13:19 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2628
should use -n on nice

Revision 2628 - Directory Listing - [select for diffs]
Modified Fri Mar 20 03:10:40 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2627
Update security periodic to go with changes in various system utilities including ipfw

Revision 2627 - Directory Listing - [select for diffs]
Modified Thu Mar 19 15:42:58 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2626
get the linking right.

Revision 2626 - Directory Listing - [select for diffs]
Modified Thu Mar 19 15:07:58 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2625
build a thread safe libsqlite3.

Revision 2625 - Directory Listing - [select for diffs]
Modified Thu Mar 19 01:46:50 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2624
cleanup clean.  fix man paths for site modules.

Revision 2624 - Directory Listing - [select for diffs]
Modified Mon Mar 16 17:31:22 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2623
Now compress man pages properly.

Todo:
	* decide on the compiletime options we want.  Two big ones are 64 bit
	  support and threads
	* fix building in '.'.  Right now you have to make obj first.
	* test building when perl isn't already installed.  I think it'll
	  work...

Revision 2623 - Directory Listing - [select for diffs]
Modified Mon Mar 16 16:27:46 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2622
add string.h to deal with previous commit.

Revision 2622 - Directory Listing - [select for diffs]
Modified Mon Mar 16 16:23:37 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2621
Fix information leakage.  Some jackass didn't use -DPURIFY which lets the code run memset.  So uninitialized memory is written to db files all over the system.

Revision 2621 - Directory Listing - [select for diffs]
Modified Mon Mar 16 16:10:13 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2619
Cleanup MANIFEST a bit more.  The CVS directories had snuck in.

Revision 2619 - Directory Listing - [select for diffs]
Modified Mon Mar 16 02:22:11 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2618
make our own manifest.

Revision 2618 - Directory Listing - [select for diffs]
Modified Sun Mar 15 23:23:49 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2617
start of our core perl.
Right now the man pages aren't handled correctly, nor is building in '.'.
Not yet ready to be connected to the build.

Revision 2617 - Directory Listing - [select for diffs]
Modified Sun Mar 15 23:17:16 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2616
we're always elf.  we should get this upstreamed.

Revision 2616 - Directory Listing - [select for diffs]
Modified Sun Mar 15 20:27:59 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2614
New meta-docs for sqlite import.

Revision 2614 - Directory Listing - [select for diffs]
Modified Sun Mar 15 20:26:09 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2612
This commit was generated by cvs2svn to compensate for changes in r2613,
which included commits to RCS files with non-trunk default branches.
Revision 2612 - Directory Listing - [select for diffs]
Modified Sun Mar 15 19:49:49 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2611
Fix bug when fileaccess pragma was used with -x file test.
See perl RT #49003.

Revision 2611 - Directory Listing - [select for diffs]
Modified Sun Mar 15 19:48:36 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2609
add importing notes.

Revision 2609 - Directory Listing - [select for diffs]
Modified Sun Mar 15 19:20:10 2009 UTC (15 years ago) by ctriv
Original Path: trunk
Diff to previous 2607
This commit was generated by cvs2svn to compensate for changes in r2608,
which included commits to RCS files with non-trunk default branches.
Revision 2607 - Directory Listing - [select for diffs]
Modified Sun Mar 15 14:28:20 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2606
remove arm/ia64 cruft

Revision 2606 - Directory Listing - [select for diffs]
Modified Sun Mar 15 14:24:21 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2605
fix for midnightbsd

Revision 2605 - Directory Listing - [select for diffs]
Modified Sun Mar 15 14:13:04 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2604
$MidnightBSD$

Revision 2604 - Directory Listing - [select for diffs]
Modified Sun Mar 15 14:11:24 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2603
Remove pc98 support.

Revision 2603 - Directory Listing - [select for diffs]
Modified Sun Mar 15 14:02:29 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2602
*** empty log message ***

Revision 2602 - Directory Listing - [select for diffs]
Modified Wed Mar 11 20:50:49 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2601
finish futex fixes for linuxolator

Revision 2601 - Directory Listing - [select for diffs]
Modified Wed Mar 11 20:38:39 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2600
DOh.. fix regresion.

Revision 2600 - Directory Listing - [select for diffs]
Modified Wed Mar 4 23:48:04 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2599
Update config.h for new version of sudo.

Revision 2599 - Directory Listing - [select for diffs]
Modified Wed Mar 4 23:47:32 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2598
fix with sudo 1.6.9p20

Revision 2598 - Directory Listing - [select for diffs]
Modified Wed Mar 4 21:07:17 2009 UTC (15 years ago) by laffer1
Original Path: trunk
Diff to previous 2597
update to 1.6.9p20

Revision 2597 - Directory Listing - [select for diffs]
Modified Sun Mar 1 19:21:37 2009 UTC (15 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 2596
	o	Add stub support for some new futex operations,
		so the annoying message is not printed.

	o	Don't warn about FUTEX_FD not being implemented
		and return ENOSYS instead of 0 (eg. success).

	o	Clear FUTEX_PRIVATE_FLAG as we actually implement
		only private futexes so there is no reason to
		return ENOSYS when app asks for a private futex.
		We don't reject shared futexes because they worked
		just fine with our implementation so far.

Obtained from freebsd, rdivacky

Revision 2596 - Directory Listing - [select for diffs]
Modified Sun Mar 1 19:19:22 2009 UTC (15 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 2595
Return ENOSYS instead of 0 for the unknown futex operations.

Revision 2595 - Directory Listing - [select for diffs]
Modified Mon Feb 16 22:24:47 2009 UTC (15 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 2594
Due to changes in environment handling, the scrubbing is no longer effective.  Correct this defect.

Revision 2594 - Directory Listing - [select for diffs]
Modified Mon Feb 9 17:43:18 2009 UTC (15 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 2593
Forced commit to note the patch came from Jaakko Heinonen

Revision 2593 - Directory Listing - [select for diffs]
Modified Mon Feb 9 17:42:12 2009 UTC (15 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 2592
Correct a freeze on amd64 systems accessing ext2fs.

Revision 2592 - Directory Listing - [select for diffs]
Modified Mon Feb 9 16:51:55 2009 UTC (15 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 2591
switch over to eli since it doesn't change the key per block (faster).  It was not stable in 0.2

Revision 2591 - Directory Listing - [select for diffs]
Modified Wed Jan 21 03:34:05 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2590
We don't have usbd.conf anymore

Revision 2590 - Directory Listing - [select for diffs]
Modified Tue Jan 20 21:32:30 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2589
*** empty log message ***

Revision 2589 - Directory Listing - [select for diffs]
Modified Tue Jan 20 21:30:16 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2588
move the pcc line to a more logical place

Revision 2588 - Directory Listing - [select for diffs]
Modified Tue Jan 20 21:10:45 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2587
WIP: Update to .99

Revision 2587 - Directory Listing - [select for diffs]
Modified Tue Jan 20 20:13:55 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2586
Remove FreeBSD_version definition completely.

Revision 2586 - Directory Listing - [select for diffs]
Modified Tue Jan 20 20:10:04 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2585
sc->ndis_txidx should be cycle between 0 and sc->ndis_maxpkts, not
NDIS_TXPKTS and don't allocate unused extra spaces for sc->ndis_txarray
and sc->ndis_txpool.

Revision 2585 - Directory Listing - [select for diffs]
Modified Tue Jan 20 19:53:10 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2584
This fix was found in freebsd pr 124225

Description:
Normally, when packets are queued to the ndis network interface, ndis_start()
is called to move packets from the interface send queue to the underlying
NDIS driver.

If the network link is down or the underlying driver is busy transmitting data,
ndis_start() just returns.

When the link goes up, ndis_starttask() is supposed to be called after
ndis_ticktask() in order to transmit already queued packets.

After a watchdog timeout, ndis_starttask() is likewise supposed to be called
after ndis_resettask().

Unfortunately, work items used for triggering calls to ndis_ticktask(),
ndis_starttask() and ndis_resettask() are placed on separarate task lists which
are handled by separate kernel processes, thus losing ordering information
about when the tasks should be performed in relation to each other.

If the interface send queue is full after a watchdog timeout or link up event
and the tasks were handled in the wrong order then further attempts to send
packets via the interface results in ENOBUFS ("No buffer space available").
How-To-Repeat:
Use the ndis driver for a wireless network card in an area with many APs on
nearby channels and on a machine with many active tcp connections, causing link
to temporarily go down every few hours, and the interface send queue to be
filled while the link is temporarily down.
Fix:
A proper fix is to ensure that related tasks are handled in the correct order.
The following kludge justs add extra attempts at scheduling calls to
ndis_starttask() as part of the processing of ndis_ticktask() and
ndis_resettask(). It depends on defensive coding in IoQueueWorkItem(),
i.e. that nothing is done if the work item is already queued.

Revision 2584 - Directory Listing - [select for diffs]
Modified Tue Jan 20 19:44:27 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2583
cast to printf properly

Revision 2583 - Directory Listing - [select for diffs]
Modified Tue Jan 20 19:40:53 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2582
Fix a problem with broadcom and marvell wifi using ndis.  Scan results are not stored properly as some do not give a desired buffer length.  Make a default.  This fixes problems with some macbooks too

Revision 2582 - Directory Listing - [select for diffs]
Modified Tue Jan 20 19:37:48 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2581
stop kernel panics when ndis fails to attach and it's not a wifi device

Revision 2581 - Directory Listing - [select for diffs]
Modified Tue Jan 20 19:32:21 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2580
remove old man pages

Revision 2580 - Directory Listing - [select for diffs]
Modified Tue Jan 20 19:31:05 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2579
update section 9 of the manual

Revision 2579 - Directory Listing - [select for diffs]
Modified Tue Jan 20 19:29:07 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2578
use pause(9) instead of a tsleep() on a stack variable

Revision 2578 - Directory Listing - [select for diffs]
Modified Tue Jan 20 18:51:43 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2577
add Huawei Technologies Mobile and E220 G3 Modem

Revision 2577 - Directory Listing - [select for diffs]
Modified Tue Jan 20 18:50:01 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2576
add HUAWEI E220 Modem

Revision 2576 - Directory Listing - [select for diffs]
Modified Tue Jan 20 18:18:18 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2575
Switch to new wiki page for documenation on kernel

Revision 2575 - Directory Listing - [select for diffs]
Modified Tue Jan 20 17:45:24 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2574
add commented out bwi(4)

Revision 2574 - Directory Listing - [select for diffs]
Modified Tue Jan 20 17:40:39 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2573
Midnightize this

Revision 2573 - Directory Listing - [select for diffs]
Modified Tue Jan 20 17:39:34 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2572
add bwi(4)

Revision 2572 - Directory Listing - [select for diffs]
Modified Tue Jan 20 16:32:51 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2571
Disable debugging by default, but leave the option handy for me.

Revision 2571 - Directory Listing - [select for diffs]
Modified Mon Jan 19 22:40:09 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2570
Document the "temporary" firmware installation procedure and make a few other adjustments for MidnightBSD.  This must get better.

Revision 2570 - Directory Listing - [select for diffs]
Modified Mon Jan 19 22:28:38 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2569
Add bwi.4 (initial man page) from DragonFly

Revision 2569 - Directory Listing - [select for diffs]
Modified Mon Jan 19 22:22:51 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2568
don't enable BWI_DEBUG here, use the opt_bwi.h for that.

Revision 2568 - Directory Listing - [select for diffs]
Modified Mon Jan 19 22:19:39 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2567
Add bwi

Revision 2567 - Directory Listing - [select for diffs]
Modified Mon Jan 19 22:11:07 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2566
Add firmware makefile

Revision 2566 - Directory Listing - [select for diffs]
Modified Mon Jan 19 22:10:32 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2565
Describe firmware situation.  (damn binary blobs)

Revision 2565 - Directory Listing - [select for diffs]
Modified Mon Jan 19 22:03:55 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2564
add bwi

Revision 2564 - Directory Listing - [select for diffs]
Modified Mon Jan 19 22:02:25 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2563
Add bwi to MidnightBSD.  bwi is a very limited broadcom wireless nic adapter from DragonFly, NetBSD, and OpenBSD.  This is not connected to the build and requires a firmware which is hard to come by.

Revision 2563 - Directory Listing - [select for diffs]
Modified Sun Jan 18 19:29:05 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2562
Remove legacy freebsd support.  Switch to "MidnightBSD" os name.

Revision 2562 - Directory Listing - [select for diffs]
Modified Sun Jan 18 19:28:02 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2561
remove legacy freebsd version support.

Revision 2561 - Directory Listing - [select for diffs]
Modified Sun Jan 18 19:27:17 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2560
Remove the legacy freebsd version support.  Fix the mode setting for 48.

Revision 2560 - Directory Listing - [select for diffs]
Modified Sun Jan 18 01:19:29 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2559
merge rc changes

Revision 2559 - Directory Listing - [select for diffs]
Modified Sun Jan 18 01:07:55 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2558
merge rc changes

Revision 2558 - Directory Listing - [select for diffs]
Modified Sun Jan 18 00:52:19 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2557
*** empty log message ***

Revision 2557 - Directory Listing - [select for diffs]
Modified Sun Jan 18 00:36:38 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2556
Add kld loader functions and make several changes with mounting

Revision 2556 - Directory Listing - [select for diffs]
Modified Sun Jan 18 00:17:34 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2555
Change the way ipfw module is loaded.

Revision 2555 - Directory Listing - [select for diffs]
Modified Sun Jan 18 00:16:14 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2554
remove unneeded commands on ipsec reload

Revision 2554 - Directory Listing - [select for diffs]
Modified Sun Jan 18 00:08:32 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2553
add stop command and fix lowest power profile testing

Revision 2553 - Directory Listing - [select for diffs]
Modified Sun Jan 18 00:04:39 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2552
enclose in quotes

Revision 2552 - Directory Listing - [select for diffs]
Modified Sun Jan 18 00:02:19 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2551
tag

Revision 2551 - Directory Listing - [select for diffs]
Modified Sun Jan 18 00:00:26 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2550
disable dumpdev since we encrypt swap.  (regression fix)

Revision 2550 - Directory Listing - [select for diffs]
Modified Sat Jan 17 22:23:54 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2549
ramdisk and ramdisk-own -> mdconfig and mdconfig2
statd is from nfslocking

Revision 2549 - Directory Listing - [select for diffs]
Modified Sat Jan 17 18:43:39 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2548
update gpt(8)

Revision 2548 - Directory Listing - [select for diffs]
Modified Sat Jan 17 18:42:03 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2547
Make the firewall quiet

Revision 2547 - Directory Listing - [select for diffs]
Modified Sat Jan 17 18:37:37 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2546
Add defaults for several daemons.

Revision 2546 - Directory Listing - [select for diffs]
Modified Sat Jan 17 18:26:37 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2545
add sync dhclient

Revision 2545 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:42:14 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2544
remove netbsd tags

Revision 2544 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:41:30 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2543
add zfs support

Revision 2543 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:39:28 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2542
fix some problems with this script

Revision 2542 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:38:07 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2541
add friendly message, remove netbsd tag

Revision 2541 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:37:02 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2540
add mountlate

Revision 2540 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:35:26 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2539
Rename nfslocking -> lockd

Revision 2539 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:32:59 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2538
add kernel

Revision 2538 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:30:41 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2537
*** empty log message ***

Revision 2537 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:30:24 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2536
add idmapd

Revision 2536 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:24:51 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2535
Whack ppp-user... merge and cleanup ppp

Revision 2535 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:21:47 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2534
Make local

Revision 2534 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:20:22 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2533
Remove some of these options as they were moved  to netoptions

Revision 2533 - Directory Listing - [select for diffs]
Modified Sat Jan 17 17:16:41 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2532
change the name of pidfile not to conflict

Revision 2532 - Directory Listing - [select for diffs]
Modified Sat Jan 17 16:40:42 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2531
Add several new friendly net options.

Revision 2531 - Directory Listing - [select for diffs]
Modified Sat Jan 17 16:31:32 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2530
Remove pccard

Revision 2530 - Directory Listing - [select for diffs]
Modified Sat Jan 17 16:25:06 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2529
Emit a warning when the network_interfaces variable is not set to AUTO and change wpa_supplicant to down the interface at the start of the init routine.  wpa_supplicant expects that it has exclusive access to the net80211 state.  This stops errors trying to scan when it's already scanning causing a problem connecting.  This was an issue for firmware based cards in particular.  Do not bother ifconfig up(ing) the interface since it is downed again

Revision 2529 - Directory Listing - [select for diffs]
Modified Sat Jan 17 02:49:12 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2528
Document mport maintainer mode.

Revision 2528 - Directory Listing - [select for diffs]
Modified Fri Jan 16 04:49:24 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2527
Update for newer pf

Revision 2527 - Directory Listing - [select for diffs]
Modified Fri Jan 16 04:43:55 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2526
midnightbsdize

Revision 2526 - Directory Listing - [select for diffs]
Modified Fri Jan 16 04:40:21 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2525
MidnightBSDize

Revision 2525 - Directory Listing - [select for diffs]
Modified Fri Jan 16 04:26:31 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2524
Make some needed changes.  Switch to pax.

Revision 2524 - Directory Listing - [select for diffs]
Modified Fri Jan 16 04:21:33 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2523
DNSSEC bind update.

Revision 2523 - Directory Listing - [select for diffs]
Modified Thu Jan 15 23:20:52 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2522
fix man page and add directions to go back to standard boot

Revision 2522 - Directory Listing - [select for diffs]
Modified Thu Jan 15 16:20:38 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2520
bind security update with DNSSEC

Revision 2520 - Directory Listing - [select for diffs]
Modified Sun Jan 11 02:45:04 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2519
fix incorrect tcp padding on options

Revision 2519 - Directory Listing - [select for diffs]
Modified Sun Jan 11 02:43:31 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2518
prevent nmount(2) local arbitrary code execution

Revision 2518 - Directory Listing - [select for diffs]
Modified Sun Jan 11 02:42:31 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2517
doh

Revision 2517 - Directory Listing - [select for diffs]
Modified Sun Jan 11 02:41:57 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2516
icmp ipv6

Revision 2516 - Directory Listing - [select for diffs]
Modified Sun Jan 11 02:40:53 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2513
IPV6 and arc4random

Revision 2513 - Directory Listing - [select for diffs]
Modified Sun Jan 11 01:52:40 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2511
lukemftpd security fix

Revision 2511 - Directory Listing - [select for diffs]
Modified Sat Jan 10 22:58:42 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2510
OpenSSL security patch

Revision 2510 - Directory Listing - [select for diffs]
Modified Sat Jan 10 22:55:24 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2509
*** empty log message ***

Revision 2509 - Directory Listing - [select for diffs]
Modified Sat Jan 10 22:20:18 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2508
re-add openssl compat

Revision 2508 - Directory Listing - [select for diffs]
Modified Mon Jan 5 15:55:56 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2507
Bring back umac.c as seen on tinderbox

Revision 2507 - Directory Listing - [select for diffs]
Modified Mon Jan 5 05:31:06 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2506
remove atm files

Revision 2506 - Directory Listing - [select for diffs]
Modified Sun Jan 4 23:56:01 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2504
update for 5.2 p13

Revision 2504 - Directory Listing - [select for diffs]
Modified Sun Jan 4 23:53:26 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2502
This commit was generated by cvs2svn to compensate for changes in r2503,
which included commits to RCS files with non-trunk default branches.
Revision 2502 - Directory Listing - [select for diffs]
Modified Sun Jan 4 23:50:23 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2501
bump shared lib version, switch to new world order.

Revision 2501 - Directory Listing - [select for diffs]
Modified Sun Jan 4 23:46:22 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2500
Import gnu readline

Revision 2500 - Directory Listing - [select for diffs]
Modified Sun Jan 4 23:45:20 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2498
update to 5.2

Revision 2498 - Directory Listing - [select for diffs]
Modified Sun Jan 4 23:41:20 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2496
This commit was generated by cvs2svn to compensate for changes in r2497,
which included commits to RCS files with non-trunk default branches.
Revision 2496 - Directory Listing - [select for diffs]
Modified Sun Jan 4 23:20:49 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2495
Update upgrade documentation

Revision 2495 - Directory Listing - [select for diffs]
Modified Sun Jan 4 23:11:34 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2494
Remove obsolete directories.

Revision 2494 - Directory Listing - [select for diffs]
Modified Sun Jan 4 23:05:43 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2493
netatm is disabled... don't include it.  Remove posix4 as it's no longer used.

Revision 2493 - Directory Listing - [select for diffs]
Modified Sun Jan 4 22:59:15 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2492
Atm isn't connected to the build anymore (mpsafe issues)

Revision 2492 - Directory Listing - [select for diffs]
Modified Sun Jan 4 22:58:15 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2491
Remove fast ipsec man page

Revision 2491 - Directory Listing - [select for diffs]
Modified Sun Jan 4 22:51:37 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2490
Only need sunlabel on the sparc.

Revision 2490 - Directory Listing - [select for diffs]
Modified Sun Jan 4 22:47:05 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2489
tag

Revision 2489 - Directory Listing - [select for diffs]
Modified Sun Jan 4 22:38:00 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2488
bump shared library version for libssh

Revision 2488 - Directory Listing - [select for diffs]
Modified Sun Jan 4 22:30:17 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2487
Back out part of this list

Revision 2487 - Directory Listing - [select for diffs]
Modified Sun Jan 4 20:30:10 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2486
List several obsolete files so we can remove them from upgraded systems

Revision 2486 - Directory Listing - [select for diffs]
Modified Fri Jan 2 00:48:41 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2485
geeze, fix the build/install of liblwres

Revision 2485 - Directory Listing - [select for diffs]
Modified Thu Jan 1 22:52:48 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2484
timezones are fun

Revision 2484 - Directory Listing - [select for diffs]
Modified Thu Jan 1 22:00:27 2009 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2482
2008i

Revision 2482 - Directory Listing - [select for diffs]
Modified Wed Dec 31 16:40:09 2008 UTC (15 years, 2 months ago) by ctriv
Original Path: trunk
Diff to previous 2481
add strndup()

Revision 2481 - Directory Listing - [select for diffs]
Modified Wed Dec 31 15:01:20 2008 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2479
Update copyrights for 2009.

Revision 2479 - Directory Listing - [select for diffs]
Modified Wed Dec 31 14:30:17 2008 UTC (15 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 2477
Correct a problem where bluetooth and netgraph sockets are not initialized properly.

Revision 2477 - Directory Listing - [select for diffs]
Modified Mon Dec 29 17:50:21 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2476
$MidnightBSD$

Revision 2476 - Directory Listing - [select for diffs]
Modified Mon Dec 22 05:42:19 2008 UTC (15 years, 3 months ago) by ctriv
Original Path: trunk
Diff to previous 2475
Fix setting envirements variables with env.

Revision 2475 - Directory Listing - [select for diffs]
Modified Sat Dec 20 22:41:24 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2474
pf_frag_compare fix

Revision 2474 - Directory Listing - [select for diffs]
Modified Tue Dec 16 15:46:19 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2473
save work.. i need to reboot

Revision 2473 - Directory Listing - [select for diffs]
Modified Sat Dec 13 22:53:26 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2472
Install to /lib instead of /usr/lib.  When including bsd.own.mk, you must override this first.

Revision 2472 - Directory Listing - [select for diffs]
Modified Sat Dec 13 22:51:06 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2471
$MidnightBSD$, remove arm

Revision 2471 - Directory Listing - [select for diffs]
Modified Sat Dec 13 20:32:53 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2470
woo hoo

Revision 2470 - Directory Listing - [select for diffs]
Modified Sat Dec 13 19:44:15 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2469
merge

Revision 2469 - Directory Listing - [select for diffs]
Modified Sat Dec 13 19:43:39 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2468
__MidnightBSD__

Revision 2468 - Directory Listing - [select for diffs]
Modified Sat Dec 13 19:30:29 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2467
make pf work with midnightbsd

Revision 2467 - Directory Listing - [select for diffs]
Modified Sat Dec 13 16:17:40 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2466
__MidnightBSD__

Revision 2466 - Directory Listing - [select for diffs]
Modified Sat Dec 13 16:04:55 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2465
Fix comments, remove HPFS.

Revision 2465 - Directory Listing - [select for diffs]
Modified Sat Dec 13 15:50:45 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2464
Remove i4b

Revision 2464 - Directory Listing - [select for diffs]
Modified Sat Dec 13 03:55:28 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2463
sync

Revision 2463 - Directory Listing - [select for diffs]
Modified Sat Dec 13 03:53:11 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2462
Add __MidnightBSD__ os checks

Revision 2462 - Directory Listing - [select for diffs]
Modified Sat Dec 13 03:03:42 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2461
no i4b

Revision 2461 - Directory Listing - [select for diffs]
Modified Sat Dec 13 03:00:39 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2460
Add xbox support files.

Revision 2460 - Directory Listing - [select for diffs]
Modified Wed Dec 10 19:34:36 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2459
sync

Revision 2459 - Directory Listing - [select for diffs]
Modified Wed Dec 10 19:30:38 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2458
*** empty log message ***

Revision 2458 - Directory Listing - [select for diffs]
Modified Wed Dec 10 18:40:22 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2457
doh.. add the msi stuff

Revision 2457 - Directory Listing - [select for diffs]
Modified Wed Dec 10 18:16:23 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2456
Sync nsp(4)

Revision 2456 - Directory Listing - [select for diffs]
Modified Wed Dec 10 18:01:29 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2455
update ncv(4)

Revision 2455 - Directory Listing - [select for diffs]
Modified Wed Dec 10 18:00:59 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2454
Update ncv(4)

Revision 2454 - Directory Listing - [select for diffs]
Modified Wed Dec 10 17:59:14 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2453
remove oldcard

Revision 2453 - Directory Listing - [select for diffs]
Modified Wed Dec 10 17:54:40 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2452
add nfe(4), zyd(4).  Remove kame and worm as the former is complete and the latter never existed in MidnightBSD.

Revision 2452 - Directory Listing - [select for diffs]
Modified Wed Dec 10 17:45:59 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2451
add pecoff

Revision 2451 - Directory Listing - [select for diffs]
Modified Wed Dec 10 17:40:04 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2450
add new man pages and sync with updated device drivers

Revision 2450 - Directory Listing - [select for diffs]
Modified Wed Dec 10 17:38:55 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2449
add new man pages nad synx with updated device drivers

Revision 2449 - Directory Listing - [select for diffs]
Modified Wed Dec 10 17:36:03 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2448
connect man pages to build

Revision 2448 - Directory Listing - [select for diffs]
Modified Wed Dec 10 17:33:30 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2447
add new man pages for scc(4), coretemp(4), acpi_dock(4) and wlan_amrr(4)

Revision 2447 - Directory Listing - [select for diffs]
Modified Wed Dec 10 17:32:04 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2446
Sync man pages with changes to the respective code

Revision 2446 - Directory Listing - [select for diffs]
Modified Wed Dec 10 17:22:10 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2445
Disable bringing in the header

Revision 2445 - Directory Listing - [select for diffs]
Modified Tue Dec 9 22:54:41 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2444
Fix the check test so it only prints the message :)

Revision 2444 - Directory Listing - [select for diffs]
Modified Tue Dec 9 22:42:37 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2443
sync

Revision 2443 - Directory Listing - [select for diffs]
Modified Tue Dec 9 22:33:53 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2442
iwifw

Revision 2442 - Directory Listing - [select for diffs]
Modified Tue Dec 9 22:29:52 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2441
GEOM_GPT -> GEOM_PART_GPT

Revision 2441 - Directory Listing - [select for diffs]
Modified Tue Dec 9 22:13:10 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2440
tag new files

Revision 2440 - Directory Listing - [select for diffs]
Modified Tue Dec 9 22:11:19 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2439
catch up pam config with audit support

Revision 2439 - Directory Listing - [select for diffs]
Modified Tue Dec 9 21:58:08 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2438
update the pf.os file slightly.. we need to do more with this

Revision 2438 - Directory Listing - [select for diffs]
Modified Tue Dec 9 21:56:57 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2437
enable wheel group for sudoers.  We may prefer to add individual users later with the installer, but this is a good default for now

Revision 2437 - Directory Listing - [select for diffs]
Modified Tue Dec 9 21:54:04 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2436
Update etc environment.  add nscd.conf, remove usbd.conf as we don't need usbd.  Switch to new world order

Revision 2436 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:37:20 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2435
Remove 50* osrel check.

Revision 2435 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:35:12 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2434
Merge changes.

Revision 2434 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:34:02 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2432
This commit was generated by cvs2svn to compensate for changes in r2433,
which included commits to RCS files with non-trunk default branches.
Revision 2432 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:32:15 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2431
*** empty log message ***

Revision 2431 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:31:15 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2430
sync

Revision 2430 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:30:49 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2429
sync limits

Revision 2429 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:29:37 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2428
sync join man page

Revision 2428 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:28:49 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2427
update line numbering filter

Revision 2427 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:28:21 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2426
update ncal(1)

Revision 2426 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:27:31 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2425
update tty

Revision 2425 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:27:00 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2424
add audit support to login

Revision 2424 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:26:22 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2423
sync su

Revision 2423 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:25:53 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2422
sync tftp client

Revision 2422 - Directory Listing - [select for diffs]
Modified Tue Dec 9 18:25:23 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2421
sync time

Revision 2421 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:39:05 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2420
Remove uac which isn't used since we don't have an alpha port

Revision 2420 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:38:00 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2419
remove alpha bits

Revision 2419 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:30:43 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2418
Sync up devices

Revision 2418 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:16:40 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2417
sync vmstat

Revision 2417 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:15:06 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2416
sync vis

Revision 2416 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:14:30 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2415
sync elfdump

Revision 2415 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:13:54 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2414
sync

Revision 2414 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:12:15 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2413
sync ktrdump

Revision 2413 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:11:44 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2412
sync ktrace

Revision 2412 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:10:26 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2411
this has been depricated

Revision 2411 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:08:17 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2410
sync ipcs

Revision 2410 - Directory Listing - [select for diffs]
Modified Tue Dec 9 17:00:26 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2409
kernel types for XBOX and MAC

Revision 2409 - Directory Listing - [select for diffs]
Modified Tue Dec 9 16:58:48 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2408
Update NOTES for newer options

Revision 2408 - Directory Listing - [select for diffs]
Modified Tue Dec 9 16:40:29 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2407
Standardize tagging syscalls.master

Revision 2407 - Directory Listing - [select for diffs]
Modified Tue Dec 9 16:36:33 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2406
revert to 0.3 as discussed with ctriv@

Revision 2406 - Directory Listing - [select for diffs]
Modified Tue Dec 9 16:35:01 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2405
triv and i discussed the versioning and decided a 0.3 is needed to get the bugs out of the upcoming installer and mports tools

Revision 2405 - Directory Listing - [select for diffs]
Modified Tue Dec 9 16:33:34 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2404
revert last change

Revision 2404 - Directory Listing - [select for diffs]
Modified Sun Dec 7 04:47:31 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2403
Sync changes

Revision 2403 - Directory Listing - [select for diffs]
Modified Sun Dec 7 04:45:15 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2402
add ftp-proxy for pf

Revision 2402 - Directory Listing - [select for diffs]
Modified Sun Dec 7 04:40:44 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2401
Modify dhclient to use background var

Revision 2401 - Directory Listing - [select for diffs]
Modified Sun Dec 7 04:34:28 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2400
usbd was removed

Revision 2400 - Directory Listing - [select for diffs]
Modified Sun Dec 7 04:14:41 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2399
fix os version

Revision 2399 - Directory Listing - [select for diffs]
Modified Sun Dec 7 04:10:26 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2398
Explain the status of batt(1), and ongoing work.

Revision 2398 - Directory Listing - [select for diffs]
Modified Sun Dec 7 04:02:23 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2397
Move to a version for 1.0. This makes logical sense both in terms of the release situation and representation

Revision 2397 - Directory Listing - [select for diffs]
Modified Sun Dec 7 04:01:23 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2396
Switch version information.  We're starting at 1.0-CURRENT now.

Revision 2396 - Directory Listing - [select for diffs]
Modified Sun Dec 7 04:00:12 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2395
update version information for MidnightBSD

Revision 2395 - Directory Listing - [select for diffs]
Modified Sun Dec 7 03:50:27 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2394
merge changes

Revision 2394 - Directory Listing - [select for diffs]
Modified Sun Dec 7 03:46:54 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2393
update GENERIC to put it in line with amd64

Revision 2393 - Directory Listing - [select for diffs]
Modified Sun Dec 7 03:36:23 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2392
lnc was removed.

Revision 2392 - Directory Listing - [select for diffs]
Modified Sun Dec 7 03:35:12 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2391
Sync with changes to GENERIC and the removal of lnc

Revision 2391 - Directory Listing - [select for diffs]
Modified Sun Dec 7 03:28:31 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2390
Remove 3c501 isa based 3com nic.  This is quite old and not entirely in line with the current development.  I don't even have a system with an ISA slot to test one in if i had one.  Also remove pcf which is replaced with i2c

Revision 2390 - Directory Listing - [select for diffs]
Modified Sun Dec 7 03:22:28 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2389
remove zs as uart(4) has replaced it

Revision 2389 - Directory Listing - [select for diffs]
Modified Sun Dec 7 02:33:39 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2388
Typos were bound to happen

Revision 2388 - Directory Listing - [select for diffs]
Modified Sun Dec 7 00:59:17 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2387
work in progress.. add __MidnightBSD__ checks in the code

Revision 2387 - Directory Listing - [select for diffs]
Modified Sun Dec 7 00:54:02 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2386
work in progress.. add __MidnightBSD__ checks in the code

Revision 2386 - Directory Listing - [select for diffs]
Modified Sun Dec 7 00:18:55 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2385
work in progress.. add __MidnightBSD__ checks in the code

Revision 2385 - Directory Listing - [select for diffs]
Modified Sat Dec 6 20:34:27 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2384
switch to defined(__MidnightBSD__) checks

Revision 2384 - Directory Listing - [select for diffs]
Modified Sat Dec 6 15:28:31 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2383
sync with freebsd 7

Revision 2383 - Directory Listing - [select for diffs]
Modified Sat Dec 6 15:24:58 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2382
Document the problem with CVS 1.12

Revision 2382 - Directory Listing - [select for diffs]
Modified Sat Dec 6 15:20:36 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2381
Add -c flag to produce concise output for scripting use

Revision 2381 - Directory Listing - [select for diffs]
Modified Sat Dec 6 15:11:57 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2380
more style(9)

Revision 2380 - Directory Listing - [select for diffs]
Modified Sat Dec 6 15:03:28 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2379
style(9) fixes

Revision 2379 - Directory Listing - [select for diffs]
Modified Sat Dec 6 05:08:38 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2378
Replace the batt command with a new implementation written in C.  This version uses the sysctlbyname interface to collect data and runs much more quickly.  Still requires ACPI battery information.

Add l, t and u flags to show the battery life as a percentage, time remaining, and number of batteries (units).  The default is l and t.

Revision 2378 - Directory Listing - [select for diffs]
Modified Sat Dec 6 03:36:20 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2377
fix for __FreeBSD_version

Revision 2377 - Directory Listing - [select for diffs]
Modified Sat Dec 6 03:31:30 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2376
remove __FreeBSD_version checks

Revision 2376 - Directory Listing - [select for diffs]
Modified Sat Dec 6 03:28:31 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2375
Remoe __FreeBSD_version check.

Revision 2375 - Directory Listing - [select for diffs]
Modified Sat Dec 6 03:14:55 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2374
remove freebsd checks

Revision 2374 - Directory Listing - [select for diffs]
Modified Sat Dec 6 03:05:38 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2373
stdint should always be set

Revision 2373 - Directory Listing - [select for diffs]
Modified Sat Dec 6 03:03:21 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2372
Document the __MidnightBSD_version

Revision 2372 - Directory Listing - [select for diffs]
Modified Thu Dec 4 20:00:37 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2371
add atrun

Revision 2371 - Directory Listing - [select for diffs]
Modified Thu Dec 4 19:10:58 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2370
Add additional wifi and network devices.

Add AUDIT

Revision 2370 - Directory Listing - [select for diffs]
Modified Thu Dec 4 18:14:36 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2369
Temporarily disconnect pcc from the build until we can make fix it.

Revision 2369 - Directory Listing - [select for diffs]
Modified Thu Dec 4 18:10:36 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2368
We no longer need usbd

Revision 2368 - Directory Listing - [select for diffs]
Modified Thu Dec 4 17:44:18 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2367
add audit, nscd.  Fix kerberos server options.  Remove usbd as it's been replaced by devd.  Add zfs on/off.

Revision 2367 - Directory Listing - [select for diffs]
Modified Thu Dec 4 17:36:23 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2366
Add forums and wiki pages and update the contact information.

Revision 2366 - Directory Listing - [select for diffs]
Modified Thu Dec 4 17:21:08 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2365
add entries for pts and pty

Revision 2365 - Directory Listing - [select for diffs]
Modified Thu Dec 4 17:19:20 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2364
$MidnightBSD$

Revision 2364 - Directory Listing - [select for diffs]
Modified Thu Dec 4 17:18:03 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2363
Update rc.suspend and rc.resume to take advantage of the new modes.  Add ZFS to devd config

Revision 2363 - Directory Listing - [select for diffs]
Modified Thu Dec 4 17:04:24 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2362
Sync this with other changes to the kernel.

Revision 2362 - Directory Listing - [select for diffs]
Modified Thu Dec 4 16:15:50 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2361
Add ftp-proxy, nscd (caching), zfs, auditd, bridge, and bthidd.  Remove usbd as devd does that job now.

Revision 2361 - Directory Listing - [select for diffs]
Modified Thu Dec 4 15:47:23 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2360
Move the comment as it's used in newvers.sh to set osreldate in the generated vers.c

Revision 2360 - Directory Listing - [select for diffs]
Modified Thu Dec 4 14:50:47 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2359
Explain the progress we've made in the last few months.  Still more to do.

Revision 2359 - Directory Listing - [select for diffs]
Modified Thu Dec 4 14:34:29 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2358
Bump for recent changes including ZFS

Revision 2358 - Directory Listing - [select for diffs]
Modified Thu Dec 4 14:32:54 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2357
Change over to using __MidnightBSDversion as discussed with ctriv.  Switch to 0.3-CURRENT

Revision 2357 - Directory Listing - [select for diffs]
Modified Thu Dec 4 14:26:50 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2356
restore LOMTU value

Revision 2356 - Directory Listing - [select for diffs]
Modified Thu Dec 4 00:05:20 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2355
Add man pages

Revision 2355 - Directory Listing - [select for diffs]
Modified Wed Dec 3 23:58:32 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2354
Add several new directories including hostapd, wpa_supplicant, etc..

Revision 2354 - Directory Listing - [select for diffs]
Modified Wed Dec 3 23:47:36 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2353
Add legal directory under share/doc for intel wifi

Revision 2353 - Directory Listing - [select for diffs]
Modified Wed Dec 3 23:28:30 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2352
*** empty log message ***

Revision 2352 - Directory Listing - [select for diffs]
Modified Wed Dec 3 23:27:57 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2351
Update the kernel config with the newer wifi and network devices.

Revision 2351 - Directory Listing - [select for diffs]
Modified Wed Dec 3 23:08:22 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2350
merge

Revision 2350 - Directory Listing - [select for diffs]
Modified Wed Dec 3 20:12:59 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2349
tag

Revision 2349 - Directory Listing - [select for diffs]
Modified Wed Dec 3 20:11:49 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2348
update open firmware code

Revision 2348 - Directory Listing - [select for diffs]
Modified Wed Dec 3 20:09:45 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2347
oops.. missing as seen on tinderbox

Revision 2347 - Directory Listing - [select for diffs]
Modified Wed Dec 3 03:08:01 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2345
This commit was generated by cvs2svn to compensate for changes in r2346,
which included commits to RCS files with non-trunk default branches.
Revision 2345 - Directory Listing - [select for diffs]
Modified Wed Dec 3 03:05:45 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2344
Update sound code

Revision 2344 - Directory Listing - [select for diffs]
Modified Wed Dec 3 02:18:09 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2342
This commit was generated by cvs2svn to compensate for changes in r2343,
which included commits to RCS files with non-trunk default branches.
Revision 2342 - Directory Listing - [select for diffs]
Modified Wed Dec 3 01:59:52 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2341
damn fat fingers

Revision 2341 - Directory Listing - [select for diffs]
Modified Wed Dec 3 01:59:22 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2339
This commit was generated by cvs2svn to compensate for changes in r2340,
which included commits to RCS files with non-trunk default branches.
Revision 2339 - Directory Listing - [select for diffs]
Modified Wed Dec 3 00:52:22 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2337
This commit was generated by cvs2svn to compensate for changes in r2338,
which included commits to RCS files with non-trunk default branches.
Revision 2337 - Directory Listing - [select for diffs]
Modified Wed Dec 3 00:43:39 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2336
update

Revision 2336 - Directory Listing - [select for diffs]
Modified Wed Dec 3 00:30:44 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2335
tag

Revision 2335 - Directory Listing - [select for diffs]
Modified Wed Dec 3 00:29:03 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2334
merge

Revision 2334 - Directory Listing - [select for diffs]
Modified Wed Dec 3 00:27:02 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2333
*** empty log message ***

Revision 2333 - Directory Listing - [select for diffs]
Modified Wed Dec 3 00:25:56 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2332
$MidnightBSD$

Revision 2332 - Directory Listing - [select for diffs]
Modified Wed Dec 3 00:11:24 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2331
$MidnightBSD$

Revision 2331 - Directory Listing - [select for diffs]
Modified Wed Dec 3 00:04:38 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2330
$MidnightBSD$

Revision 2330 - Directory Listing - [select for diffs]
Modified Wed Dec 3 00:03:00 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2329
enable msi, sync changes with freebsd, maintain support for intel macs

Revision 2329 - Directory Listing - [select for diffs]
Modified Tue Dec 2 23:56:20 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2328
we deleted osf1 a long time ago

Revision 2328 - Directory Listing - [select for diffs]
Modified Tue Dec 2 23:55:31 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2327
Remove lnc module

Revision 2327 - Directory Listing - [select for diffs]
Modified Tue Dec 2 23:54:09 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2326
sync with freebsd

Revision 2326 - Directory Listing - [select for diffs]
Modified Tue Dec 2 23:51:56 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2325
lnc hasn't worked and it's not going to

Revision 2325 - Directory Listing - [select for diffs]
Modified Tue Dec 2 22:46:25 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2324
$MidnightBSD$

Revision 2324 - Directory Listing - [select for diffs]
Modified Tue Dec 2 22:45:54 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2322
This commit was generated by cvs2svn to compensate for changes in r2323,
which included commits to RCS files with non-trunk default branches.
Revision 2322 - Directory Listing - [select for diffs]
Modified Tue Dec 2 22:45:00 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2321
merge

Revision 2321 - Directory Listing - [select for diffs]
Modified Tue Dec 2 22:36:25 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2320
merge

Revision 2320 - Directory Listing - [select for diffs]
Modified Tue Dec 2 21:52:45 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2319
$MidnightBSD$

Revision 2319 - Directory Listing - [select for diffs]
Modified Tue Dec 2 21:48:58 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2318
merge

Revision 2318 - Directory Listing - [select for diffs]
Modified Tue Dec 2 21:41:01 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2317
Remove "trademark"

Revision 2317 - Directory Listing - [select for diffs]
Modified Tue Dec 2 17:02:36 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2315
This commit was generated by cvs2svn to compensate for changes in r2316,
which included commits to RCS files with non-trunk default branches.
Revision 2315 - Directory Listing - [select for diffs]
Modified Tue Dec 2 17:01:59 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2314
merge

Revision 2314 - Directory Listing - [select for diffs]
Modified Tue Dec 2 16:56:16 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2312
This commit was generated by cvs2svn to compensate for changes in r2313,
which included commits to RCS files with non-trunk default branches.
Revision 2312 - Directory Listing - [select for diffs]
Modified Tue Dec 2 16:34:04 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2311
Remove unused file

Revision 2311 - Directory Listing - [select for diffs]
Modified Tue Dec 2 16:33:15 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2309
This commit was generated by cvs2svn to compensate for changes in r2310,
which included commits to RCS files with non-trunk default branches.
Revision 2309 - Directory Listing - [select for diffs]
Modified Tue Dec 2 16:21:32 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2307
This commit was generated by cvs2svn to compensate for changes in r2308,
which included commits to RCS files with non-trunk default branches.
Revision 2307 - Directory Listing - [select for diffs]
Modified Tue Dec 2 15:24:45 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2306
sync with "enhanced" syscons

Revision 2306 - Directory Listing - [select for diffs]
Modified Tue Dec 2 15:19:07 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2304
This commit was generated by cvs2svn to compensate for changes in r2305,
which included commits to RCS files with non-trunk default branches.
Revision 2304 - Directory Listing - [select for diffs]
Modified Tue Dec 2 15:08:09 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2303
Remove hpfs

Revision 2303 - Directory Listing - [select for diffs]
Modified Tue Dec 2 15:06:52 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2302
we don't have hpfs

Revision 2302 - Directory Listing - [select for diffs]
Modified Tue Dec 2 15:06:01 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2301
Doh.  Remove hpfs (again)

Revision 2301 - Directory Listing - [select for diffs]
Modified Tue Dec 2 03:20:07 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2299
This commit was generated by cvs2svn to compensate for changes in r2300,
which included commits to RCS files with non-trunk default branches.
Revision 2299 - Directory Listing - [select for diffs]
Modified Tue Dec 2 03:13:22 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2298
sync with freebsd

Revision 2298 - Directory Listing - [select for diffs]
Modified Tue Dec 2 03:07:46 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2297
Remove sab(4) as it will be replaced by scc

Revision 2297 - Directory Listing - [select for diffs]
Modified Tue Dec 2 03:07:01 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2296
Remove sab device.  scc should be connected later

Revision 2296 - Directory Listing - [select for diffs]
Modified Tue Dec 2 03:05:42 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2295
remove sab, it was replaced by scc

Revision 2295 - Directory Listing - [select for diffs]
Modified Tue Dec 2 03:04:22 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2293
This commit was generated by cvs2svn to compensate for changes in r2294,
which included commits to RCS files with non-trunk default branches.
Revision 2293 - Directory Listing - [select for diffs]
Modified Tue Dec 2 03:02:37 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2292
sync with freebsd 7

Revision 2292 - Directory Listing - [select for diffs]
Modified Tue Dec 2 03:01:57 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2291
Sync with freebsd 7

Revision 2291 - Directory Listing - [select for diffs]
Modified Tue Dec 2 02:47:53 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2290
$MidnightBSD$

Revision 2290 - Directory Listing - [select for diffs]
Modified Tue Dec 2 02:47:13 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2288
This commit was generated by cvs2svn to compensate for changes in r2289,
which included commits to RCS files with non-trunk default branches.
Revision 2288 - Directory Listing - [select for diffs]
Modified Tue Dec 2 02:38:26 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2287
Doh.  I need to limit the script to .c and .h for now.

Revision 2287 - Directory Listing - [select for diffs]
Modified Tue Dec 2 02:32:16 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2286
oops my script doesn't handle .m correctly

Revision 2286 - Directory Listing - [select for diffs]
Modified Tue Dec 2 02:24:40 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2285
$MidnightBSD$

Revision 2285 - Directory Listing - [select for diffs]
Modified Tue Dec 2 02:12:26 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2284
$MidnightBSD$

Revision 2284 - Directory Listing - [select for diffs]
Modified Tue Dec 2 02:09:12 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2283
merge changes with freebsd 7

Revision 2283 - Directory Listing - [select for diffs]
Modified Tue Dec 2 01:17:22 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2282
add newer raid controllers

Revision 2282 - Directory Listing - [select for diffs]
Modified Tue Dec 2 00:40:40 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2280
This commit was generated by cvs2svn to compensate for changes in r2281,
which included commits to RCS files with non-trunk default branches.
Revision 2280 - Directory Listing - [select for diffs]
Modified Tue Dec 2 00:29:04 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2278
This commit was generated by cvs2svn to compensate for changes in r2279,
which included commits to RCS files with non-trunk default branches.
Revision 2278 - Directory Listing - [select for diffs]
Modified Tue Dec 2 00:16:35 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2277
merge

Revision 2277 - Directory Listing - [select for diffs]
Modified Tue Dec 2 00:09:05 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2275
This commit was generated by cvs2svn to compensate for changes in r2276,
which included commits to RCS files with non-trunk default branches.
Revision 2275 - Directory Listing - [select for diffs]
Modified Tue Dec 2 00:03:27 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2273
This commit was generated by cvs2svn to compensate for changes in r2274,
which included commits to RCS files with non-trunk default branches.
Revision 2273 - Directory Listing - [select for diffs]
Modified Mon Dec 1 23:46:38 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2272
Make additional modifications to ata-chipset to syncronize with changes elsewhere in ata.  Temporarily back out the sata + cd patch we were using (for the most part) to see how stable this is without it.

Revision 2272 - Directory Listing - [select for diffs]
Modified Mon Dec 1 17:43:51 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2271
save wip

Revision 2271 - Directory Listing - [select for diffs]
Modified Mon Dec 1 17:26:22 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2270
support flush on raid

Revision 2270 - Directory Listing - [select for diffs]
Modified Mon Dec 1 17:24:27 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2269
add SMART fix whitespace and spelling use constants for magic values

Revision 2269 - Directory Listing - [select for diffs]
Modified Mon Dec 1 17:21:04 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2268
add hitatchi disk check

Revision 2268 - Directory Listing - [select for diffs]
Modified Mon Dec 1 16:14:54 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2267
merge new pci ids and fix a few prototypes.

Revision 2267 - Directory Listing - [select for diffs]
Modified Mon Dec 1 03:58:32 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2266
fxp sync

Revision 2266 - Directory Listing - [select for diffs]
Modified Sun Nov 30 20:35:02 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2265
Sync some changes from FreeBSD 7 with our ata

Revision 2265 - Directory Listing - [select for diffs]
Modified Sun Nov 30 20:07:43 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2263
This commit was generated by cvs2svn to compensate for changes in r2264,
which included commits to RCS files with non-trunk default branches.
Revision 2263 - Directory Listing - [select for diffs]
Modified Sun Nov 30 20:02:36 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2262
Sync with freebsd 7

Revision 2262 - Directory Listing - [select for diffs]
Modified Sun Nov 30 19:50:59 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2260
This commit was generated by cvs2svn to compensate for changes in r2261,
which included commits to RCS files with non-trunk default branches.
Revision 2260 - Directory Listing - [select for diffs]
Modified Sun Nov 30 19:50:29 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2259
sync with freebsd 7

Revision 2259 - Directory Listing - [select for diffs]
Modified Sun Nov 30 19:34:03 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2258
Sync hwpmc

Revision 2258 - Directory Listing - [select for diffs]
Modified Sun Nov 30 19:32:07 2008 UTC (15 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 2256
This commit was generated by cvs2svn to compensate for changes in r2257,
which included commits to RCS files with non-trunk default branches.
Revision 2256 - Directory Listing - [select for diffs]
Modified Sun Nov 30 16:27:37 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2255
Merge changes with freebsd 7

Revision 2255 - Directory Listing - [select for diffs]
Modified Sun Nov 30 16:26:43 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2254
remove miscommited files

Revision 2254 - Directory Listing - [select for diffs]
Modified Sun Nov 30 16:26:42 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2252
This commit was generated by cvs2svn to compensate for changes in r2253,
which included commits to RCS files with non-trunk default branches.
Revision 2252 - Directory Listing - [select for diffs]
Modified Sun Nov 30 16:26:20 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2251
Sync with freebsd 7

Revision 2251 - Directory Listing - [select for diffs]
Modified Sun Nov 30 16:15:45 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2250
merge

Revision 2250 - Directory Listing - [select for diffs]
Modified Sun Nov 30 16:10:29 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2249
cardbus sync

Revision 2249 - Directory Listing - [select for diffs]
Modified Sat Nov 29 22:35:57 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2247
This commit was generated by cvs2svn to compensate for changes in r2248,
which included commits to RCS files with non-trunk default branches.
Revision 2247 - Directory Listing - [select for diffs]
Modified Sat Nov 29 22:35:16 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2246
sync with freebsd 7

Revision 2246 - Directory Listing - [select for diffs]
Modified Sat Nov 29 22:34:17 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2245
merge

Revision 2245 - Directory Listing - [select for diffs]
Modified Sat Nov 29 22:11:33 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2244
zyd

Revision 2244 - Directory Listing - [select for diffs]
Modified Sat Nov 29 22:03:39 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2243
usb modems are neat

Revision 2243 - Directory Listing - [select for diffs]
Modified Sat Nov 29 21:09:39 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2242
merge

Revision 2242 - Directory Listing - [select for diffs]
Modified Sat Nov 29 19:10:51 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2241
merge

Revision 2241 - Directory Listing - [select for diffs]
Modified Sat Nov 29 17:53:46 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2240
Fix merge conflicts.

Revision 2240 - Directory Listing - [select for diffs]
Modified Sat Nov 29 17:28:21 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2238
This commit was generated by cvs2svn to compensate for changes in r2239,
which included commits to RCS files with non-trunk default branches.
Revision 2238 - Directory Listing - [select for diffs]
Modified Sat Nov 29 17:23:31 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2237
Add uark

Revision 2237 - Directory Listing - [select for diffs]
Modified Sat Nov 29 17:18:25 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2236
merge

Revision 2236 - Directory Listing - [select for diffs]
Modified Sat Nov 29 16:48:56 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2235
merge with new version

Revision 2235 - Directory Listing - [select for diffs]
Modified Sat Nov 29 16:44:45 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2234
Update for newer safe

Revision 2234 - Directory Listing - [select for diffs]
Modified Sat Nov 29 16:44:09 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2232
This commit was generated by cvs2svn to compensate for changes in r2233,
which included commits to RCS files with non-trunk default branches.
Revision 2232 - Directory Listing - [select for diffs]
Modified Sat Nov 29 16:42:00 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2231
add rum device

Revision 2231 - Directory Listing - [select for diffs]
Modified Sat Nov 29 16:29:35 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2230
add rum device

Revision 2230 - Directory Listing - [select for diffs]
Modified Sat Nov 29 16:28:48 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2229
Update the list of USB devices requiring special handling, etc.

Revision 2229 - Directory Listing - [select for diffs]
Modified Sat Nov 29 16:21:47 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2228
merge freebsd 7 changes.  Keep the apple mighty mouse hack

Revision 2228 - Directory Listing - [select for diffs]
Modified Sat Nov 29 16:16:09 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2227
merge enhancements

Revision 2227 - Directory Listing - [select for diffs]
Modified Sat Nov 29 16:07:31 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2226
merge enhancements

Revision 2226 - Directory Listing - [select for diffs]
Modified Fri Nov 28 17:10:39 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2224
merge

Revision 2224 - Directory Listing - [select for diffs]
Modified Fri Nov 28 16:40:56 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2222
This commit was generated by cvs2svn to compensate for changes in r2223,
which included commits to RCS files with non-trunk default branches.
Revision 2222 - Directory Listing - [select for diffs]
Modified Fri Nov 28 16:32:32 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2221
merge

Revision 2221 - Directory Listing - [select for diffs]
Modified Thu Nov 27 13:51:53 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2219
This commit was generated by cvs2svn to compensate for changes in r2220,
which included commits to RCS files with non-trunk default branches.
Revision 2219 - Directory Listing - [select for diffs]
Modified Thu Nov 27 13:46:27 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2218
merge

Revision 2218 - Directory Listing - [select for diffs]
Modified Thu Nov 27 13:41:57 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2217
merge new linuxolator

Revision 2217 - Directory Listing - [select for diffs]
Modified Wed Nov 26 22:11:53 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2215
This commit was generated by cvs2svn to compensate for changes in r2216,
which included commits to RCS files with non-trunk default branches.
Revision 2215 - Directory Listing - [select for diffs]
Modified Wed Nov 26 21:15:10 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2213
This commit was generated by cvs2svn to compensate for changes in r2214,
which included commits to RCS files with non-trunk default branches.
Revision 2213 - Directory Listing - [select for diffs]
Modified Wed Nov 26 21:13:30 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2212
merge

Revision 2212 - Directory Listing - [select for diffs]
Modified Wed Nov 26 19:00:32 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2211
merge

Revision 2211 - Directory Listing - [select for diffs]
Modified Wed Nov 26 18:59:53 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2209
This commit was generated by cvs2svn to compensate for changes in r2210,
which included commits to RCS files with non-trunk default branches.
Revision 2209 - Directory Listing - [select for diffs]
Modified Wed Nov 26 18:10:35 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2207
This commit was generated by cvs2svn to compensate for changes in r2208,
which included commits to RCS files with non-trunk default branches.
Revision 2207 - Directory Listing - [select for diffs]
Modified Wed Nov 26 18:10:13 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2206
update hifn

Revision 2206 - Directory Listing - [select for diffs]
Modified Wed Nov 26 17:55:47 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2205
blah.

Revision 2205 - Directory Listing - [select for diffs]
Modified Wed Nov 26 17:54:54 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2203
This commit was generated by cvs2svn to compensate for changes in r2204,
which included commits to RCS files with non-trunk default branches.
Revision 2203 - Directory Listing - [select for diffs]
Modified Wed Nov 26 17:49:16 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2202
Bring in the FreeBSD 7 intel em gigabit module

Revision 2202 - Directory Listing - [select for diffs]
Modified Wed Nov 26 17:20:26 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2201
merge

Revision 2201 - Directory Listing - [select for diffs]
Modified Wed Nov 26 15:45:16 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2199
This commit was generated by cvs2svn to compensate for changes in r2200,
which included commits to RCS files with non-trunk default branches.
Revision 2199 - Directory Listing - [select for diffs]
Modified Wed Nov 26 15:43:57 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2198
merge

Revision 2198 - Directory Listing - [select for diffs]
Modified Wed Nov 26 15:39:29 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2196
This commit was generated by cvs2svn to compensate for changes in r2197,
which included commits to RCS files with non-trunk default branches.
Revision 2196 - Directory Listing - [select for diffs]
Modified Wed Nov 26 15:33:26 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2195
merge

Revision 2195 - Directory Listing - [select for diffs]
Modified Wed Nov 26 15:32:39 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2193
This commit was generated by cvs2svn to compensate for changes in r2194,
which included commits to RCS files with non-trunk default branches.
Revision 2193 - Directory Listing - [select for diffs]
Modified Wed Nov 26 15:11:23 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2192
merge

Revision 2192 - Directory Listing - [select for diffs]
Modified Wed Nov 26 15:09:42 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2190
This commit was generated by cvs2svn to compensate for changes in r2191,
which included commits to RCS files with non-trunk default branches.
Revision 2190 - Directory Listing - [select for diffs]
Modified Wed Nov 26 00:30:55 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2188
This commit was generated by cvs2svn to compensate for changes in r2189,
which included commits to RCS files with non-trunk default branches.
Revision 2188 - Directory Listing - [select for diffs]
Modified Tue Nov 25 19:54:57 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2187
elmergo

Revision 2187 - Directory Listing - [select for diffs]
Modified Tue Nov 25 19:39:57 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2186
doh.. missed this

Revision 2186 - Directory Listing - [select for diffs]
Modified Tue Nov 25 19:31:00 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2185
we moved this... fix the makefile

Revision 2185 - Directory Listing - [select for diffs]
Modified Tue Nov 25 18:21:10 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2184
Update ath

Revision 2184 - Directory Listing - [select for diffs]
Modified Tue Nov 25 18:20:09 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2183
update ath

Revision 2183 - Directory Listing - [select for diffs]
Modified Tue Nov 25 18:19:40 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2182
Update ath_hal

Revision 2182 - Directory Listing - [select for diffs]
Modified Tue Nov 25 17:15:05 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2180
This commit was generated by cvs2svn to compensate for changes in r2181,
which included commits to RCS files with non-trunk default branches.
Revision 2180 - Directory Listing - [select for diffs]
Modified Tue Nov 25 17:13:35 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2179
sync intel gigabit ethernet

Revision 2179 - Directory Listing - [select for diffs]
Modified Tue Nov 25 17:10:10 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2177
remove files not needed

Revision 2177 - Directory Listing - [select for diffs]
Modified Tue Nov 25 17:09:12 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2176
*** empty log message ***

Revision 2176 - Directory Listing - [select for diffs]
Modified Tue Nov 25 17:07:17 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2175
merge and sync with freebsd 7

Revision 2175 - Directory Listing - [select for diffs]
Modified Tue Nov 25 17:05:34 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2173
This commit was generated by cvs2svn to compensate for changes in r2174,
which included commits to RCS files with non-trunk default branches.
Revision 2173 - Directory Listing - [select for diffs]
Modified Tue Nov 25 17:04:41 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2172
merge changes

Revision 2172 - Directory Listing - [select for diffs]
Modified Tue Nov 25 16:45:35 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2171
merge

Revision 2171 - Directory Listing - [select for diffs]
Modified Tue Nov 25 16:44:46 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2169
This commit was generated by cvs2svn to compensate for changes in r2170,
which included commits to RCS files with non-trunk default branches.
Revision 2169 - Directory Listing - [select for diffs]
Modified Tue Nov 25 16:40:44 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2168
*** empty log message ***

Revision 2168 - Directory Listing - [select for diffs]
Modified Tue Nov 25 16:37:36 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2166
This commit was generated by cvs2svn to compensate for changes in r2167,
which included commits to RCS files with non-trunk default branches.
Revision 2166 - Directory Listing - [select for diffs]
Modified Tue Nov 25 05:30:31 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2164
This commit was generated by cvs2svn to compensate for changes in r2165,
which included commits to RCS files with non-trunk default branches.
Revision 2164 - Directory Listing - [select for diffs]
Modified Tue Nov 25 05:25:28 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2162
This commit was generated by cvs2svn to compensate for changes in r2163,
which included commits to RCS files with non-trunk default branches.
Revision 2162 - Directory Listing - [select for diffs]
Modified Tue Nov 25 05:24:54 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2161
Correct some paths

Revision 2161 - Directory Listing - [select for diffs]
Modified Tue Nov 25 03:49:30 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2160
update to 0.5.8

Revision 2160 - Directory Listing - [select for diffs]
Modified Tue Nov 25 03:13:47 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2159
wireless can be fun

Revision 2159 - Directory Listing - [select for diffs]
Modified Tue Nov 25 02:06:45 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2158
The mount structures changed quite a bit.  Make some local adjustments

Revision 2158 - Directory Listing - [select for diffs]
Modified Tue Nov 25 02:06:06 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2157
merge changes

Revision 2157 - Directory Listing - [select for diffs]
Modified Tue Nov 25 01:31:17 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2156
merge

Revision 2156 - Directory Listing - [select for diffs]
Modified Tue Nov 25 01:29:25 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2155
tag

Revision 2155 - Directory Listing - [select for diffs]
Modified Tue Nov 25 01:28:47 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2154
sync

Revision 2154 - Directory Listing - [select for diffs]
Modified Tue Nov 25 01:16:24 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2153
Merge and tag

Revision 2153 - Directory Listing - [select for diffs]
Modified Mon Nov 24 22:44:34 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2151
screw it.

Revision 2151 - Directory Listing - [select for diffs]
Modified Mon Nov 24 14:24:13 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2150
$MidnightBSD$

Revision 2150 - Directory Listing - [select for diffs]
Modified Mon Nov 24 14:21:10 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2149
Switch Makefile to new world order.

Add legal information for intel wifi

Revision 2149 - Directory Listing - [select for diffs]
Modified Mon Nov 24 13:46:51 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2148
merge

Revision 2148 - Directory Listing - [select for diffs]
Modified Sun Nov 23 22:23:29 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2147
merge

Revision 2147 - Directory Listing - [select for diffs]
Modified Sun Nov 23 21:41:00 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2146
merge

Revision 2146 - Directory Listing - [select for diffs]
Modified Sun Nov 23 21:05:05 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2145
Temporary hack

Revision 2145 - Directory Listing - [select for diffs]
Modified Sun Nov 23 17:44:30 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2144
Merge changes.

Revision 2144 - Directory Listing - [select for diffs]
Modified Sun Nov 23 17:43:32 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2142
This commit was generated by cvs2svn to compensate for changes in r2143,
which included commits to RCS files with non-trunk default branches.
Revision 2142 - Directory Listing - [select for diffs]
Modified Sun Nov 23 16:18:42 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2141
merge changes.  support newer hardware

Revision 2141 - Directory Listing - [select for diffs]
Modified Sun Nov 23 16:18:03 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2140
merge

Revision 2140 - Directory Listing - [select for diffs]
Modified Sat Nov 22 18:41:31 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2139
merge

Revision 2139 - Directory Listing - [select for diffs]
Modified Sat Nov 22 17:34:20 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2137
This commit was generated by cvs2svn to compensate for changes in r2138,
which included commits to RCS files with non-trunk default branches.
Revision 2137 - Directory Listing - [select for diffs]
Modified Sat Nov 22 16:46:18 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2135
This commit was generated by cvs2svn to compensate for changes in r2136,
which included commits to RCS files with non-trunk default branches.
Revision 2135 - Directory Listing - [select for diffs]
Modified Sat Nov 22 16:05:47 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2133
This commit was generated by cvs2svn to compensate for changes in r2134,
which included commits to RCS files with non-trunk default branches.
Revision 2133 - Directory Listing - [select for diffs]
Modified Sat Nov 22 14:33:11 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2131
This commit was generated by cvs2svn to compensate for changes in r2132,
which included commits to RCS files with non-trunk default branches.
Revision 2131 - Directory Listing - [select for diffs]
Modified Fri Nov 21 22:32:26 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2129
This commit was generated by cvs2svn to compensate for changes in r2130,
which included commits to RCS files with non-trunk default branches.
Revision 2129 - Directory Listing - [select for diffs]
Modified Fri Nov 21 22:30:56 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2128
merge changes

Revision 2128 - Directory Listing - [select for diffs]
Modified Fri Nov 21 21:48:59 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2127
merge changes

Revision 2127 - Directory Listing - [select for diffs]
Modified Fri Nov 21 21:05:32 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2126
*** empty log message ***

Revision 2126 - Directory Listing - [select for diffs]
Modified Fri Nov 21 21:04:53 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2125
Merge changes.

Revision 2125 - Directory Listing - [select for diffs]
Modified Fri Nov 21 21:00:10 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2123
This commit was generated by cvs2svn to compensate for changes in r2124,
which included commits to RCS files with non-trunk default branches.
Revision 2123 - Directory Listing - [select for diffs]
Modified Fri Nov 21 14:50:09 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2121
This commit was generated by cvs2svn to compensate for changes in r2122,
which included commits to RCS files with non-trunk default branches.
Revision 2121 - Directory Listing - [select for diffs]
Modified Fri Nov 21 14:49:02 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2120
Update dhclient, merge changes to userland (ifconfig)

Revision 2120 - Directory Listing - [select for diffs]
Modified Thu Nov 20 19:55:58 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2119
Sync, $MidnightBSD$

Revision 2119 - Directory Listing - [select for diffs]
Modified Thu Nov 20 19:45:42 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2118
update man page

Revision 2118 - Directory Listing - [select for diffs]
Modified Thu Nov 20 19:34:42 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2117
It's magic.

Revision 2117 - Directory Listing - [select for diffs]
Modified Thu Nov 20 19:32:30 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2116
Switch to getsysctlbyname

Revision 2116 - Directory Listing - [select for diffs]
Modified Thu Nov 20 19:28:33 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2115
$MidnightBSD$

Revision 2115 - Directory Listing - [select for diffs]
Modified Thu Nov 20 19:26:40 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2114
$MidnightBSD$
switch to new world order

Revision 2114 - Directory Listing - [select for diffs]
Modified Thu Nov 20 19:24:58 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2113
update camcontrol

Revision 2113 - Directory Listing - [select for diffs]
Modified Thu Nov 20 18:44:30 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2112
Update pf

Revision 2112 - Directory Listing - [select for diffs]
Modified Thu Nov 20 18:10:23 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2111
Remove unsupported arch

Revision 2111 - Directory Listing - [select for diffs]
Modified Thu Nov 20 18:09:17 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2110
Merge

Revision 2110 - Directory Listing - [select for diffs]
Modified Thu Nov 20 18:06:56 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2108
This commit was generated by cvs2svn to compensate for changes in r2109,
which included commits to RCS files with non-trunk default branches.
Revision 2108 - Directory Listing - [select for diffs]
Modified Thu Nov 20 15:41:06 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2107
 ' ' sucks.

Revision 2107 - Directory Listing - [select for diffs]
Modified Thu Nov 20 15:31:28 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2106
Add flopen and expand_number. Bump library revision

Revision 2106 - Directory Listing - [select for diffs]
Modified Thu Nov 20 15:23:03 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2105
$MidnightBSD$

Revision 2105 - Directory Listing - [select for diffs]
Modified Wed Nov 19 23:40:41 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2104
Change uid testing.

Revision 2104 - Directory Listing - [select for diffs]
Modified Wed Nov 19 22:48:42 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2103
merge changes

Revision 2103 - Directory Listing - [select for diffs]
Modified Wed Nov 19 22:47:46 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2101
This commit was generated by cvs2svn to compensate for changes in r2102,
which included commits to RCS files with non-trunk default branches.
Revision 2101 - Directory Listing - [select for diffs]
Modified Wed Nov 19 22:13:33 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2099
This commit was generated by cvs2svn to compensate for changes in r2100,
which included commits to RCS files with non-trunk default branches.
Revision 2099 - Directory Listing - [select for diffs]
Modified Wed Nov 19 21:48:58 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2098
Fix build

Revision 2098 - Directory Listing - [select for diffs]
Modified Wed Nov 19 21:48:31 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2096
This commit was generated by cvs2svn to compensate for changes in r2097,
which included commits to RCS files with non-trunk default branches.
Revision 2096 - Directory Listing - [select for diffs]
Modified Wed Nov 19 21:09:18 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2095
Add man page for lmc

Revision 2095 - Directory Listing - [select for diffs]
Modified Wed Nov 19 20:59:51 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2094
Fix whitespace. Tabs were used by accident.

Revision 2094 - Directory Listing - [select for diffs]
Modified Wed Nov 19 20:57:32 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2093
Add /var entry for audit

Revision 2093 - Directory Listing - [select for diffs]
Modified Wed Nov 19 20:55:14 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2092
Add lmc to the include directories.

Revision 2092 - Directory Listing - [select for diffs]
Modified Tue Nov 18 19:32:41 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2090
This commit was generated by cvs2svn to compensate for changes in r2091,
which included commits to RCS files with non-trunk default branches.
Revision 2090 - Directory Listing - [select for diffs]
Modified Tue Nov 18 19:26:20 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2089
Work in progress, merge new devices, remove old devices.

Revision 2089 - Directory Listing - [select for diffs]
Modified Tue Nov 18 18:40:19 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2088
Merge changes.

Revision 2088 - Directory Listing - [select for diffs]
Modified Tue Nov 18 18:39:58 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2086
This commit was generated by cvs2svn to compensate for changes in r2087,
which included commits to RCS files with non-trunk default branches.
Revision 2086 - Directory Listing - [select for diffs]
Modified Tue Nov 18 17:38:01 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2084
This commit was generated by cvs2svn to compensate for changes in r2085,
which included commits to RCS files with non-trunk default branches.
Revision 2084 - Directory Listing - [select for diffs]
Modified Tue Nov 18 16:51:44 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2082
This commit was generated by cvs2svn to compensate for changes in r2083,
which included commits to RCS files with non-trunk default branches.
Revision 2082 - Directory Listing - [select for diffs]
Modified Tue Nov 18 16:32:23 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2080
This commit was generated by cvs2svn to compensate for changes in r2081,
which included commits to RCS files with non-trunk default branches.
Revision 2080 - Directory Listing - [select for diffs]
Modified Tue Nov 18 03:39:50 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2078
This commit was generated by cvs2svn to compensate for changes in r2079,
which included commits to RCS files with non-trunk default branches.
Revision 2078 - Directory Listing - [select for diffs]
Modified Tue Nov 18 02:07:38 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2076
This commit was generated by cvs2svn to compensate for changes in r2077,
which included commits to RCS files with non-trunk default branches.
Revision 2076 - Directory Listing - [select for diffs]
Modified Tue Nov 18 00:16:12 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2075
Doh.. \

Revision 2075 - Directory Listing - [select for diffs]
Modified Tue Nov 18 00:14:05 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2074
Fix missing \

Revision 2074 - Directory Listing - [select for diffs]
Modified Mon Nov 17 23:27:33 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2072
This commit was generated by cvs2svn to compensate for changes in r2073,
which included commits to RCS files with non-trunk default branches.
Revision 2072 - Directory Listing - [select for diffs]
Modified Mon Nov 17 23:25:29 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2071
Remove elf2exe, add other items

Revision 2071 - Directory Listing - [select for diffs]
Modified Mon Nov 17 19:00:18 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2070
doh!

Revision 2070 - Directory Listing - [select for diffs]
Modified Sun Nov 16 22:30:13 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2068
This commit was generated by cvs2svn to compensate for changes in r2069,
which included commits to RCS files with non-trunk default branches.
Revision 2068 - Directory Listing - [select for diffs]
Modified Sun Nov 16 22:16:40 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2067
Add nscd, make several other programs conditional

Revision 2067 - Directory Listing - [select for diffs]
Modified Sun Nov 16 22:15:39 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2065
This commit was generated by cvs2svn to compensate for changes in r2066,
which included commits to RCS files with non-trunk default branches.
Revision 2065 - Directory Listing - [select for diffs]
Modified Sun Nov 16 22:12:28 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2064
Add sade utility (connect to build).  This is a disk editor which duplicates some of the functionality of sysinstall so that we can remove it later.

Does not support gmirror, etc yet.  It's better than nothing.

Revision 2064 - Directory Listing - [select for diffs]
Modified Sun Nov 16 22:09:24 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2063
Remove usbd

Revision 2063 - Directory Listing - [select for diffs]
Modified Sun Nov 16 22:08:56 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2062
Add functions to replace usbd

Revision 2062 - Directory Listing - [select for diffs]
Modified Sun Nov 16 22:02:53 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2061
Remove vnconfig, add wlandebug

Revision 2061 - Directory Listing - [select for diffs]
Modified Sun Nov 16 22:02:27 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2059
This commit was generated by cvs2svn to compensate for changes in r2060,
which included commits to RCS files with non-trunk default branches.
Revision 2059 - Directory Listing - [select for diffs]
Modified Sun Nov 16 21:58:06 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2058
Work in progress... merge some of the newer utiltilties and Makefile style in

Revision 2058 - Directory Listing - [select for diffs]
Modified Sun Nov 16 21:57:03 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2056
This commit was generated by cvs2svn to compensate for changes in r2057,
which included commits to RCS files with non-trunk default branches.
Revision 2056 - Directory Listing - [select for diffs]
Modified Fri Nov 14 19:15:59 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2054
This commit was generated by cvs2svn to compensate for changes in r2055,
which included commits to RCS files with non-trunk default branches.
Revision 2054 - Directory Listing - [select for diffs]
Modified Fri Nov 14 14:48:50 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2052
This commit was generated by cvs2svn to compensate for changes in r2053,
which included commits to RCS files with non-trunk default branches.
Revision 2052 - Directory Listing - [select for diffs]
Modified Fri Nov 14 14:47:41 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2051
Merge changes

Revision 2051 - Directory Listing - [select for diffs]
Modified Thu Nov 13 21:06:04 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2049
netinet6 -> netipsec

Revision 2049 - Directory Listing - [select for diffs]
Modified Thu Nov 13 20:19:02 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2047
This commit was generated by cvs2svn to compensate for changes in r2048,
which included commits to RCS files with non-trunk default branches.
Revision 2047 - Directory Listing - [select for diffs]
Modified Thu Nov 13 17:22:14 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2046
New World Order

Revision 2046 - Directory Listing - [select for diffs]
Modified Thu Nov 13 15:09:38 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2044
This commit was generated by cvs2svn to compensate for changes in r2045,
which included commits to RCS files with non-trunk default branches.
Revision 2044 - Directory Listing - [select for diffs]
Modified Thu Nov 13 15:05:53 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2043
Disable SSE3, add libfirewire

Revision 2043 - Directory Listing - [select for diffs]
Modified Thu Nov 13 15:02:48 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2042
merge changes

Revision 2042 - Directory Listing - [select for diffs]
Modified Thu Nov 13 14:58:49 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2041
add libfirewire

Revision 2041 - Directory Listing - [select for diffs]
Modified Thu Nov 13 14:57:29 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2039
This commit was generated by cvs2svn to compensate for changes in r2040,
which included commits to RCS files with non-trunk default branches.
Revision 2039 - Directory Listing - [select for diffs]
Modified Thu Nov 13 14:53:29 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2038
*** empty log message ***

Revision 2038 - Directory Listing - [select for diffs]
Modified Thu Nov 13 14:38:31 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2036
This commit was generated by cvs2svn to compensate for changes in r2037,
which included commits to RCS files with non-trunk default branches.
Revision 2036 - Directory Listing - [select for diffs]
Modified Thu Nov 13 00:04:52 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2035
Merge changes.

Revision 2035 - Directory Listing - [select for diffs]
Modified Thu Nov 13 00:01:47 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2033
This commit was generated by cvs2svn to compensate for changes in r2034,
which included commits to RCS files with non-trunk default branches.
Revision 2033 - Directory Listing - [select for diffs]
Modified Wed Nov 12 14:24:33 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2031
This commit was generated by cvs2svn to compensate for changes in r2032,
which included commits to RCS files with non-trunk default branches.
Revision 2031 - Directory Listing - [select for diffs]
Modified Tue Nov 11 23:31:14 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2029
This commit was generated by cvs2svn to compensate for changes in r2030,
which included commits to RCS files with non-trunk default branches.
Revision 2029 - Directory Listing - [select for diffs]
Modified Tue Nov 11 23:09:30 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2028
Sync some of the man pages

Revision 2028 - Directory Listing - [select for diffs]
Modified Tue Nov 11 23:01:41 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2027
Clean up man pages and add extra link for times.1

Revision 2027 - Directory Listing - [select for diffs]
Modified Tue Nov 11 22:55:47 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2026
New world order

Revision 2026 - Directory Listing - [select for diffs]
Modified Tue Nov 11 22:53:47 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2025
$MidnightBSD$

Remove a header file we don't use anymore

Revision 2025 - Directory Listing - [select for diffs]
Modified Tue Nov 11 22:47:08 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2024
Where is xterm :)

Revision 2024 - Directory Listing - [select for diffs]
Modified Tue Nov 11 22:40:37 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2023
bsd.own.mk time

Revision 2023 - Directory Listing - [select for diffs]
Modified Tue Nov 11 22:38:38 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2022
New world order

Revision 2022 - Directory Listing - [select for diffs]
Modified Tue Nov 11 22:32:39 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2021
$MidnightBSD$

Revision 2021 - Directory Listing - [select for diffs]
Modified Tue Nov 11 22:31:19 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2020
$MidnightBSD$

Revision 2020 - Directory Listing - [select for diffs]
Modified Tue Nov 11 22:25:56 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2019
We don't do arm

Revision 2019 - Directory Listing - [select for diffs]
Modified Tue Nov 11 22:24:03 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2018
Simplify if statement

Revision 2018 - Directory Listing - [select for diffs]
Modified Tue Nov 11 22:08:20 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2016
This commit was generated by cvs2svn to compensate for changes in r2017,
which included commits to RCS files with non-trunk default branches.
Revision 2016 - Directory Listing - [select for diffs]
Modified Tue Nov 11 21:42:04 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2015
Oops.. .endif

Revision 2015 - Directory Listing - [select for diffs]
Modified Tue Nov 11 21:35:20 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2014
Sync mount, sunlabel, and umount

Revision 2014 - Directory Listing - [select for diffs]
Modified Tue Nov 11 21:31:57 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2013
Add iscsi device

Revision 2013 - Directory Listing - [select for diffs]
Modified Tue Nov 11 21:30:40 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2012
Add iScsi part 1 of 2.

Remove ip6fw since ipfw is going ipv6.

Revision 2012 - Directory Listing - [select for diffs]
Modified Tue Nov 11 21:29:37 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2011
Remove mca which was only used for ia64.

Add recoverdisk, a handy utility for hard drives and optical media.

Sync idmapd with freebsd 7.

Switch to the new world order.

Revision 2011 - Directory Listing - [select for diffs]
Modified Tue Nov 11 20:36:12 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2010
*** empty log message ***

Revision 2010 - Directory Listing - [select for diffs]
Modified Tue Nov 11 20:28:57 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2009
Deal with merge conflicts

Revision 2009 - Directory Listing - [select for diffs]
Modified Tue Nov 11 20:27:40 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2007
This commit was generated by cvs2svn to compensate for changes in r2008,
which included commits to RCS files with non-trunk default branches.
Revision 2007 - Directory Listing - [select for diffs]
Modified Tue Nov 11 20:17:50 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2006
Modernize rescue

Revision 2006 - Directory Listing - [select for diffs]
Modified Tue Nov 11 19:37:23 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2005
$MidnightBSD$, fix paths

Revision 2005 - Directory Listing - [select for diffs]
Modified Tue Nov 11 19:02:16 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2004
$MidnightBSD$, new world order

Revision 2004 - Directory Listing - [select for diffs]
Modified Tue Nov 11 17:37:15 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2003
Typo

Revision 2003 - Directory Listing - [select for diffs]
Modified Tue Nov 11 16:52:12 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2002
Fix typo

Revision 2002 - Directory Listing - [select for diffs]
Modified Tue Nov 11 16:49:48 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2001
new world order

Revision 2001 - Directory Listing - [select for diffs]
Modified Tue Nov 11 16:38:05 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 2000
 new world order

Revision 2000 - Directory Listing - [select for diffs]
Modified Tue Nov 11 16:00:04 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1999
Partially migrate to the new method

Revision 1999 - Directory Listing - [select for diffs]
Modified Tue Nov 11 15:56:59 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1998
Bring libdialog into the new world order.

Revision 1998 - Directory Listing - [select for diffs]
Modified Tue Nov 11 15:20:04 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1997
add fm

Revision 1997 - Directory Listing - [select for diffs]
Modified Tue Nov 11 15:19:22 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1996
Add zfs.h

Revision 1996 - Directory Listing - [select for diffs]
Modified Tue Nov 11 15:01:51 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1995
Fix one of the paths used for int types. As found on tinderbox

Revision 1995 - Directory Listing - [select for diffs]
Modified Tue Nov 11 02:11:33 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1994
Add compatibility files from opensolaris (cddl)

Revision 1994 - Directory Listing - [select for diffs]
Modified Tue Nov 11 00:39:51 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1993
Add the open solaris compatiblity libraries under cddl

Revision 1993 - Directory Listing - [select for diffs]
Modified Mon Nov 10 21:10:37 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1992
Alright my approach was flawed.  I can just define that we've got some of these functions now in config.h (from the new OpenSSL)

Revision 1992 - Directory Listing - [select for diffs]
Modified Mon Nov 10 20:05:19 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1991
Fix typo. That's what happens when I play WoW and commit at the same time.

Revision 1991 - Directory Listing - [select for diffs]
Modified Sun Nov 9 00:56:55 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1990
Attempt to fix the openssl bug with openssh.

Revision 1990 - Directory Listing - [select for diffs]
Modified Fri Nov 7 23:01:03 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1988
This commit was generated by cvs2svn to compensate for changes in r1989,
which included commits to RCS files with non-trunk default branches.
Revision 1988 - Directory Listing - [select for diffs]
Modified Fri Nov 7 22:54:55 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1987
Add gss related files.

Revision 1987 - Directory Listing - [select for diffs]
Modified Fri Nov 7 22:44:01 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1986
Add zfs and gss

Revision 1986 - Directory Listing - [select for diffs]
Modified Fri Nov 7 22:40:30 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1985
Add new directories for new geom layers, and gssapi.

Revision 1985 - Directory Listing - [select for diffs]
Modified Fri Nov 7 18:51:59 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1983
This commit was generated by cvs2svn to compensate for changes in r1984,
which included commits to RCS files with non-trunk default branches.
Revision 1983 - Directory Listing - [select for diffs]
Modified Fri Nov 7 18:38:40 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1982
Merge changes.

Revision 1982 - Directory Listing - [select for diffs]
Modified Fri Nov 7 17:13:51 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1980
This commit was generated by cvs2svn to compensate for changes in r1981,
which included commits to RCS files with non-trunk default branches.
Revision 1980 - Directory Listing - [select for diffs]
Modified Fri Nov 7 17:03:06 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1978
This commit was generated by cvs2svn to compensate for changes in r1979,
which included commits to RCS files with non-trunk default branches.
Revision 1978 - Directory Listing - [select for diffs]
Modified Fri Nov 7 16:49:01 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1976
This commit was generated by cvs2svn to compensate for changes in r1977,
which included commits to RCS files with non-trunk default branches.
Revision 1976 - Directory Listing - [select for diffs]
Modified Thu Nov 6 21:47:15 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1975
Merge changes.

Revision 1975 - Directory Listing - [select for diffs]
Modified Thu Nov 6 21:41:31 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1974
Newe world order time

Revision 1974 - Directory Listing - [select for diffs]
Modified Thu Nov 6 21:36:54 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1973
Switch to new world order.

Revision 1973 - Directory Listing - [select for diffs]
Modified Thu Nov 6 21:33:44 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1972
Merge changes.

Revision 1972 - Directory Listing - [select for diffs]
Modified Thu Nov 6 21:32:28 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1971
Merge changes

Revision 1971 - Directory Listing - [select for diffs]
Modified Mon Nov 3 23:06:12 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1970
Add more missing files.

Revision 1970 - Directory Listing - [select for diffs]
Modified Mon Nov 3 23:05:03 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1969
add MIDNIGHTBSD upgrade stuff

Revision 1969 - Directory Listing - [select for diffs]
Modified Mon Nov 3 23:04:24 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1968
Move us closer to compiling.

Revision 1968 - Directory Listing - [select for diffs]
Modified Mon Nov 3 18:26:10 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1967
Migrate to 0.9.8

Revision 1967 - Directory Listing - [select for diffs]
Modified Mon Nov 3 18:24:55 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1966
*** empty log message ***

Revision 1966 - Directory Listing - [select for diffs]
Modified Mon Nov 3 18:24:44 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1964
Migrate to openssl 0.9.8

Revision 1964 - Directory Listing - [select for diffs]
Modified Mon Nov 3 18:21:07 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1963
This commit was generated by cvs2svn to compensate for changes in r1963,
which included commits to RCS files with non-trunk default branches.
Revision 1963 - Directory Listing - [select for diffs]
Modified Mon Nov 3 18:21:07 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1962
Vendor import of OPENSSL 0.9.8e

Revision 1962 - Directory Listing - [select for diffs]
Modified Fri Oct 31 20:45:58 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1960
This commit was generated by cvs2svn to compensate for changes in r1961,
which included commits to RCS files with non-trunk default branches.
Revision 1960 - Directory Listing - [select for diffs]
Modified Fri Oct 31 20:36:16 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1959
Change over to the newer style for optional components.

Revision 1959 - Directory Listing - [select for diffs]
Modified Fri Oct 31 20:32:46 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1958
add librt and gssapi

Revision 1958 - Directory Listing - [select for diffs]
Modified Fri Oct 31 20:04:23 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1957
Merge changes.

Revision 1957 - Directory Listing - [select for diffs]
Modified Fri Oct 31 19:40:47 2008 UTC (15 years, 4 months ago) by ctriv
Original Path: trunk
Diff to previous 1956
add bsd.mport.options.mk to current.

Revision 1956 - Directory Listing - [select for diffs]
Modified Fri Oct 31 19:16:18 2008 UTC (15 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1955
Remove some old libs that we don't need anymore.

Revision 1955 - Directory Listing - [select for diffs]
Modified Thu Oct 30 22:06:56 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1953
This commit was generated by cvs2svn to compensate for changes in r1954,
which included commits to RCS files with non-trunk default branches.
Revision 1953 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:57:20 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1952
Merge changes.

Revision 1952 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:56:32 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1951
Remove arm

Revision 1951 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:52:49 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1950
merge changes

Revision 1950 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:51:25 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1949
Remove alpha

Revision 1949 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:50:10 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1948
Remove arm/ppc stuff

Revision 1948 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:47:52 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1947
Merge changes.

Revision 1947 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:38:23 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1946
Merge changes.

Revision 1946 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:37:58 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1945
merge changes

Revision 1945 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:32:40 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1944
Remove unsupported architectures.

Revision 1944 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:26:54 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1943
Merge changes.  Remove pc98, ia64, ppc support

Revision 1943 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:14:04 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1942
Merge changes.

Revision 1942 - Directory Listing - [select for diffs]
Modified Thu Oct 30 21:07:59 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1941
merge changes.

Revision 1941 - Directory Listing - [select for diffs]
Modified Thu Oct 30 20:59:40 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1940
merge changes.

Revision 1940 - Directory Listing - [select for diffs]
Modified Thu Oct 30 20:52:19 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1939
Merge changes

Revision 1939 - Directory Listing - [select for diffs]
Modified Thu Oct 30 20:39:11 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1935
This commit was generated by cvs2svn to compensate for changes in r1938,
which included commits to RCS files with non-trunk default branches.
Revision 1935 - Directory Listing - [select for diffs]
Modified Sun Oct 19 23:43:47 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1934
Continue the merge, sync FreeBSD changes while keeping enhancements

Revision 1934 - Directory Listing - [select for diffs]
Modified Fri Oct 17 17:20:42 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1933
We're having a lot of compliants about pkg_add failing which seem to be firewall related.  Drop the firewall during the firstboot script and bring it back up after fetching.

Revision 1933 - Directory Listing - [select for diffs]
Modified Wed Oct 15 19:50:54 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1932
gcc3 hack (for now)

Revision 1932 - Directory Listing - [select for diffs]
Modified Wed Oct 15 19:14:48 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1931
Fix paths.

Revision 1931 - Directory Listing - [select for diffs]
Modified Wed Oct 15 19:10:20 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1930
Fix some of the paths to files.

Revision 1930 - Directory Listing - [select for diffs]
Modified Wed Oct 15 18:56:14 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1929
Enter ZFS (userland)

Revision 1929 - Directory Listing - [select for diffs]
Modified Wed Oct 15 18:42:32 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1928
Enter the world of ZFS

Revision 1928 - Directory Listing - [select for diffs]
Modified Tue Oct 14 21:13:54 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1927
Sync relevant changes with freebsd

Revision 1927 - Directory Listing - [select for diffs]
Modified Sun Oct 12 22:26:11 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1926
what the hell.. let's throw in some preperation for zfs.

Revision 1926 - Directory Listing - [select for diffs]
Modified Tue Oct 7 01:56:49 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1925
deal with the ncurses issue and the order things are built.  Prepare to go forward with gcc update (part one of many)

Revision 1925 - Directory Listing - [select for diffs]
Modified Sun Oct 5 21:14:01 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1924
add showconfig target.

cleanup target option for kernel builds.

adjust list of targets.

Revision 1924 - Directory Listing - [select for diffs]
Modified Sun Oct 5 18:18:58 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1923
update procedure:

cd /usr/src; cvs update -d
cd share/mk; make install
cd ../../lib/ncurses
make  (you'll get errors)
make install
make
make install

Revision 1923 - Directory Listing - [select for diffs]
Modified Sun Oct 5 17:18:13 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1922
Add libncursesw and other libraries missing from this file.

Revision 1922 - Directory Listing - [select for diffs]
Modified Sun Oct 5 15:34:49 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1921
Make local changes to ncurses to get it work with MidnightBSD

Revision 1921 - Directory Listing - [select for diffs]
Modified Sun Oct 5 15:25:32 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1919
Add files excluded from ncurses 5.6 import.

Revision 1919 - Directory Listing - [select for diffs]
Modified Sun Oct 5 15:21:41 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1917
This commit was generated by cvs2svn to compensate for changes in r1918,
which included commits to RCS files with non-trunk default branches.
Revision 1917 - Directory Listing - [select for diffs]
Modified Fri Oct 3 18:43:38 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1914
We changed the directory name of the ncurses library.  Fix it here.

Revision 1914 - Directory Listing - [select for diffs]
Modified Thu Oct 2 17:05:38 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1913
*** empty log message ***

Revision 1913 - Directory Listing - [select for diffs]
Modified Thu Oct 2 16:56:52 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1912
update libthr

Revision 1912 - Directory Listing - [select for diffs]
Modified Thu Oct 2 16:50:25 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1911
Remove libpthread damn it

Revision 1911 - Directory Listing - [select for diffs]
Modified Thu Oct 2 16:47:39 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1910
 * Change default shared lib version.
 * Fix comment for ncurses.

Revision 1910 - Directory Listing - [select for diffs]
Modified Thu Oct 2 02:01:58 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1909
Move libpthread to libkse.  Prepare to set libthr as the default threading library.

Move libncurses to ncurses.  Prepare to import a newer version of ncurses.

Revision 1909 - Directory Listing - [select for diffs]
Modified Thu Oct 2 01:14:29 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1908
Remove arm, ia64, powerpc code

Revision 1908 - Directory Listing - [select for diffs]
Modified Wed Oct 1 21:11:18 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1907
Add default rules for ntpd and avahi (ipv4)

Revision 1907 - Directory Listing - [select for diffs]
Modified Wed Oct 1 16:44:42 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1906
*** empty log message ***

Revision 1906 - Directory Listing - [select for diffs]
Modified Wed Oct 1 16:41:49 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1905
Remove ppc

Revision 1905 - Directory Listing - [select for diffs]
Modified Wed Oct 1 16:41:15 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1904
Whack ia64, sync changes.

Revision 1904 - Directory Listing - [select for diffs]
Modified Wed Oct 1 16:38:05 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1903
sync with freebsd

Revision 1903 - Directory Listing - [select for diffs]
Modified Wed Oct 1 16:36:25 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1902
Update gdb

Revision 1902 - Directory Listing - [select for diffs]
Modified Wed Oct 1 16:28:07 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1901
remove arm and ia64 arch support.

Revision 1901 - Directory Listing - [select for diffs]
Modified Wed Oct 1 14:01:17 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1900
sync changes with freebsd.

Revision 1900 - Directory Listing - [select for diffs]
Modified Tue Sep 30 23:54:16 2008 UTC (15 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1899
update libkvm

Revision 1899 - Directory Listing - [select for diffs]
Modified Tue Sep 30 22:03:53 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1898
$MidnightBSD$ and - licenses

Revision 1898 - Directory Listing - [select for diffs]
Modified Tue Sep 30 22:00:04 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1897
Update libcrypt

Revision 1897 - Directory Listing - [select for diffs]
Modified Tue Sep 30 21:59:02 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1896
Update libmd

Revision 1896 - Directory Listing - [select for diffs]
Modified Tue Sep 30 21:37:54 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1895
Note quite there yet, but let's save my work :)

Revision 1895 - Directory Listing - [select for diffs]
Modified Tue Sep 30 15:15:05 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1894
Syn eli and label

Revision 1894 - Directory Listing - [select for diffs]
Modified Tue Sep 30 15:14:25 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1893
Sync geom

Revision 1893 - Directory Listing - [select for diffs]
Modified Tue Sep 30 14:43:02 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1892
Add geom multlipath

Revision 1892 - Directory Listing - [select for diffs]
Modified Tue Sep 30 05:46:03 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1891
Add geom journal kernel module.  This is a fs indepentant journaling mechanism

Revision 1891 - Directory Listing - [select for diffs]
Modified Tue Sep 30 04:45:38 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1890
Add kernel interface for geom cache

Revision 1890 - Directory Listing - [select for diffs]
Modified Tue Sep 30 04:44:37 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1883
$MidnightBSD$

Revision 1883 - Directory Listing - [select for diffs]
Modified Tue Sep 30 03:22:17 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1882
add legacy include so that old code works.

Revision 1882 - Directory Listing - [select for diffs]
Modified Tue Sep 30 03:08:19 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1881
Minimize the diff

Revision 1881 - Directory Listing - [select for diffs]
Modified Tue Sep 30 02:51:57 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1880
add gssapi

Revision 1880 - Directory Listing - [select for diffs]
Modified Tue Sep 30 02:47:45 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1879
*** empty log message ***

Revision 1879 - Directory Listing - [select for diffs]
Modified Tue Sep 30 02:45:46 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1878
$MidnightBSD$

Revision 1878 - Directory Listing - [select for diffs]
Modified Tue Sep 30 02:22:15 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1877
Add config(5) and template file.

Revision 1877 - Directory Listing - [select for diffs]
Modified Tue Sep 30 02:20:58 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1876
Merge changes in config(8) with FreeBSD

Revision 1876 - Directory Listing - [select for diffs]
Modified Tue Sep 30 02:18:57 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1875
GEOM_GPT was renamed GEOM_PART_GPT.  Correct in GENERIC kernel.

Revision 1875 - Directory Listing - [select for diffs]
Modified Tue Sep 30 02:14:47 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1874
add errno.c handles.c

Revision 1874 - Directory Listing - [select for diffs]
Modified Tue Sep 30 02:14:20 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1873
Update libefi

Revision 1873 - Directory Listing - [select for diffs]
Modified Tue Sep 30 02:12:25 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1872
Update EFI includes

Revision 1872 - Directory Listing - [select for diffs]
Modified Tue Sep 30 00:40:57 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1871
We removed prstats and portsinfo, remove the documentation

Revision 1871 - Directory Listing - [select for diffs]
Modified Tue Sep 30 00:39:30 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1870
We use bugzilla

Revision 1870 - Directory Listing - [select for diffs]
Modified Tue Sep 30 00:38:56 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1869
We don't use the freebsd ports info cgi

Revision 1869 - Directory Listing - [select for diffs]
Modified Tue Sep 30 00:28:07 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1868
Update the directions to go with the version

Revision 1868 - Directory Listing - [select for diffs]
Modified Tue Sep 30 00:26:20 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1867
We are no longer using GNU cpio.

Revision 1867 - Directory Listing - [select for diffs]
Modified Mon Sep 29 21:06:22 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1866
sys/posix4 doesn't exist anymore.  Setup for new world order.  This does not work entirely but it will soon.

Revision 1866 - Directory Listing - [select for diffs]
Modified Mon Sep 29 20:36:53 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1865
Sync make with freebsd

$MidnightBSD$

<limits.h> is necessary for using INT_MIN, so included it here
explicitly rather than relying on name space pollution to pull it in
for us.

No need to tell make to DTRT with "make love", just do it.
Also remove the 2002/08/31 bootstrapping aid for upgrades from
year old (mid-2001) systems.

Fix splitting into words of the .for expression to allow for
spaces in values.  Without this change, the following valid
call broke due to parsing of .MAKEFLAGS in bsd.symver.mk:

cd /usr/src/lib/libc && make -n DEBUG_FLAGS="-DFOO -DBAR"

If the special target .MAKEFILEDEPS exists, then enable the
"remaking makefiles" feature.  Otherwise, follow traditional Pmake behavior.

Revision 1865 - Directory Listing - [select for diffs]
Modified Mon Sep 29 12:32:37 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1863
Don't split large commands into multiple commands on a 512-byte
boundary but just fail on them. This prevents CSRF-like attacks,
when a web browser is used to access an ftp server.

Reported to OpenBSD by Maksymilian Arciemowicz <cxib@securityreason.com>

Also includes a command "500 Command too long" as part of a revised patch by Luk
e Mewburn.

http://web.nvd.nist.gov/view/vuln/detail;jsessionid=df97c3e18c5c787b6c316f886ad5
?execution=e1s1

CVE-2008-4247

Revision 1863 - Directory Listing - [select for diffs]
Modified Sun Sep 28 02:12:54 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1862
*** empty log message ***

Revision 1862 - Directory Listing - [select for diffs]
Modified Sat Sep 27 23:06:34 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1861
*** empty log message ***

Revision 1861 - Directory Listing - [select for diffs]
Modified Sat Sep 27 23:02:15 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1860
Sync with freebsd

Revision 1860 - Directory Listing - [select for diffs]
Modified Sat Sep 27 19:33:10 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1859
We moved posix4 along with several other things around.

Revision 1859 - Directory Listing - [select for diffs]
Modified Sat Sep 27 19:23:32 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1858
set visual to vi for now.  We don't have emacs built in

Revision 1858 - Directory Listing - [select for diffs]
Modified Sun Sep 21 15:36:57 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1857
*** empty log message ***

Revision 1857 - Directory Listing - [select for diffs]
Modified Sun Sep 21 15:26:17 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1856
*** empty log message ***

Revision 1856 - Directory Listing - [select for diffs]
Modified Sat Sep 20 00:44:24 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1855
sync with FreeBSD

Revision 1855 - Directory Listing - [select for diffs]
Modified Fri Sep 19 02:23:30 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1854
We don't do ia64.  Update etc

Revision 1854 - Directory Listing - [select for diffs]
Modified Fri Sep 19 02:15:13 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1853
Sync ipfilter with freebsd

Revision 1853 - Directory Listing - [select for diffs]
Modified Fri Sep 19 02:07:55 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1852
Update ath

Revision 1852 - Directory Listing - [select for diffs]
Modified Fri Sep 19 02:02:43 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1851
Remove files from the old version of acpica

Revision 1851 - Directory Listing - [select for diffs]
Modified Fri Sep 19 01:59:28 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1850
*** empty log message ***

Revision 1850 - Directory Listing - [select for diffs]
Modified Fri Sep 19 01:52:19 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1849
add wpi firmware

Revision 1849 - Directory Listing - [select for diffs]
Modified Wed Sep 17 02:32:40 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1848
add npe firmware (Intel)

Revision 1848 - Directory Listing - [select for diffs]
Modified Wed Sep 17 02:31:33 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1847
Add intel firmwares

Revision 1847 - Directory Listing - [select for diffs]
Modified Tue Sep 16 01:34:20 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1846
Sync with FreeBSD 7

Revision 1846 - Directory Listing - [select for diffs]
Modified Tue Sep 16 01:26:03 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1845
Remove outdated files.

Revision 1845 - Directory Listing - [select for diffs]
Modified Tue Sep 16 01:18:53 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1844
Sync with FreeBSD 7

Revision 1844 - Directory Listing - [select for diffs]
Modified Tue Sep 16 01:18:25 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1843
Sync with freebsd7

Revision 1843 - Directory Listing - [select for diffs]
Modified Tue Sep 16 00:56:46 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1842
Merge in gcc4 fixes

Revision 1842 - Directory Listing - [select for diffs]
Modified Tue Sep 16 00:50:12 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1841
Add Doxygen kernel documentation framework (was in src/sys/doc)

Revision 1841 - Directory Listing - [select for diffs]
Modified Tue Sep 16 00:39:38 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1840
We'll be moving this

Revision 1840 - Directory Listing - [select for diffs]
Modified Tue Sep 16 00:36:47 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1839
Remove coda

Revision 1839 - Directory Listing - [select for diffs]
Modified Tue Sep 16 00:36:07 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1838
Remove coda file system

Revision 1838 - Directory Listing - [select for diffs]
Modified Tue Sep 16 00:33:12 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1837
Sync with freebsd 7

Revision 1837 - Directory Listing - [select for diffs]
Modified Tue Sep 16 00:30:09 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1836
Sync with freebsd 7 changes.

Revision 1836 - Directory Listing - [select for diffs]
Modified Tue Sep 16 00:28:14 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1835
Add document describing quirks

Revision 1835 - Directory Listing - [select for diffs]
Modified Tue Sep 16 00:27:03 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1834
sync changes with FreeBSD 7

Revision 1834 - Directory Listing - [select for diffs]
Modified Tue Sep 16 00:24:59 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1833
Sync with FreeBSD 7 enhancements.

Revision 1833 - Directory Listing - [select for diffs]
Modified Tue Sep 16 00:23:39 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1832
Sync with enhancements from FreeBSD 7.

Revision 1832 - Directory Listing - [select for diffs]
Modified Sat Sep 13 01:51:15 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1831
sync changes from FreeBSD.

Revision 1831 - Directory Listing - [select for diffs]
Modified Sat Sep 13 01:34:12 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1830
update MAC

Revision 1830 - Directory Listing - [select for diffs]
Modified Sat Sep 13 01:26:21 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1829
*** empty log message ***

Revision 1829 - Directory Listing - [select for diffs]
Modified Sat Sep 13 01:19:32 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1828
add priv.h

Revision 1828 - Directory Listing - [select for diffs]
Modified Sat Sep 13 00:55:45 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1827
*** empty log message ***

Revision 1827 - Directory Listing - [select for diffs]
Modified Sat Sep 13 00:54:21 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1826
bring in freebsd changes.

Revision 1826 - Directory Listing - [select for diffs]
Modified Sat Sep 13 00:53:31 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1825
removing isdn 4 bsd

Revision 1825 - Directory Listing - [select for diffs]
Modified Sat Sep 13 00:52:31 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1824
Move these

Revision 1824 - Directory Listing - [select for diffs]
Modified Sat Sep 13 00:51:20 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1823
add from netbsd/freebsd

Revision 1823 - Directory Listing - [select for diffs]
Modified Sat Sep 13 00:50:45 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1822
rpc merge

Revision 1822 - Directory Listing - [select for diffs]
Modified Fri Sep 12 19:41:13 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1821
Bring in new tools

Revision 1821 - Directory Listing - [select for diffs]
Modified Fri Sep 12 19:40:13 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1820
Bring in ufs and vm changes from FreeBSD.

Revision 1820 - Directory Listing - [select for diffs]
Modified Fri Sep 12 17:18:57 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1819
Long options and updated man page for them.

Revision 1819 - Directory Listing - [select for diffs]
Modified Fri Sep 12 17:13:34 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1818
Fix pkg_info when specifying a remote package.

Revision 1818 - Directory Listing - [select for diffs]
Modified Fri Sep 12 17:10:02 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1817
Remove __P usage

Revision 1817 - Directory Listing - [select for diffs]
Modified Tue Sep 9 20:19:20 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1816
Add iso2img script.  Allows you to convert an install ISO to a flash friendly image.

This is under the beerware license.

Revision 1816 - Directory Listing - [select for diffs]
Modified Mon Sep 8 01:42:28 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1815
remove arm instructions

Revision 1815 - Directory Listing - [select for diffs]
Modified Mon Sep 8 01:41:18 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1814
Remove unsupported architectures.

Revision 1814 - Directory Listing - [select for diffs]
Modified Sun Sep 7 06:36:20 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1813
Run moused.. on desktops this is a good idea

Revision 1813 - Directory Listing - [select for diffs]
Modified Sun Sep 7 06:35:20 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1812
Enable default devfs system ruleset

Revision 1812 - Directory Listing - [select for diffs]
Modified Sun Sep 7 06:33:15 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1811
add some user friendly defaults.

Revision 1811 - Directory Listing - [select for diffs]
Modified Sun Sep 7 06:29:26 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1810
Add rules for all users to access cdroms, usb devices, usb scanners, and a few other misc devices.

Revision 1810 - Directory Listing - [select for diffs]
Modified Sun Sep 7 06:17:50 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1809
Remove old architectures we don't do

Revision 1809 - Directory Listing - [select for diffs]
Modified Fri Sep 5 19:02:59 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1806
Update nve(4) to support newer hardware.

Revision 1806 - Directory Listing - [select for diffs]
Modified Thu Sep 4 02:55:23 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1804
Improve reliability of nforce4 adapters:
  - When setting up a packet for transmit, if we the tx ring is over half
    full, kick the binary blob to force it to complete any pending tx
    completions.
  - In the watchdog routine, poke the binary blob to force it to flush any
    pending tx completions and only reset the chip if the blob doesn't
    complete any of them.

Altqify nve(4).

Obtained from FreeBSD.

Revision 1804 - Directory Listing - [select for diffs]
Modified Thu Sep 4 02:20:43 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1803
In case of an incoming ICMPv6 'Packet Too Big Message', there is an
insufficient check on the proposed new MTU for a path to the destination.

CVE-2008-3530

Revision 1803 - Directory Listing - [select for diffs]
Modified Thu Sep 4 02:12:13 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1802
amd64 swapgs local privilege escalation fix.  CVE-2008-3890

Revision 1802 - Directory Listing - [select for diffs]
Modified Wed Sep 3 02:23:05 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1801
Let's get dangerous

Revision 1801 - Directory Listing - [select for diffs]
Modified Wed Sep 3 02:13:47 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1800
add openbsm files

Revision 1800 - Directory Listing - [select for diffs]
Modified Wed Sep 3 02:11:52 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1799
$MidnightBSD$

Revision 1799 - Directory Listing - [select for diffs]
Modified Wed Sep 3 02:10:25 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1798
*** empty log message ***

Revision 1798 - Directory Listing - [select for diffs]
Modified Wed Sep 3 02:01:51 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1797
add additional openbsm files.

Revision 1797 - Directory Listing - [select for diffs]
Modified Wed Sep 3 01:58:43 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1796
add libbsm

Revision 1796 - Directory Listing - [select for diffs]
Modified Tue Sep 2 05:33:28 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1795
Connect progress to the build.

Revision 1795 - Directory Listing - [select for diffs]
Modified Tue Sep 2 05:29:39 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1794
Add progress(1) from NetBSD.

progress(1) is a standalone progress bar similar to the one in lukemftp.  It is suitable for measu
ring input to arbitrary pipes.

You can use this to create progress bars in scripts, etc.

Revision 1794 - Directory Listing - [select for diffs]
Modified Tue Sep 2 02:02:36 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1793
sysinstall, firstboot, openbsm import, src/release 3 isos

Revision 1793 - Directory Listing - [select for diffs]
Modified Tue Sep 2 01:55:36 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1792
Switch to 3 disc iso setup like 0.2.1

Revision 1792 - Directory Listing - [select for diffs]
Modified Tue Sep 2 01:45:29 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1791
Update the package split to sync with 0.2.1

Revision 1791 - Directory Listing - [select for diffs]
Modified Tue Sep 2 01:42:10 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1790
Remove unsupported architectures.

Add some of the customizations used for 0.2.1. Fix distfiles directory name. 0.3 :)

Revision 1790 - Directory Listing - [select for diffs]
Modified Tue Sep 2 01:33:17 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1789
Add kde/kdm and gnustep + slim + windowmaker setup

Revision 1789 - Directory Listing - [select for diffs]
Modified Tue Sep 2 01:30:29 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1788
Bring in fixes found during 0.2 snafu

Revision 1788 - Directory Listing - [select for diffs]
Modified Tue Sep 2 01:26:26 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1786
add install/upgrade instructions

Revision 1786 - Directory Listing - [select for diffs]
Modified Tue Sep 2 01:19:33 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1785
This commit was generated by cvs2svn to compensate for changes in r1785,
which included commits to RCS files with non-trunk default branches.
Revision 1785 - Directory Listing - [select for diffs]
Modified Tue Sep 2 01:19:33 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1784
Import OpenBSM

Revision 1784 - Directory Listing - [select for diffs]
Modified Tue Sep 2 01:07:01 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1783
Remove gnu tar.  We've been using bsdtar for awhile

Revision 1783 - Directory Listing - [select for diffs]
Modified Tue Sep 2 01:04:01 2008 UTC (15 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1764
fix this

Revision 1764 - Directory Listing - [select for diffs]
Modified Mon Aug 25 02:48:04 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1763
Increase max length

Revision 1763 - Directory Listing - [select for diffs]
Modified Mon Aug 25 02:34:28 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1762
Remove non supported architectures.

We're not using gnu cpio anymore.

Revision 1762 - Directory Listing - [select for diffs]
Modified Mon Aug 25 02:30:50 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1761
update for 2.8.7

Revision 1761 - Directory Listing - [select for diffs]
Modified Mon Aug 25 02:30:29 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1760
update for sdiff 2.8.7

Revision 1760 - Directory Listing - [select for diffs]
Modified Mon Aug 25 02:28:50 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1759
update for diff3 2.8.7

Revision 1759 - Directory Listing - [select for diffs]
Modified Mon Aug 25 02:26:52 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1758
update for diff 2.8.7

Revision 1758 - Directory Listing - [select for diffs]
Modified Mon Aug 25 02:07:29 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1756
Remove the old version.

Add new config.h (generated)

Revision 1756 - Directory Listing - [select for diffs]
Modified Mon Aug 25 01:59:52 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1754
This commit was generated by cvs2svn to compensate for changes in r1755,
which included commits to RCS files with non-trunk default branches.
Revision 1754 - Directory Listing - [select for diffs]
Modified Sun Aug 24 03:27:55 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1753
Clean up manpage

Revision 1753 - Directory Listing - [select for diffs]
Modified Sun Aug 24 00:12:26 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1752
remove the freebsd develpers from the maintainer list.  We're on our own.

We should adjust the various src tree MAINTAINER areas eventually.

Revision 1752 - Directory Listing - [select for diffs]
Modified Sun Aug 17 03:56:12 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1751
Add batt, a rudimentary command to check the battery life on systems including batteries (typically laptops) that report via ACPI.

This command only reports information visible by sysctl.

Revision 1751 - Directory Listing - [select for diffs]
Modified Sun Aug 17 03:26:36 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1750
Add mined.

Revision 1750 - Directory Listing - [select for diffs]
Modified Sun Aug 17 03:13:54 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1749
Add Matt Dillon's notty program.

Revision 1749 - Directory Listing - [select for diffs]
Modified Sun Aug 17 03:04:22 2008 UTC (15 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1748
Bring in changes from DragonFly to MidnightBSD version of cpdup.

Update to 1.11 (previous version 1.09).

This includes some improvements to the multithreaded code as well as fixes for the protocol.  As older versions are not compatible, it's important to run the same versions.  This should work with DragonFly 2.0's cpdup.

Revision 1748 - Directory Listing - [select for diffs]
Modified Thu Jul 24 01:30:45 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1746
Add DragonFly 2.0, MidnightBSD 0.1 and 0.1.1 to family tree.

Revision 1746 - Directory Listing - [select for diffs]
Modified Wed Jul 16 03:38:30 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1741
Add os to user agent for libfetch.  We'll be able to track that it's our users easier.

Revision 1741 - Directory Listing - [select for diffs]
Modified Sat Jul 12 18:42:50 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1739
Fix a security issue with yacc.

Obtained from DragonFly.

Revision 1739 - Directory Listing - [select for diffs]
Modified Fri Jul 11 23:40:39 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1738
Add a default resolv.conf.  This will set some DNS servers for systems not using dhcp, etc.  We need to make /etc writable on the live cd in reality.  This is a stop-gap.

This uses OpenDNS servers.  My previous live cds used my own DNS servers, but I've since turned off recursion for security reasons.

Revision 1738 - Directory Listing - [select for diffs]
Modified Fri Jul 11 23:26:03 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1735
Remove source address option (port hard coding)  as this has proven to be bad.

Revision 1735 - Directory Listing - [select for diffs]
Modified Thu Jul 10 20:31:51 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1734
Spell pidfile "correctly"

Revision 1734 - Directory Listing - [select for diffs]
Modified Thu Jul 10 03:49:02 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1733
bind-9.4.2-P1 security update

Revision 1733 - Directory Listing - [select for diffs]
Modified Thu Jul 10 03:03:20 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1732
Fix off by one error.

Revision 1732 - Directory Listing - [select for diffs]
Modified Wed Jul 9 19:00:47 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1731
Sync with FreeBSD CURRENT.

$MidnightBSD$

Revision 1731 - Directory Listing - [select for diffs]
Modified Wed Jul 9 18:57:21 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1730
Merge in changes from FreeBSD CURRENT and Dragonfly

Revision 1730 - Directory Listing - [select for diffs]
Modified Mon Jul 7 23:52:55 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1728
Remove pcnfsd.  We don't have this port and it's ancient.

Revision 1728 - Directory Listing - [select for diffs]
Modified Fri Jul 4 00:09:32 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1727
Mark current as 0.3 for man pages.

Revision 1727 - Directory Listing - [select for diffs]
Modified Fri Jul 4 00:07:14 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1724
Bump MidnightBSD_version

pcc, bin/sh, msk, ata changes, ...

Revision 1724 - Directory Listing - [select for diffs]
Modified Thu Jul 3 23:59:13 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1723
Mention pcc fix.

Revision 1723 - Directory Listing - [select for diffs]
Modified Thu Jul 3 23:57:48 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1721
apply the DESTDIR= patch to CURRENT which fixes making live cds

Revision 1721 - Directory Listing - [select for diffs]
Modified Thu Jul 3 23:44:06 2008 UTC (15 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1719
Fix bug 128.

Revision 1719 - Directory Listing - [select for diffs]
Modified Tue Jul 1 07:45:59 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1718
Add additional intel, nvidia, and amd parts.  The intel device using 0x28508086 is an ICH8 mobile ultra ata controller, but I'm not sure what identifier to use with it.  It is a santa rosa 2850 controller.  Some of these ids are from FreeBSD 6.3 (Soren and other contributors).

Revision 1718 - Directory Listing - [select for diffs]
Modified Tue Jul 1 07:12:41 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1717
Add pci id for my Yukon card.

Revision 1717 - Directory Listing - [select for diffs]
Modified Tue Jul 1 04:20:23 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1716
Add msk.4 for recent msk inclusion.

Revision 1716 - Directory Listing - [select for diffs]
Modified Tue Jul 1 01:07:17 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1715
add phk macros.  Apparently I forgot this.

Revision 1715 - Directory Listing - [select for diffs]
Modified Tue Jul 1 00:57:34 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1714
We added this when working on msk.  However, it's not currently used.  This will require additional changes to get pciE/pci-x

Revision 1714 - Directory Listing - [select for diffs]
Modified Tue Jul 1 00:55:35 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1713
Add msk

Revision 1713 - Directory Listing - [select for diffs]
Modified Tue Jul 1 00:53:50 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1709
add msk

Revision 1709 - Directory Listing - [select for diffs]
Modified Tue Jul 1 00:25:15 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1705
Bring in compatibily hack.

Revision 1705 - Directory Listing - [select for diffs]
Modified Mon Jun 30 05:29:05 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1704
Add 3 more PCI ids for fxp.

Revision 1704 - Directory Listing - [select for diffs]
Modified Mon Jun 30 04:47:30 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1703
Use correct date syntax for copyrights.  I'm not certain on the legality of using the project name there.  I've heard mixed things.  We'll stick with this
until we can find out.

Revision 1703 - Directory Listing - [select for diffs]
Modified Mon Jun 30 04:41:08 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1702
Move the $MidnightBSD$ in a more logical place.

Revision 1702 - Directory Listing - [select for diffs]
Modified Mon Jun 30 03:20:01 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1701
use owner name and group name instead of uid and gid.

Allow suppresion of the header with -q

Revision 1701 - Directory Listing - [select for diffs]
Modified Mon Jun 30 03:07:46 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1700
Fix comments.

Revision 1700 - Directory Listing - [select for diffs]
Modified Mon Jun 30 03:06:22 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1699
Stop building with encryption for RELEASE_CRUNCH (rescue media) and keep WARNS 2 in the process.

Revision 1699 - Directory Listing - [select for diffs]
Modified Mon Jun 30 03:04:11 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1698
while(0); -> while (0) in multiline macro.

Revision 1698 - Directory Listing - [select for diffs]
Modified Mon Jun 30 03:02:14 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1697
Use standard section name.

Revision 1697 - Directory Listing - [select for diffs]
Modified Mon Jun 30 02:55:21 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1696
Tweak man page

Revision 1696 - Directory Listing - [select for diffs]
Modified Mon Jun 30 02:52:37 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1695
Remove maintainer we don't want

Revision 1695 - Directory Listing - [select for diffs]
Modified Mon Jun 30 02:45:42 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1694
Add extensions to the standard to the man page.

Don't reset DST computed by strptime()

Obtained from: FreeBSD

Revision 1694 - Directory Listing - [select for diffs]
Modified Mon Jun 30 02:39:27 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1693
Correct a bug where the system malloc isn't used and a local one is instead.

Revision 1693 - Directory Listing - [select for diffs]
Modified Mon Jun 30 02:36:17 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1692
Add cpdup to man page.

Revision 1692 - Directory Listing - [select for diffs]
Modified Mon Jun 30 02:34:58 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1691
Aye.  I had l flag in there twice.

Revision 1691 - Directory Listing - [select for diffs]
Modified Mon Jun 30 02:32:07 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1690
Fix compatibility section.

Revision 1690 - Directory Listing - [select for diffs]
Modified Mon Jun 30 02:20:49 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1689
Oops.  Fix the order of options.

Revision 1689 - Directory Listing - [select for diffs]
Modified Mon Jun 30 02:20:01 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1688
Syncronize some changes with FreeBSD.

Make -a map to -RpP

prevent statistics from overflowing, avoid division by zero, etc.

hold copied counter in off_t

Update man page with some of these changes.

Report any bugs to me with this change.

Revision 1688 - Directory Listing - [select for diffs]
Modified Mon Jun 30 01:34:02 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1687
oops forgot this

Revision 1687 - Directory Listing - [select for diffs]
Modified Mon Jun 30 01:30:53 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1686
Mention umask(2) when first referring to it.

Revision 1686 - Directory Listing - [select for diffs]
Modified Mon Jun 30 01:16:47 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1685
Make chflags(1) more chmod(1) like.

Add -v to print file names as they are processed and -vv to print flag names as well.

Add -f to ignore failures.

Obtained from FreeBSD CURRENT.  Submitted to them by Ighighi at gmail.com

Revision 1685 - Directory Listing - [select for diffs]
Modified Mon Jun 30 00:49:38 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1684
Fix bugs with arithmatic expansion $((...)) was truncated to type int.
Change the type for arithmatic expansion to intmax_t on all architectures.  SUSv3 requires type long, but allows for larger values.

This improves compability with other shells such as bash, zsh and NetBSD's sh.

Expand $LINENO to the current line number.  (SUSv3)
This fixes stupid autotools scripts.  (i'm looking at you graphviz)

Merged from FreeBSD CURRENT.

Revision 1684 - Directory Listing - [select for diffs]
Modified Mon Jun 30 00:40:10 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1683
Merge changes from FreeBSD and NetBSD.

Support for command -v and -V
Fixes for erre option
A fix for a crash caused by SIGINT
POSIX compliant set +o output
A fix for unalias' exit code.
Man page updates.

Code cleanup, WANRS 3

Revision 1683 - Directory Listing - [select for diffs]
Modified Sat Jun 28 18:24:33 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1681
Increase timeout from 5 to 10 seconds.  This is an arbritrary value and found to be too short on SATA disks for certain operations.  (moving bad blocks for instance)

This might also help with write errors in virtual machines.

Revision 1681 - Directory Listing - [select for diffs]
Modified Fri Jun 27 16:59:34 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1678
Switch to glabel version of cdrom device.  This should allow more flexability with booting off of USB and SCSI cdroms.

Revision 1678 - Directory Listing - [select for diffs]
Modified Fri Jun 27 16:34:34 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1677
Add atheros wireless NICs to GENERIC

Revision 1677 - Directory Listing - [select for diffs]
Modified Fri Jun 27 16:33:36 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1676
Add atheros wireless NICs

Revision 1676 - Directory Listing - [select for diffs]
Modified Fri Jun 27 16:31:58 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1675
enable atheros wireless NICs.

Revision 1675 - Directory Listing - [select for diffs]
Modified Fri Jun 27 16:28:38 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1674
Move AHC and AHD options so they are near the drivers.

Enable firmware(9).

Enable WEP and WPA in kernel.

Fix whitespace problem.  For options entries use space and tab not double tab.

Revision 1674 - Directory Listing - [select for diffs]
Modified Fri Jun 27 16:25:01 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1673
Enable WEP, WPA in kernel.  Enable firmware(9).
Adjust whitespace to keep SMP and apic together.

Revision 1673 - Directory Listing - [select for diffs]
Modified Fri Jun 27 16:20:49 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1672
Add an extra ICH8 controller commonly used on Intel iMacs.  (core 2 duo black and silver)

Revision 1672 - Directory Listing - [select for diffs]
Modified Fri Jun 27 16:16:44 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1670
Document recent changes

Revision 1670 - Directory Listing - [select for diffs]
Modified Fri Jun 27 16:12:36 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1669
Correct path to pcc

Revision 1669 - Directory Listing - [select for diffs]
Modified Fri Jun 27 16:11:59 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1662
Connect pcc to the build.

Revision 1662 - Directory Listing - [select for diffs]
Modified Wed Jun 25 20:17:31 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1661
Add cpufreq(4) and GEOM_LABEL aka GLABEL to GENERIC on i386 and amd64.

cpufreq works with powerd which is already enabled on systems without ACPI support for CPU frequency using several chipsets (intel).  This may cause problems for some people which might require an install option for powerd.  This needs testing.

glabel allows one to name disks and reference them in dev by that name instead of their normal designation like acd0 or ad0s2d.  By adding this to generic, we can easily make a live cd that works on more types of CDROMs.  FreeBSD is also moving in this direction for other reasons.

Until the latter can be tested on sparc64, I'll keep it out of generic.  We don't support sun style labels right now anyway.

Revision 1661 - Directory Listing - [select for diffs]
Modified Wed Jun 25 19:49:04 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1657
Install pcc into /usr/bin /usr/libexec.  Do not install man pages as they conflict with gcc equivalants.

Programs installed are pcc, pccom and pccp.

Revision 1657 - Directory Listing - [select for diffs]
Modified Sun Jun 15 01:46:38 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1656
Bump the MidnightBSD version now that RELENG_0_2 has been created.

Revision 1656 - Directory Listing - [select for diffs]
Modified Sat Jun 14 21:14:37 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1650
Identify as MidnightBSD in the enviornment.

Revision 1650 - Directory Listing - [select for diffs]
Modified Fri Jun 6 01:45:49 2008 UTC (15 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1649
Move unlock instructions

Revision 1649 - Directory Listing - [select for diffs]
Modified Mon Jun 2 04:35:16 2008 UTC (15 years, 9 months ago) by archite
Original Path: trunk
Diff to previous 1648
Fixing path for X11 binary files in order to allow ssh-add to find the
askpass utility.

Revision 1648 - Directory Listing - [select for diffs]
Modified Fri May 30 22:50:50 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1647
apparently cut and sort are mia in make release as well.

Revision 1647 - Directory Listing - [select for diffs]
Modified Fri May 30 20:28:33 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1646
Specify path for printf.  This is not the ideal solution.

Revision 1646 - Directory Listing - [select for diffs]
Modified Fri May 30 13:28:15 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1645
Remove enterprise.midnightbsd.org ftp server.  Add isc and allbsd mirrors.

Revision 1645 - Directory Listing - [select for diffs]
Modified Thu May 29 20:50:14 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1644
Somehow we screwed up the label steps.  Let's back that out and see if we can narrow it down to this file.

Revision 1644 - Directory Listing - [select for diffs]
Modified Wed May 28 22:06:49 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1643
tag, remove alpha bits.

Revision 1643 - Directory Listing - [select for diffs]
Modified Wed May 28 22:03:33 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1642
We did the same steps for this verison.

Revision 1642 - Directory Listing - [select for diffs]
Modified Wed May 28 22:02:57 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1640
sendmail 8.14.3

Revision 1640 - Directory Listing - [select for diffs]
Modified Wed May 28 21:04:01 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1638
This commit was generated by cvs2svn to compensate for changes in r1639,
which included commits to RCS files with non-trunk default branches.
Revision 1638 - Directory Listing - [select for diffs]
Modified Fri May 23 21:09:55 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1637
Add comment about source code.

Revision 1637 - Directory Listing - [select for diffs]
Modified Fri May 23 20:23:49 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1636
Break up buildiso into two targets.  This will allow us to make modifications to the environment manually before creating the tarballs we're extracting on md devices. (package installation?)

Revision 1636 - Directory Listing - [select for diffs]
Modified Fri May 23 20:19:13 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1635
Move the tar stuff into a start command and make this a little more rcNG like.

Revision 1635 - Directory Listing - [select for diffs]
Modified Fri May 23 20:09:01 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1634
add noatime option to md devices.

Revision 1634 - Directory Listing - [select for diffs]
Modified Fri May 23 20:05:48 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1633
Add custom hosts file.

Modify rc.conf so that it tries to initialize various network interfaces using dhcp.

Revision 1633 - Directory Listing - [select for diffs]
Modified Thu May 22 23:02:09 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1632
Let's fix this bloody thing

Revision 1632 - Directory Listing - [select for diffs]
Modified Thu May 22 22:43:56 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1631
Let's get the dumb script running.

Revision 1631 - Directory Listing - [select for diffs]
Modified Thu May 22 21:38:22 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1630
Fine, it's a directory.

Revision 1630 - Directory Listing - [select for diffs]
Modified Thu May 22 21:31:07 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1629
I tried to type but nothing happened.

Revision 1629 - Directory Listing - [select for diffs]
Modified Thu May 22 20:47:40 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1628
Add some comments.

Delete /var/empty as it's created automagically and causing a tar extract error when we boot up.

Revision 1628 - Directory Listing - [select for diffs]
Modified Thu May 22 20:42:51 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1627
SHouldn't matter, but let's be consistent.

Revision 1627 - Directory Listing - [select for diffs]
Modified Thu May 22 20:38:15 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1626
Get explicit about paths.

Revision 1626 - Directory Listing - [select for diffs]
Modified Thu May 22 20:35:43 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1625
add a /root md.

Add the livecd rc.d script to extract into them.

Revision 1625 - Directory Listing - [select for diffs]
Modified Thu May 22 20:31:06 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1624
Disable several services that we don't need on a live cd.

Enable the livecd script (forthcoming)

Revision 1624 - Directory Listing - [select for diffs]
Modified Thu May 22 20:27:34 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1623
Remove firstboot script.  Create tarballs of /var, /usr/local/etc and /root so we can extract them onto the md device(s).

Revision 1623 - Directory Listing - [select for diffs]
Modified Thu May 22 20:24:02 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1622
Make ISOROOT overidable.

Revision 1622 - Directory Listing - [select for diffs]
Modified Thu May 22 20:23:37 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1621
set autoboot delay.

Revision 1621 - Directory Listing - [select for diffs]
Modified Mon May 19 04:54:36 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1620
Fix warning

Revision 1620 - Directory Listing - [select for diffs]
Modified Mon May 19 04:53:44 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1619
Fix typo

Revision 1619 - Directory Listing - [select for diffs]
Modified Sun May 18 18:12:27 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1618
apparently we're still setting this and i need to find a reason, but unbreak the world.

Revision 1618 - Directory Listing - [select for diffs]
Modified Sun May 18 17:46:08 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1617
add locks around so->so_pcb checks.

Revision 1617 - Directory Listing - [select for diffs]
Modified Sun May 18 17:24:16 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1616
Add additional sanity checks.  Correct URL to paper.

Revision 1616 - Directory Listing - [select for diffs]
Modified Sun May 18 17:12:11 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1615
Part of a pending change to ip_output.c

Revision 1615 - Directory Listing - [select for diffs]
Modified Sun May 18 17:11:22 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1614
Part of a semi-complete change to ip_output.

Revision 1614 - Directory Listing - [select for diffs]
Modified Sat May 17 18:03:08 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1613
In ip_ctloutput(), check for a NULL inpcb pointer before dereferencing,
as this can occur with TCP if protocol-layer socket options are set or
queried after the connection has closed.  There are still races
associated with ip_ctloutput() and connection close with TCP, corrected
in HEAD via a more comprehensive set of changes, but this fixes the
trivial panic reported on several occasions.

Obtained from: FreeBSD

Revision 1613 - Directory Listing - [select for diffs]
Modified Sat May 17 18:00:36 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1612
Add a missing check for errors.

Revision 1612 - Directory Listing - [select for diffs]
Modified Sat May 17 16:00:54 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1611
ANSIfy.  Remove an unneeded NULL check.

Revision 1611 - Directory Listing - [select for diffs]
Modified Sat May 17 15:44:43 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1610
$MidnightBSD$

Revision 1610 - Directory Listing - [select for diffs]
Modified Sat May 17 15:43:26 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1609
Adjust window scaling like we did for tcp_syncache.c

Revision 1609 - Directory Listing - [select for diffs]
Modified Sat May 17 06:47:35 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1608
$MidnightBSD$

- Prefer clock_gettime(2) over gettimeofday(2) and use CLOCK_MONOTONIC
as it is only used to track elapsed time.[1]
- Fix compiler warnings and style(9) bugs.

consume kld_isloaded(3).

  Fix a (very) longstanding bug in moused(8) affecting high-resolution
    rodents when linear acceleration (-a) was enabled with a <1 value to
    slow them down.

    Previously, rounding errors would eat small movements so the mouse
    had to be moved a certain distance to get any movement at all.  We
    now calculate the rounding errors and take them into account when
    reporting movement.

 Add dynamic acceleration to moused(8).  This introduces a '-A' flag to
    control the acceleration algorithm.  It can be used together with the '-a'
    flag for regular acceleration. [1]

    Convert macros to use C99's syntax for macros with a variable number of
    arguments.

    Markup fixes to moused(8).

Obtained from: FreeBSD

Revision 1608 - Directory Listing - [select for diffs]
Modified Sat May 17 06:39:48 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1607
Add kld_load and kld_isloaded which are wrappers around some of the kld kernel functions.

See kld(3)

Revision 1607 - Directory Listing - [select for diffs]
Modified Sat May 17 06:08:36 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1606
Add more cpu features.  Remove stupid boot message.

Revision 1606 - Directory Listing - [select for diffs]
Modified Sat May 17 05:36:05 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1605
Syncronize the cpu detection code on i386 and amd64 with FreeBSD 6.2.

Add better SMP detection including multicore cpus.  Detect features on newer processors and initialize them properly.  Add support for some newer via c7 cpus.

Also make a subtle adjustment to tcp_syncache.c (unrelated)

Revision 1605 - Directory Listing - [select for diffs]
Modified Sat May 17 04:55:52 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1604
This can cause some odd casting issues in some situations.  Say the clock is very high...

Revision 1604 - Directory Listing - [select for diffs]
Modified Sat May 17 04:45:52 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1603
$MidnightBSD$

Add some k8 errata hacks to powernow.

smist:
Use bus_dma to get a page in the first 4 GB.  Since the physical address
of the magic string is passed in a 32-bit register, we can't use high
memory in the PAE case.  This also eliminates a use of vtophys().

Obtained from: FreeBSD.

Revision 1603 - Directory Listing - [select for diffs]
Modified Fri May 16 23:51:00 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1602
Move the syncookie MD5 context from globals to the stack to make it MP safe.

Obtained from : FreeBSD

Revision 1602 - Directory Listing - [select for diffs]
Modified Fri May 16 23:49:41 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1601
We need to zero this hashtable structure.  After a soft reboot, this would cause some failures.

Revision 1601 - Directory Listing - [select for diffs]
Modified Fri May 16 23:42:20 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1600
Update tcp sendcookie stats.

Revision 1600 - Directory Listing - [select for diffs]
Modified Fri May 16 23:39:44 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1599
tag

Revision 1599 - Directory Listing - [select for diffs]
Modified Fri May 16 23:38:38 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1598
Pick the smallest possible TCP window scaling factor that will still allow us ot scale up to sb_max aka
kern.ipc.maxsockbuf.

Anything larger will cause window scaling corruption on some firewalls.  (other end will think unscaled)

Obtained from: FreeBSD  revision 1.131

Revision 1598 - Directory Listing - [select for diffs]
Modified Fri May 16 22:38:32 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1597
Explain the pcc, elf, ssh-vulnkey + blacklists changes.

Revision 1597 - Directory Listing - [select for diffs]
Modified Fri May 16 22:32:35 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1596
tag.

Bump version for recent ssh-vulnkey + blacklist patch.

Revision 1596 - Directory Listing - [select for diffs]
Modified Fri May 16 21:40:36 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1595
(needs more testing)

Create a ssh subdirectory and alter the ssh config installation so that it runs in it's own Makefile.  This let's us deal with
the new blacklist files in a easy fashion.

Revision 1595 - Directory Listing - [select for diffs]
Modified Fri May 16 21:09:01 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1594
Add the blacklists.

Revision 1594 - Directory Listing - [select for diffs]
Modified Fri May 16 20:36:40 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1593
Add ssh-vulnkey.

Revision 1593 - Directory Listing - [select for diffs]
Modified Fri May 16 20:19:19 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1592
add the vulnkey util

Revision 1592 - Directory Listing - [select for diffs]
Modified Fri May 16 20:18:25 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1591
Add blacklist feature to OpenSSH to look for Debian style keys

Revision 1591 - Directory Listing - [select for diffs]
Modified Fri May 16 19:53:34 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1590
Alert users to the Debian ssh key issue.

Revision 1590 - Directory Listing - [select for diffs]
Modified Fri May 16 18:46:27 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1589
Bump the MidnightBSD version.  This might be helpful to track ill effects fro the src/lib/csu changes.

Revision 1589 - Directory Listing - [select for diffs]
Modified Fri May 16 18:43:29 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1588
tag and start branding with MidnightBSD.  We still need to tweak binutils.

Revision 1588 - Directory Listing - [select for diffs]
Modified Thu May 15 06:06:47 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1587
We need to modify cc to use the ccom with the machine architecture.  Unti then, unbreak pcc.

Revision 1587 - Directory Listing - [select for diffs]
Modified Thu May 15 05:55:30 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1586
Duh.  Switch back to /usr/local as cpp will conflict with gcc.

We might need to hack this and/or make a wrapper for the system compiler if we want to connect this to the build.

This is a rare case where we're writing to /usr/local and it's not a port.  (maybe the only time)  i don't like this one bit.

Revision 1586 - Directory Listing - [select for diffs]
Modified Thu May 15 05:43:56 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1585
add i386 directory which contains files in arch/x86 (similar to openbsd setup).

Remove arch

Disable the man page for cpp since gcc installs one.

Revision 1585 - Directory Listing - [select for diffs]
Modified Thu May 15 05:38:35 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1584
Add Makefile.inc to define the libexec path we're using.

Disable the man page for pcc for now.  I've moved the install path to /usr/bin and /usr/libexec for the files and cc.1 obviously conflicts with gcc's manpage.  (actually i need to check on cpp's manpage)

Revision 1584 - Directory Listing - [select for diffs]
Modified Thu May 15 04:53:33 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1583
Since I'm having trouble sleeping, I might as well commit my progress on pcc.

This is now compiling on i386 on my laptop.  It relies on two changes in bsd.sys.mk and sys.mk that I've not yet committed.  (yacc and lex handling)

It's installed to /usr/local with a link to the manpage for pcc(1).  (This will conflict with the port)

Revision 1583 - Directory Listing - [select for diffs]
Modified Wed May 14 04:27:25 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1582
add machine arch specific makefiles.

Revision 1582 - Directory Listing - [select for diffs]
Modified Wed May 14 04:26:47 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1581
add Makefile.inc

Revision 1581 - Directory Listing - [select for diffs]
Modified Wed May 14 04:25:57 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1580
Work in progress:  A reorganization of pcc similar to what OpenBSD did with it.  This is much easier to work with.

Revision 1580 - Directory Listing - [select for diffs]
Modified Tue May 13 05:16:42 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1579
Expand documentation of -f option.  (from freebsd)

Add $MidnightBSD$

Revision 1579 - Directory Listing - [select for diffs]
Modified Tue May 13 05:06:48 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1578
Remove gcc_s reference we don't need.  This gets it more in line with the "port" version.

Revision 1578 - Directory Listing - [select for diffs]
Modified Tue May 13 04:22:18 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1577
We decided not to support ppc.  let's remove this unused code.

Revision 1577 - Directory Listing - [select for diffs]
Modified Tue May 13 04:20:49 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1576
let's prepare for the (possible) future here too.  This saves us remembering to port later.  Prepare for pcc if it's ported to sparc64.

Revision 1576 - Directory Listing - [select for diffs]
Modified Tue May 13 04:18:09 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1575
While pcc is i386 only right now, let's prepare for the future.

Revision 1575 - Directory Listing - [select for diffs]
Modified Tue May 13 04:14:11 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1574
Add workarounds for PCC compiler.

Revision 1574 - Directory Listing - [select for diffs]
Modified Tue May 13 04:04:14 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1573
Make some changes for PCC compiler.  It does not support a number of things, so disable them.

This is similar to the steps necessary on NetBSD 3.0.

Revision 1573 - Directory Listing - [select for diffs]
Modified Tue May 13 01:31:07 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1572
Remove advertising clause per letter.  Modernize the C code, I don't feel like maintaining this crap.

Revision 1572 - Directory Listing - [select for diffs]
Modified Mon May 12 03:22:32 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1571
Remove advertising clause per letter.

Revision 1571 - Directory Listing - [select for diffs]
Modified Mon May 12 03:16:01 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1570
Do not read away the target directory entry when encountering deleted
files after a seekdir().

The seekdir shall set the position for the next readdir operation.
When the _readdir_unlocked() encounters deleted entry, dd_loc is
already advanced. Continuing the loop leads to premature read of
the target entry.

Submitted by:	Marc Balmer <mbalmer at openbsd org>
Obtained from:	OpenBSD

Revision 1570 - Directory Listing - [select for diffs]
Modified Mon May 12 03:09:19 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1569
remove advertising clause.

Revision 1569 - Directory Listing - [select for diffs]
Modified Sat May 10 04:24:03 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1568
ok maybe warns 2 wasn't a good idea.

Revision 1568 - Directory Listing - [select for diffs]
Modified Fri May 2 07:18:57 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1567
Bring to warns2

Revision 1567 - Directory Listing - [select for diffs]
Modified Fri May 2 06:44:47 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1566
remove obsolete help text on registering from the old walnut creek days.

Revision 1566 - Directory Listing - [select for diffs]
Modified Fri May 2 06:41:00 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1565
replace some of the string functions with their "safe" equivalents.  Most of the usages were fine anyway.  It's just easier to audit.

Revision 1565 - Directory Listing - [select for diffs]
Modified Fri May 2 05:51:25 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1564
I need to pay more attention when I'm tired.

Revision 1564 - Directory Listing - [select for diffs]
Modified Fri May 2 05:32:35 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1563
change to a platform we support.

Revision 1563 - Directory Listing - [select for diffs]
Modified Fri May 2 05:30:54 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1562
remove ppc

Revision 1562 - Directory Listing - [select for diffs]
Modified Fri May 2 05:29:06 2008 UTC (15 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1561
remove pc98

Revision 1561 - Directory Listing - [select for diffs]
Modified Thu May 1 04:46:25 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1560
Add pre-processor msg

Revision 1560 - Directory Listing - [select for diffs]
Modified Thu May 1 03:18:22 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1559
Introduce a hack so that __MidnightBSD__ is defined.  This should help determine we're running code on MidnightBSD w/ the preprocessor.

You'll no longer need sys/param.h per se.

Revision 1559 - Directory Listing - [select for diffs]
Modified Wed Apr 30 19:35:38 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1558
Boy we did a lot this month.

Revision 1558 - Directory Listing - [select for diffs]
Modified Tue Apr 29 03:21:31 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1557
Fix bind mergemaster issues.

Revision 1557 - Directory Listing - [select for diffs]
Modified Tue Apr 29 01:56:11 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1556
We don't have alpha and pc98.

Revision 1556 - Directory Listing - [select for diffs]
Modified Tue Apr 29 01:53:58 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1555
Remove architectures we don't support. (and features for them)

$MidnightBSD$

Revision 1555 - Directory Listing - [select for diffs]
Modified Tue Apr 29 01:51:10 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1554
Remove architectures we don't have

Revision 1554 - Directory Listing - [select for diffs]
Modified Tue Apr 29 01:46:05 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1553
We don't support the alpha.  Also briefly mention the cache related security issues with hyperthreading so users can make a wise decision.

Revision 1553 - Directory Listing - [select for diffs]
Modified Tue Apr 29 01:38:43 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1552
We don't support the alpha

Revision 1552 - Directory Listing - [select for diffs]
Modified Tue Apr 29 01:38:12 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1551
Doh!  Forgot to remove pcvt.4 from the Makefile

Revision 1551 - Directory Listing - [select for diffs]
Modified Tue Apr 29 01:36:03 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1550
Fix the dreaded libpthread.a is missing crap with bind.

libthr and libpthread are both built now (so sparc64 and i386/amd64 work).

Remove pcvt reference since I deleted that last night.

Remove some directories that we don't need to go through to speed up the build.

Revision 1550 - Directory Listing - [select for diffs]
Modified Tue Apr 29 01:35:50 2008 UTC (15 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 1549
fix typo in conflict check sql statement.

Revision 1549 - Directory Listing - [select for diffs]
Modified Tue Apr 29 00:23:55 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1548
We hacked this puppy up good. Add some obj targets.

Revision 1548 - Directory Listing - [select for diffs]
Modified Mon Apr 28 16:56:36 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1547
Remove pcvt

Revision 1547 - Directory Listing - [select for diffs]
Modified Mon Apr 28 15:32:31 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1545
Remove old architectures.

$MidnightBSD$

Revision 1545 - Directory Listing - [select for diffs]
Modified Mon Apr 28 15:16:29 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1544
*** empty log message ***

Revision 1544 - Directory Listing - [select for diffs]
Modified Mon Apr 28 15:06:51 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1543
Update for bind 9.4.2

Revision 1543 - Directory Listing - [select for diffs]
Modified Mon Apr 28 14:49:11 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1542
Isn't this special.

Revision 1542 - Directory Listing - [select for diffs]
Modified Mon Apr 28 06:17:04 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1541
Remove powerpc and alpha bits.

Revision 1541 - Directory Listing - [select for diffs]
Modified Mon Apr 28 05:53:25 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1540
Remove powerpc, tweak arm since we haven't deciced if we're keeping it or not.

Revision 1540 - Directory Listing - [select for diffs]
Modified Mon Apr 28 05:50:59 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1539
Add core alias

Revision 1539 - Directory Listing - [select for diffs]
Modified Mon Apr 28 05:40:02 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1538
Tag properly.  Get rid of rediculous $FreeBSD$

Revision 1538 - Directory Listing - [select for diffs]
Modified Mon Apr 28 05:33:21 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1537
Update for bind 9.4.2.

Update the root servers list (some have ipv6 addresses now)

Follow a similar approach to FreeBSD 7.x

Revision 1537 - Directory Listing - [select for diffs]
Modified Mon Apr 28 05:24:13 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1536
Remove pcvt

Revision 1536 - Directory Listing - [select for diffs]
Modified Mon Apr 28 05:20:40 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1535
REmove pcvt.

Revision 1535 - Directory Listing - [select for diffs]
Modified Mon Apr 28 05:20:12 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1534
REmove pcvt

Revision 1534 - Directory Listing - [select for diffs]
Modified Mon Apr 28 05:19:53 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1533
remove pcvt

Revision 1533 - Directory Listing - [select for diffs]
Modified Mon Apr 28 04:42:42 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1532
Remove pc98 boot utility.  We don't support that arch

Revision 1532 - Directory Listing - [select for diffs]
Modified Mon Apr 28 04:41:01 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1531
Always build pccard

Revision 1531 - Directory Listing - [select for diffs]
Modified Mon Apr 28 04:38:16 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1530
There is no point in keeping this.  You can do the functionality with ifconfig.

Revision 1530 - Directory Listing - [select for diffs]
Modified Mon Apr 28 04:21:38 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1529
Bring in several fixes for syslogd from FreeBSD.

Revision 1529 - Directory Listing - [select for diffs]
Modified Mon Apr 28 04:13:27 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1528
Bug fixes, $MidnightBSD$

Delete the .pop file properly in rmuser

Revision 1528 - Directory Listing - [select for diffs]
Modified Mon Apr 28 04:03:15 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1527
$MidnightBSD$

Revision 1527 - Directory Listing - [select for diffs]
Modified Mon Apr 28 04:00:57 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1526
Cleanups for mailwrapper(8):
 - K&R -> ANSI prototype [O]
 - Do not bother to do free right before exit() or execve() [O]
 - Remove some dead code in addarg()
 - Make additional parameters specified in mailer.conf(5)
   actually work and document the fact. [N]
 - Avoid using __progname but instead use getprogname()
   and setprogname() to provide more sensible messages. [O, N]
 - Update $OpenBSD$ and $NetBSD$ to reflect the fact that we
   have sync'ed with their code.
 - WARNS=6

Improvements from FreeBSD, NetBSD and OpenBSD.

Revision 1526 - Directory Listing - [select for diffs]
Modified Mon Apr 28 03:53:47 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1525
Add an autoupgrade feature to mergemaster

Obtained from FreeBSD

Revision 1525 - Directory Listing - [select for diffs]
Modified Mon Apr 28 03:47:37 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1524
Update for Bind 9.4.2

Revision 1524 - Directory Listing - [select for diffs]
Modified Mon Apr 28 03:44:18 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1523
Update to bind 9.4.2

Revision 1523 - Directory Listing - [select for diffs]
Modified Mon Apr 28 03:43:59 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1522
Don't send email if the message body is empty.

Remove X11R6 reference.

Revision 1522 - Directory Listing - [select for diffs]
Modified Mon Apr 28 03:28:26 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1521
Update for Bind 9.4.2

Revision 1521 - Directory Listing - [select for diffs]
Modified Mon Apr 28 03:26:55 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1520
Update dig for bind 9.4.2

Revision 1520 - Directory Listing - [select for diffs]
Modified Mon Apr 28 03:22:45 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1519
Update nsupdate for Bind 9.4.2

Revision 1519 - Directory Listing - [select for diffs]
Modified Mon Apr 28 03:20:26 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1518
Add thread lib to nslookup

Revision 1518 - Directory Listing - [select for diffs]
Modified Mon Apr 28 02:30:00 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1517
Add missing includes

Revision 1517 - Directory Listing - [select for diffs]
Modified Mon Apr 28 02:26:06 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1516
*** empty log message ***

Revision 1516 - Directory Listing - [select for diffs]
Modified Mon Apr 28 02:16:46 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1515
bind 9.4.2 changes

Revision 1515 - Directory Listing - [select for diffs]
Modified Mon Apr 28 02:14:04 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1514
Update for bind 9.4.2

Revision 1514 - Directory Listing - [select for diffs]
Modified Mon Apr 28 01:23:10 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1513
$MidnightBSD$

Revision 1513 - Directory Listing - [select for diffs]
Modified Mon Apr 28 01:22:41 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1512
Switch to threading

Revision 1512 - Directory Listing - [select for diffs]
Modified Mon Apr 28 00:59:56 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1511
ok this should be it

Revision 1511 - Directory Listing - [select for diffs]
Modified Mon Apr 28 00:59:09 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1510
most of the patches for 9.4

Revision 1510 - Directory Listing - [select for diffs]
Modified Mon Apr 28 00:06:56 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1509
Update for bind 9.4.2

Revision 1509 - Directory Listing - [select for diffs]
Modified Mon Apr 28 00:03:14 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1508
$MIdnightBSD$

Revision 1508 - Directory Listing - [select for diffs]
Modified Mon Apr 28 00:01:45 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1507
Update for bind 9.4.2

Revision 1507 - Directory Listing - [select for diffs]
Modified Sun Apr 27 23:53:34 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1506
Add pthread libs

Revision 1506 - Directory Listing - [select for diffs]
Modified Sun Apr 27 23:21:06 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1505
update for bind 9.4.x

Revision 1505 - Directory Listing - [select for diffs]
Modified Sun Apr 27 23:16:34 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1504
Tidy up

Revision 1504 - Directory Listing - [select for diffs]
Modified Sat Apr 26 18:11:10 2008 UTC (15 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 1503
add mport.query tool.

Revision 1503 - Directory Listing - [select for diffs]
Modified Sat Apr 26 18:08:11 2008 UTC (15 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 1502
Die with usage if not passed a package.

Revision 1502 - Directory Listing - [select for diffs]
Modified Sat Apr 26 18:00:39 2008 UTC (15 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 1501
Add mport.check-fake binary.

Revision 1501 - Directory Listing - [select for diffs]
Modified Sat Apr 26 17:59:26 2008 UTC (15 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 1499
Next developement snapshot.
Many bug fixes:  hardlinks work correctly, exec/unxec parsing, etc...
Packages now have a status, on install it starts as 'dirty', and is set to
'clean' if the install succeeds.  Similar logic is used in package deletion,
which now tries harder to keep going after errors.

Revision 1499 - Directory Listing - [select for diffs]
Modified Tue Apr 22 03:40:09 2008 UTC (15 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 1492
This commit was generated by cvs2svn to compensate for changes in r1498,
which included commits to RCS files with non-trunk default branches.
Revision 1492 - Directory Listing - [select for diffs]
Modified Sat Apr 19 01:06:51 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1491
Fix typo, tag

Revision 1491 - Directory Listing - [select for diffs]
Modified Fri Apr 18 19:13:11 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1490
threading on

Revision 1490 - Directory Listing - [select for diffs]
Modified Fri Apr 18 19:11:36 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1489
add missing src files for bind 9.4.2

Revision 1489 - Directory Listing - [select for diffs]
Modified Fri Apr 18 19:09:49 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1488
add threading

Revision 1488 - Directory Listing - [select for diffs]
Modified Fri Apr 18 19:06:55 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1487
Update for bind 9.4.2

Revision 1487 - Directory Listing - [select for diffs]
Modified Fri Apr 18 19:03:46 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1486
Add missing files required by bind 9.4.2

Revision 1486 - Directory Listing - [select for diffs]
Modified Fri Apr 18 19:01:38 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1485
Update files for BIND 9.4.2.

Revision 1485 - Directory Listing - [select for diffs]
Modified Fri Apr 18 18:36:29 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1483
Resolve conflicts.

Revision 1483 - Directory Listing - [select for diffs]
Modified Fri Apr 18 18:31:33 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1481
This commit was generated by cvs2svn to compensate for changes in r1482,
which included commits to RCS files with non-trunk default branches.
Revision 1481 - Directory Listing - [select for diffs]
Modified Fri Apr 18 00:20:44 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1478
Update for 5.0p1

Revision 1478 - Directory Listing - [select for diffs]
Modified Thu Apr 17 23:42:30 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1477
Update to v416.

Revision 1477 - Directory Listing - [select for diffs]
Modified Thu Apr 17 23:38:07 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1475
Bring in FreeBSD changes to less v416. This gives us "less is more" patches.

Revision 1475 - Directory Listing - [select for diffs]
Modified Thu Apr 17 23:34:34 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1473
This commit was generated by cvs2svn to compensate for changes in r1474,
which included commits to RCS files with non-trunk default branches.
Revision 1473 - Directory Listing - [select for diffs]
Modified Thu Apr 17 23:15:53 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1472
Update for r33d

Revision 1472 - Directory Listing - [select for diffs]
Modified Thu Apr 17 23:13:56 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1470
FIx for r33d

Revision 1470 - Directory Listing - [select for diffs]
Modified Thu Apr 17 23:02:59 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1468
This commit was generated by cvs2svn to compensate for changes in r1469,
which included commits to RCS files with non-trunk default branches.
Revision 1468 - Directory Listing - [select for diffs]
Modified Fri Apr 11 05:59:20 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1467
debug is lying!

Revision 1467 - Directory Listing - [select for diffs]
Modified Fri Apr 11 05:56:43 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1466
Add support for env in scripts.  Some <insert negative here> wrote a python book advocating # python and a lot of scripts are using it.  This is insecure, but what do we do...

Revision 1466 - Directory Listing - [select for diffs]
Modified Fri Apr 11 04:40:30 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1465
Don't leak memory #2

Revision 1465 - Directory Listing - [select for diffs]
Modified Fri Apr 11 04:36:26 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1464
dont leak memory

Revision 1464 - Directory Listing - [select for diffs]
Modified Fri Apr 11 00:44:01 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1463
During PREINIT, when giving the interface the address 0.0.0.0, do it as an
alias to avoid distrubing other addresses.

Revision 1463 - Directory Listing - [select for diffs]
Modified Fri Apr 11 00:39:26 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1462
Use /var/run instead of /etc for temp files.

Revision 1462 - Directory Listing - [select for diffs]
Modified Thu Apr 10 23:50:42 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1461
Sync updating.

Revision 1461 - Directory Listing - [select for diffs]
Modified Thu Apr 10 23:45:52 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1460
Sync with DragonFly.

Matt added several features to cpdup including parallel transaction support for remote source or targets.

By default, this now compiles with pthreads support.

-l was added to force stdout and stderr to be line-buffered.

Also, we had to modify the casts for pointer types.  It is nice to have amd64 build things since pointers aren't ints :)

Revision 1460 - Directory Listing - [select for diffs]
Modified Sun Apr 6 16:06:52 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1458
Add sftp-server-main.c which includes the main function for the sftp-server in openssh 4.9p1

Revision 1458 - Directory Listing - [select for diffs]
Modified Sun Apr 6 06:54:40 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1456
This commit was generated by cvs2svn to compensate for changes in r1457,
which included commits to RCS files with non-trunk default branches.
Revision 1456 - Directory Listing - [select for diffs]
Modified Sun Apr 6 06:49:18 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1455
Import OpenSSH 4.9p1

Revision 1455 - Directory Listing - [select for diffs]
Modified Sun Apr 6 06:34:28 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1454
OpenSSH 4.9 introduced an inline sftp-server option in addition to forking a process to handle connections.  We're going to need to link in some of that sftp code.

Revision 1454 - Directory Listing - [select for diffs]
Modified Sun Apr 6 06:31:26 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1453
The clients are now working, but we've still got to get sshd up

Revision 1453 - Directory Listing - [select for diffs]
Modified Sun Apr 6 06:24:01 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1452
Fix linking problem noted in comment.

Revision 1452 - Directory Listing - [select for diffs]
Modified Sun Apr 6 06:09:02 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1451
Add new symbols.

Revision 1451 - Directory Listing - [select for diffs]
Modified Sun Apr 6 06:04:54 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1450
Add new files included since 4.6

Revision 1450 - Directory Listing - [select for diffs]
Modified Sun Apr 6 06:00:19 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1449
I gotta be more careful.

Revision 1449 - Directory Listing - [select for diffs]
Modified Sun Apr 6 05:13:37 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1448
Results of configure

Revision 1448 - Directory Listing - [select for diffs]
Modified Sun Apr 6 04:55:23 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1447
$MidnightBSD$

Revision 1447 - Directory Listing - [select for diffs]
Modified Sun Apr 6 04:50:38 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1446
Fix some of the merge conflicts.

Revision 1446 - Directory Listing - [select for diffs]
Modified Sun Apr 6 04:46:46 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1444
Fix merge conflicts with the version.

Revision 1444 - Directory Listing - [select for diffs]
Modified Sun Apr 6 04:40:38 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1442
This commit was generated by cvs2svn to compensate for changes in r1443,
which included commits to RCS files with non-trunk default branches.
Revision 1442 - Directory Listing - [select for diffs]
Modified Thu Apr 3 17:50:57 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1441
Ugh.  /* */ ...

Revision 1441 - Directory Listing - [select for diffs]
Modified Thu Apr 3 17:48:19 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1440
Fix memory leak.

Revision 1440 - Directory Listing - [select for diffs]
Modified Thu Apr 3 17:47:01 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1439
Found an additional integer overflow.

This version of the patch comes from NetBSD.

Also limits the range of getnumber to 0x00ffffff to ensure that adding two does not cause an overflow.

Revision 1439 - Directory Listing - [select for diffs]
Modified Thu Apr 3 17:43:56 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1438
Fix an integer overflow in the GET_NUMBER macro.

Found in http://secunia.com/cve_reference/CVE-2008-1391/

Revision 1438 - Directory Listing - [select for diffs]
Modified Thu Apr 3 17:42:50 2008 UTC (15 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 1437
Add missing header

Revision 1437 - Directory Listing - [select for diffs]
Modified Wed Mar 26 01:35:42 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1436
Unbreak world (i hope)

Revision 1436 - Directory Listing - [select for diffs]
Modified Sat Mar 22 22:26:44 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1435
Fix typo

Revision 1435 - Directory Listing - [select for diffs]
Modified Sat Mar 22 22:23:13 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1434
deal with xorg 7

Revision 1434 - Directory Listing - [select for diffs]
Modified Sat Mar 22 22:20:55 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1433
Deal with Xorg 7

Revision 1433 - Directory Listing - [select for diffs]
Modified Sat Mar 22 06:25:19 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1432
alex isn't with us anymore reset this.

Revision 1432 - Directory Listing - [select for diffs]
Modified Sat Mar 22 06:21:11 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1431
document changes.

Revision 1431 - Directory Listing - [select for diffs]
Modified Sat Mar 22 06:11:08 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1430
move x11 path

Revision 1430 - Directory Listing - [select for diffs]
Modified Sat Mar 22 06:11:00 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1429
kill old ppc support

Revision 1429 - Directory Listing - [select for diffs]
Modified Sat Mar 22 06:10:49 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1428
Move x11 path

Revision 1428 - Directory Listing - [select for diffs]
Modified Sat Mar 22 06:08:13 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1427
remove x11 paths

Revision 1427 - Directory Listing - [select for diffs]
Modified Sat Mar 22 06:06:05 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1426
more x11 crap

Revision 1426 - Directory Listing - [select for diffs]
Modified Sat Mar 22 06:01:05 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1425
Add installation of mkshrc

Revision 1425 - Directory Listing - [select for diffs]
Modified Sat Mar 22 05:56:53 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1424
mksh file.

Revision 1424 - Directory Listing - [select for diffs]
Modified Sat Mar 22 05:55:21 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1423
We do not nee X11R6

Revision 1423 - Directory Listing - [select for diffs]
Modified Sat Mar 22 05:50:39 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1422
My first pass at a desktop rule like we have for ipv4 that enables ssh.

Revision 1422 - Directory Listing - [select for diffs]
Modified Sat Mar 22 05:41:48 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1421
Remove /usr/X11R6/bin from path.  We don't do old x anymore.

Revision 1421 - Directory Listing - [select for diffs]
Modified Sat Mar 22 05:39:36 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1420
Hmm... while archite had very good intentions changing this, it's been a problem in a desktop setup (and server).

Let's switch the umask back.

Revision 1420 - Directory Listing - [select for diffs]
Modified Mon Mar 17 00:19:08 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1419
We haven't been maintaining UPDATING since Jan 1.  Catch it up with changes since then that are relevant.

Revision 1419 - Directory Listing - [select for diffs]
Modified Mon Mar 17 00:02:17 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1418
Fix spurious warnings from neighbor discovery when working with IPv6 over
point to point tunnels (gif).

This crops up when using one of the many IPV6 tunnel brokers, etc. with MidnightBSD.

Obtained from FreeBSD.

Revision 1418 - Directory Listing - [select for diffs]
Modified Wed Mar 12 21:45:20 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1417
Add some newer OS releases for DF and FBSD.

Revision 1417 - Directory Listing - [select for diffs]
Modified Wed Mar 12 21:34:42 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1416
Add lndir.

Revision 1416 - Directory Listing - [select for diffs]
Modified Tue Mar 11 01:44:45 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1415
Correct a buffer overflow in ppp command prompt parsing reported on bugtraq.

Obtained from OpenBSD.

Revision 1415 - Directory Listing - [select for diffs]
Modified Sat Mar 8 20:14:23 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1413
Remove old /usr/X11R6 manpath

Revision 1413 - Directory Listing - [select for diffs]
Modified Fri Mar 7 21:24:04 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1412
Add a new macro, sx_xlocked(), that returns true if the current thread holds an exclusive lock on the specified sx lock.

Revision 1412 - Directory Listing - [select for diffs]
Modified Fri Mar 7 15:58:01 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1411
NO HPFS.  Remove unneeded files.

Revision 1411 - Directory Listing - [select for diffs]
Modified Fri Mar 7 15:49:12 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1410
Sometime ago we added options to ath.  It might help if they were actually in the options file.

This allows tweaks without modifying the source.

Revision 1410 - Directory Listing - [select for diffs]
Modified Fri Mar 7 06:04:31 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1409
Remove hpfs module from LINT.

Remove architecture files we are not using.

Revision 1409 - Directory Listing - [select for diffs]
Modified Fri Mar 7 04:44:04 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1408
remove w3 check crap, fix hostnames

Revision 1408 - Directory Listing - [select for diffs]
Modified Fri Mar 7 04:40:14 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1407
Sync with freebsd

Revision 1407 - Directory Listing - [select for diffs]
Modified Fri Mar 7 04:32:06 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1406
Update defaults for new version.

Revision 1406 - Directory Listing - [select for diffs]
Modified Fri Mar 7 04:28:13 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1405
Sync man pages with the new versions.

Revision 1405 - Directory Listing - [select for diffs]
Modified Fri Mar 7 04:26:00 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1404
Sync tbmaster with freebsd.

Revision 1404 - Directory Listing - [select for diffs]
Modified Fri Mar 7 04:20:26 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1403
Add several new features from FreeBSD including csup support, run times and progress info.

Revision 1403 - Directory Listing - [select for diffs]
Modified Thu Mar 6 20:24:11 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1402
Add 0.1 branch definitions.

Revision 1402 - Directory Listing - [select for diffs]
Modified Thu Mar 6 20:23:45 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1400
Update tinderbox for MidnightBSD on CURRENT branch.

Revision 1400 - Directory Listing - [select for diffs]
Modified Mon Mar 3 22:20:56 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1399
Remove CONFIG_H options, add -DHAVE_MKNOD=1 per Mir's suggestion

Revision 1399 - Directory Listing - [select for diffs]
Modified Mon Mar 3 22:18:59 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1398
Add mksh to /etc/shells

Revision 1398 - Directory Listing - [select for diffs]
Modified Sun Mar 2 20:39:32 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1397
Update HID usage table according to the following:

  * USB HID Usage Tables, V1.12
  * USB Monitor Control Class Specification, V1.0
  * USB Usage Tables for HID Power Devices, V1.0
  * USB Device Class Definition for Physical Devices, V1.0
  * USB HID Point of Sale Usage Tables, V1.02

Revision 1397 - Directory Listing - [select for diffs]
Modified Sun Mar 2 20:08:58 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1396
MidnightBSD(ize) it

Revision 1396 - Directory Listing - [select for diffs]
Modified Sun Mar 2 20:07:32 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1395
update pci_vendors using the method described

Revision 1395 - Directory Listing - [select for diffs]
Modified Sun Mar 2 19:58:43 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1394
Update incomplete BSD family tree.  The BSDs starting with M seem to be missing.  OS X Leopard and recent FreeBSD/DF releases are in

Revision 1394 - Directory Listing - [select for diffs]
Modified Sun Mar 2 19:53:54 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1393
Add BL and MF which should fix using tzsetup

Revision 1393 - Directory Listing - [select for diffs]
Modified Sun Mar 2 19:51:07 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1392
tzdata2007k

Revision 1392 - Directory Listing - [select for diffs]
Modified Sun Mar 2 19:48:19 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1391
Update time zones using tzdata2007k.  This should correct Australia's time.

Revision 1391 - Directory Listing - [select for diffs]
Modified Sun Mar 2 19:22:58 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1390
Update for the newer version of mksh.

Revision 1390 - Directory Listing - [select for diffs]
Modified Sun Mar 2 19:15:46 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1388
Remove ksh.kshrc which is no longer used.

Revision 1388 - Directory Listing - [select for diffs]
Modified Sun Mar 2 19:10:37 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1386
This commit was generated by cvs2svn to compensate for changes in r1387,
which included commits to RCS files with non-trunk default branches.
Revision 1386 - Directory Listing - [select for diffs]
Modified Sun Mar 2 18:45:33 2008 UTC (16 years ago) by laffer1
Original Path: trunk
Diff to previous 1385
Don't assume the lock is in use when reinitializing a lockuser.  Only allocate a lockuser request if both watched and lockuser's requests are null.  Fixes some random lockup behavior with some applications forking

Revision 1385 - Directory Listing - [select for diffs]
Modified Thu Feb 28 16:53:45 2008 UTC (16 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 1383
Replace the random IP ID generation code from OpenBSD with an improved algorithm by Amit Klein. The previous implementation had known flaws (see Klein's paper).

We modified a patch from Robert Watson (FreeBSD) to implement the changes.

http://www.securityfocus.com/bid/27647/info

Revision 1383 - Directory Listing - [select for diffs]
Modified Fri Feb 22 02:55:29 2008 UTC (16 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 1382
$MidnightBSD$

Revision 1382 - Directory Listing - [select for diffs]
Modified Fri Feb 22 02:54:27 2008 UTC (16 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 1381
Remove pc98

Revision 1381 - Directory Listing - [select for diffs]
Modified Fri Feb 22 02:53:58 2008 UTC (16 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 1380
Remove fdisk_pc98

Revision 1380 - Directory Listing - [select for diffs]
Modified Fri Feb 22 02:53:02 2008 UTC (16 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 1379
Remove hpfs

Revision 1379 - Directory Listing - [select for diffs]
Modified Fri Feb 22 02:50:56 2008 UTC (16 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 1378
Remove the hpfs file system.

Revision 1378 - Directory Listing - [select for diffs]
Modified Fri Feb 22 02:50:15 2008 UTC (16 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 1377
Remove hpfs module.

Revision 1377 - Directory Listing - [select for diffs]
Modified Thu Feb 21 19:48:31 2008 UTC (16 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 1376
Sync with changes since 2002.

Revision 1376 - Directory Listing - [select for diffs]
Modified Thu Feb 14 18:02:43 2008 UTC (16 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 1375
Correct lack of permissions checking on sendfile system call.

Revision 1375 - Directory Listing - [select for diffs]
Modified Mon Jan 28 15:21:11 2008 UTC (16 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 1374
NTP configuration change. When looking up entires in the resolver quickly, sometimes the same ip is selected as it's cacached briefly.  This new configuration fixes that possiblity.

Revision 1374 - Directory Listing - [select for diffs]
Modified Fri Jan 25 15:45:12 2008 UTC (16 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 1373
Correct a timing problem when calling fork() from a process using libpthread (kse)

Revision 1373 - Directory Listing - [select for diffs]
Modified Fri Jan 25 15:29:12 2008 UTC (16 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 1372
Add missing util.c for str2prt function, etc

Revision 1372 - Directory Listing - [select for diffs]
Modified Mon Jan 21 20:21:07 2008 UTC (16 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 1371
Add virtual machine detection in the loader.  For QEMU, VBOX, VMware, or Parallels, set the hz setting to 100.  This will fix "time" issues automatically in these environments.

Revision 1371 - Directory Listing - [select for diffs]
Modified Mon Jan 21 16:06:30 2008 UTC (16 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 1370
Make changes for X.org 7.x.  Assume users want a full X install.

Revision 1370 - Directory Listing - [select for diffs]
Modified Tue Jan 15 18:53:01 2008 UTC (16 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 1369
PTY handling patch.

This is text from the FreeBSD advisory on the same issue:
If openpty(3) is called as non-root user the newly created
pseudo-terminal is world readable and writeable.  While this is
documented to be the case, script(1) still uses openpty(3) and
script(1) may be used by non-root users [CVE-2008-0217].

The ptsname(3) function incorrectly extracts two characters from the
name of a device node in /dev without verifying that it's actually
operating on a valid pty which the calling user owns.  pt_chown uses
the bad result from ptsname(3) to change ownership of a pty to the
user calling pt_chown [CVE-2008-0216].

Revision 1369 - Directory Listing - [select for diffs]
Modified Sat Jan 5 22:29:14 2008 UTC (16 years, 2 months ago) by ctriv
Original Path: trunk
Diff to previous 1368
Exit gracefully if no matching packages where found.

Revision 1368 - Directory Listing - [select for diffs]
Modified Sat Jan 5 22:21:12 2008 UTC (16 years, 2 months ago) by ctriv
Original Path: trunk
Diff to previous 1367
Add libexec/mport.delete

Revision 1367 - Directory Listing - [select for diffs]
Modified Sat Jan 5 22:20:02 2008 UTC (16 years, 2 months ago) by ctriv
Original Path: trunk
Diff to previous 1366
Sync with the current version of libmport.

Revision 1366 - Directory Listing - [select for diffs]
Modified Sat Jan 5 22:18:20 2008 UTC (16 years, 2 months ago) by ctriv
Original Path: trunk
Diff to previous 1363
Latest developement version of libmport.

Changes:

It is now possible to create, install, and delete packages from a system
with the library.

The install primative now uses the progress callback system to give the user
feedback during the install.

Support for installing into a chroot envirement is included at the library
level.  This is useful if you have a GUI app and you don't want your entire
process stuck in the chroot.

Many function names have been changed in an effort to improve the library's
orginization.

Many bug fixes and subtle changes.

Todo:

Docs:
	library overview.
	function reference.
	mport bundle specification.

The merge primative.

The fetch primative.

The update primative.

Top level functions to do things like "fetch this bundle, its depends, and
then install them all."

Some of the sematics are still up in the air.  For example, gtk12 and
gtk2 both have a pkgname of gtk.  libmport doesn't allow two package with
the same name to be installed.

Hard links are not implemented in a mport bundle.

Much more testing and bug fixing is needed.

Revision 1363 - Directory Listing - [select for diffs]
Modified Tue Jan 1 07:14:08 2008 UTC (16 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 1362
Happy New Year

Revision 1362 - Directory Listing - [select for diffs]
Modified Tue Jan 1 07:08:42 2008 UTC (16 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 1360
Happy New Year!

Remove PC98 since we're not supporting that architecture.

Revision 1360 - Directory Listing - [select for diffs]
Modified Wed Dec 19 20:39:58 2007 UTC (16 years, 3 months ago) by ctriv
Original Path: trunk
Diff to previous 1358
This commit was generated by cvs2svn to compensate for changes in r1359,
which included commits to RCS files with non-trunk default branches.
Revision 1358 - Directory Listing - [select for diffs]
Modified Wed Dec 19 20:38:11 2007 UTC (16 years, 3 months ago) by ctriv
Original Path: trunk
Diff to previous 1356
This commit was generated by cvs2svn to compensate for changes in r1357,
which included commits to RCS files with non-trunk default branches.
Revision 1356 - Directory Listing - [select for diffs]
Modified Wed Dec 5 17:02:15 2007 UTC (16 years, 3 months ago) by ctriv
Original Path: trunk
Diff to previous 1355
Sync with devel version.
Add ERRORX macros.
Fix a number of memory leaks.
Various refactorings.

Revision 1355 - Directory Listing - [select for diffs]
Modified Sat Dec 1 06:21:37 2007 UTC (16 years, 4 months ago) by ctriv
Original Path: trunk
Diff to previous 1353
sync with developement version.

Version comparison now works, but we might change the definition of "works"
in the near future.  As crazy as the FreeBSD semantics are, they might be
useful.

All package files are now bundles.  Typical package files are simply a
special case of a bundle only containting one package.  There is no
performance penalty for many packages in one bundle at install time, and
there is only one code path for all installations.

pkg-deinstall script support has been added (but is not yet tested).

Many new functions for simplifing work.  See mport_db_do(),
mport_db_prepare(), and mport_add_file_to_archive(), et al.

Revision 1353 - Directory Listing - [select for diffs]
Modified Thu Nov 29 17:27:11 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1352
Fix a data reply attack

Revision 1352 - Directory Listing - [select for diffs]
Modified Mon Nov 26 21:45:02 2007 UTC (16 years, 4 months ago) by ctriv
Original Path: trunk
Diff to previous 1351
Add /usr/libexec/mport.version_cmp

Revision 1351 - Directory Listing - [select for diffs]
Modified Mon Nov 26 21:43:15 2007 UTC (16 years, 4 months ago) by ctriv
Original Path: trunk
Diff to previous 1350
Add the mport.install libexec binary.

Revision 1350 - Directory Listing - [select for diffs]
Modified Mon Nov 26 21:41:56 2007 UTC (16 years, 4 months ago) by ctriv
Original Path: trunk
Diff to previous 1349
First working version with installation.  Many code paths still untested.

Revision 1349 - Directory Listing - [select for diffs]
Modified Mon Nov 26 16:18:13 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1348
Fix a bug in libpthread where libobjc is loaded first which causes GNUstep to fail when calling pthread_key_create.

Revision 1348 - Directory Listing - [select for diffs]
Modified Mon Nov 26 16:14:42 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1347
Fix a problem where libobjc is loaded before libthr causing GNUstep to fail.

Revision 1347 - Directory Listing - [select for diffs]
Modified Sun Nov 25 18:05:17 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1346
Fix from FreeBSD:

 The kernel uses two ways to write data on a pipe:
      o  buffered write, for chunks smaller than PIPE_MINDIRECT bytes
      o  direct write, for everything else

  A call to writev(2) may receive struct iov of various size and the
  kernel may have to switch from one solution to the other. Before doing
  this, it must wake reader processes and any select/poll/kqueue up.

  This commit fixes a bug where select/poll/kqueue are not triggered
  when switching from buffered write to direct write. It adds calls to
  pipeselwakeup().

Revision 1346 - Directory Listing - [select for diffs]
Modified Fri Nov 23 22:39:51 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1345
gcc 3.4.6 gets confused on this file.  Fix T1 and T2 errors building the kernel.

Revision 1345 - Directory Listing - [select for diffs]
Modified Fri Nov 23 22:26:26 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1344
Update sendmail to 8.14.2

Add comment about the older mksh update.

Revision 1344 - Directory Listing - [select for diffs]
Modified Fri Nov 23 22:25:08 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1343
Add MidnightBSD instructions.

Remove freebsd directions.

Revision 1343 - Directory Listing - [select for diffs]
Modified Fri Nov 23 22:11:51 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1341
Forced bump for sendmail 8.14.2

Revision 1341 - Directory Listing - [select for diffs]
Modified Fri Nov 23 22:10:30 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1339
This commit was generated by cvs2svn to compensate for changes in r1340,
which included commits to RCS files with non-trunk default branches.
Revision 1339 - Directory Listing - [select for diffs]
Modified Fri Nov 23 21:58:39 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1338
Update to gcc 3.4.6.

Revision 1338 - Directory Listing - [select for diffs]
Modified Fri Nov 23 05:57:43 2007 UTC (16 years, 4 months ago) by ctriv
Original Path: trunk
Diff to previous 1337
Add version comparisons.
Add preconditions check to package installation.

Revision 1337 - Directory Listing - [select for diffs]
Modified Thu Nov 22 08:00:32 2007 UTC (16 years, 4 months ago) by ctriv
Original Path: trunk
Diff to previous 1336
Latest developement version.  Nearing completion of package installation.

Revision 1336 - Directory Listing - [select for diffs]
Modified Tue Nov 20 11:19:50 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1335
add missing and unneeded files

Revision 1335 - Directory Listing - [select for diffs]
Modified Tue Nov 20 11:18:16 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1334
Update to gcc 3.4.6 part 2 of 2.

Revision 1334 - Directory Listing - [select for diffs]
Modified Tue Nov 20 10:59:26 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1333
GCC 3.4.6 part 1 of 2.

Revision 1333 - Directory Listing - [select for diffs]
Modified Tue Nov 20 10:58:25 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1332
Fix some issues with Bind9 and the upcoming gcc update.

Revision 1332 - Directory Listing - [select for diffs]
Modified Fri Nov 16 13:23:00 2007 UTC (16 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 1321
Add preliminary support for ATI southbridges SB600/700 (IXP600/700)

Revision 1321 - Directory Listing - [select for diffs]
Modified Wed Oct 31 00:01:03 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1320
Disable kernel core dumps

Enable additional channels for older sound cards.

Allow users to mount cds.

Revision 1320 - Directory Listing - [select for diffs]
Modified Sat Oct 27 05:22:07 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1319
Ugh... the default for root login was changed during the course of updating this.  Disable it in the config file by default for now.

Revision 1319 - Directory Listing - [select for diffs]
Modified Fri Oct 26 15:30:59 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1318
Switch to FILESYSTEMS

Revision 1318 - Directory Listing - [select for diffs]
Modified Fri Oct 26 15:29:24 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1317
fix unloading of "saver" modules

Revision 1317 - Directory Listing - [select for diffs]
Modified Fri Oct 26 15:27:08 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1316
use -ne instead of !=

Revision 1316 - Directory Listing - [select for diffs]
Modified Fri Oct 26 15:25:43 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1315
Add new rc.conf var... sendmail_rebuild_aliases with a setting of off.

Aliases will no longer be rebuilt automatically on startup. (FreeBSD 7.x+ behavior)

Revision 1315 - Directory Listing - [select for diffs]
Modified Fri Oct 26 15:20:25 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1314
switch to stop_boot
switch to FILE_SYSTEMS

Revision 1314 - Directory Listing - [select for diffs]
Modified Fri Oct 26 15:18:50 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1313
Try to get useful info from dhcp

fix whitespace

Revision 1313 - Directory Listing - [select for diffs]
Modified Fri Oct 26 14:31:19 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1312
stop bitching for random on read only devices.  (good for live cd use)

As a last ditch effort, try to write it to var

Revision 1312 - Directory Listing - [select for diffs]
Modified Fri Oct 26 14:24:20 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1311
Allow relative paths for rndc in case the port version of named is used.

Revision 1311 - Directory Listing - [select for diffs]
Modified Fri Oct 26 14:16:47 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1310
Oops.. fix ${jail_fstab}

Revision 1310 - Directory Listing - [select for diffs]
Modified Fri Oct 26 14:12:39 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1309
run the firewall script in another shell

Revision 1309 - Directory Listing - [select for diffs]
Modified Fri Oct 26 14:08:50 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1308
Don't source the script directly.. run it in a seperate shell.

Revision 1308 - Directory Listing - [select for diffs]
Modified Fri Oct 26 14:06:15 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1307
Remove unneeded semi colon

Revision 1307 - Directory Listing - [select for diffs]
Modified Fri Oct 26 13:52:20 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1306
Change pivot point for jails

Revision 1306 - Directory Listing - [select for diffs]
Modified Fri Oct 26 13:51:41 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1305
Add "fake" point to be the new pivot point instead of mountlocalcrit

Revision 1305 - Directory Listing - [select for diffs]
Modified Fri Oct 26 13:51:03 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1304
Hack to keep us in compliance with IPv6 rfcs

Revision 1304 - Directory Listing - [select for diffs]
Modified Fri Oct 26 13:50:29 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1303
allow delay to be set to a negative value which delays the run indefinetely

Revision 1303 - Directory Listing - [select for diffs]
Modified Fri Oct 26 12:37:17 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1301
Test if nextboot is there before we run it

Revision 1301 - Directory Listing - [select for diffs]
Modified Tue Oct 23 17:58:11 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1299
This commit was generated by cvs2svn to compensate for changes in r1300,
which included commits to RCS files with non-trunk default branches.
Revision 1299 - Directory Listing - [select for diffs]
Modified Tue Oct 23 17:52:49 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1298
Sync netcat with OpenBSD 4.1 RELEASE.

Revision 1298 - Directory Listing - [select for diffs]
Modified Tue Oct 23 17:28:05 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1297
Fix a signed issue on some platforms.

Revision 1297 - Directory Listing - [select for diffs]
Modified Tue Oct 23 14:46:25 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1296
Remove libio as that was only for the alpha.  I don't know why I added it in the previous revision.  Also remove the files.

$MidnightBSD$ libbz2

work around libarchive so the system compiles.

Revision 1296 - Directory Listing - [select for diffs]
Modified Tue Oct 23 03:31:37 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1295
remove alpha bits

Revision 1295 - Directory Listing - [select for diffs]
Modified Tue Oct 23 03:30:28 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1294
Enable libio, libdisk and libthread_db.

Revision 1294 - Directory Listing - [select for diffs]
Modified Mon Oct 22 04:12:39 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1293
Re-order library building to attempt a fix with libarchive.  Move libc to the beginning as we may need the symbols available.  (unrelated)

Revision 1293 - Directory Listing - [select for diffs]
Modified Mon Oct 22 03:46:31 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1292
Disable _s.so file for now to unbreak world.  This will need to be fixed to enable pcc.

Revision 1292 - Directory Listing - [select for diffs]
Modified Mon Oct 22 02:31:00 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1291
Get crtbeginT.o to build.

Revision 1291 - Directory Listing - [select for diffs]
Modified Mon Oct 22 02:02:54 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1290
remove alpha

Revision 1290 - Directory Listing - [select for diffs]
Modified Mon Oct 22 00:55:07 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1289
$MidnightBSD$

Revision 1289 - Directory Listing - [select for diffs]
Modified Mon Oct 15 16:58:43 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1288
Enable powerd by default.

Remove /usr/X11R6/rc.d search path as we're moving away from that with xorg 7

Revision 1288 - Directory Listing - [select for diffs]
Modified Sun Oct 14 19:17:02 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1287
Remove early.sh

Revision 1287 - Directory Listing - [select for diffs]
Modified Sun Oct 14 19:14:47 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1286
Remove early.sh.

Users should now use "new style" rc.d scripts instead.  Consult rc(8).

Revision 1286 - Directory Listing - [select for diffs]
Modified Sun Oct 14 19:10:59 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1283
Remove deprecated portmap, single_mountd_enable and xntpd stuff from early 5.x releases of FreeBSD.  We don't need this cruft

Revision 1283 - Directory Listing - [select for diffs]
Modified Sat Oct 13 21:25:46 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1282
Remove /usr/X11R6/bin as we're moving to X.org 7.3

Revision 1282 - Directory Listing - [select for diffs]
Modified Sat Oct 13 02:00:02 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1281
remove alpha bits.

Revision 1281 - Directory Listing - [select for diffs]
Modified Sat Oct 13 01:59:24 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1280
sort

Revision 1280 - Directory Listing - [select for diffs]
Modified Sat Oct 13 01:57:57 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1279
Add a fireware directory on boot.  This will allow us to store firmware for wireless cards there.

Revision 1279 - Directory Listing - [select for diffs]
Modified Sat Oct 13 01:56:50 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1278
Add media for HAL.  Use this for removable media such as cdroms, usb flash drives, etc.

Revision 1278 - Directory Listing - [select for diffs]
Modified Sat Oct 13 01:55:18 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1277
Ditch alpha

Revision 1277 - Directory Listing - [select for diffs]
Modified Sat Oct 13 01:52:22 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1276
Remove audit.  We don't use it like freebsd.

Revision 1276 - Directory Listing - [select for diffs]
Modified Sat Oct 13 01:50:52 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1275
tail is no longer needed.

Revision 1275 - Directory Listing - [select for diffs]
Modified Sat Oct 13 01:48:41 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1274
fix sorting

Revision 1274 - Directory Listing - [select for diffs]
Modified Tue Oct 9 13:39:09 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1273
Add a device id for the 631xESB smbus controller.

Revision 1273 - Directory Listing - [select for diffs]
Modified Tue Oct 9 02:15:42 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1272
newfs_msdos is very slow, especially when working with usb flash drives aka memory sticks.

To speed things up, use 128KB chunks for I/O as they do on Mac OS X.  This patch is based on some code contributed to the freebsd file system mailing list by Mark Day @ apple.

I tested this on a Lexar 1GB stick that is only a few months old.  Before the patch, newfs_msdos took about 2 minutes.  Without the patch, the command returns nearly instantly.  Obviously buffering is occuring.  The file system seems to work fine, although I plan to do further testing.

Revision 1272 - Directory Listing - [select for diffs]
Modified Sun Oct 7 16:29:17 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1267
Fix a null pointer dereference in the POSIX priority classes.

Revision 1267 - Directory Listing - [select for diffs]
Modified Wed Oct 3 23:57:10 2007 UTC (16 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 1265
Fix a security issue with openssl.

For applications using the SSL_get_shared_ciphers() function, the
buffer overflow could allow an attacker to crash or potentially
execute arbitrary code with the permissions of the user running the
application. (freebsd advisory text).

Revision 1265 - Directory Listing - [select for diffs]
Modified Sat Sep 29 22:16:20 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1264
Add bsdtar tests.

Revision 1264 - Directory Listing - [select for diffs]
Modified Sat Sep 29 22:15:57 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1263
Upgrade to bsdtar 2.2.5

Revision 1263 - Directory Listing - [select for diffs]
Modified Sat Sep 29 22:13:40 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1262
Upgrade to libarchive 2.2.4.

Revision 1262 - Directory Listing - [select for diffs]
Modified Fri Sep 28 22:17:23 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1261
Remove $NetBSD$ tags in some cases as we're not going to be merging anything from that direction and it's in CVS.

Remove $FreeBSD$ on our ntpd as we've diverged.

add shutdown keyword to several services to end things cleanly.  More work is required here.

Revision 1261 - Directory Listing - [select for diffs]
Modified Fri Sep 28 13:47:20 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1260
Initial revision of pcc.

This is not connected to the build.  The Makefiles need more work first.

Revision 1260 - Directory Listing - [select for diffs]
Modified Fri Sep 28 03:01:31 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1259
Improvements to the sub.package schema.
Cleanup now always runs.
Fixed error handing in db_create.c

Revision 1259 - Directory Listing - [select for diffs]
Modified Thu Sep 27 23:09:12 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1258
Add usage and some basic argument checking.

Revision 1258 - Directory Listing - [select for diffs]
Modified Thu Sep 27 03:27:18 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1257
We now break up the conflict and depend inputs when they are inserted into
the stub db.

Revision 1257 - Directory Listing - [select for diffs]
Modified Thu Sep 27 03:26:38 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1256
Updated the error handling in mport_parse_plist_file().

Revision 1256 - Directory Listing - [select for diffs]
Modified Thu Sep 27 03:25:16 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1255
Updated the schema to make the conflicts and the depends a bit more
normalized.

Revision 1255 - Directory Listing - [select for diffs]
Modified Thu Sep 27 03:24:38 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1254
Fix an off by one error in the list parsing.

Revision 1254 - Directory Listing - [select for diffs]
Modified Wed Sep 26 20:29:18 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1253
Add libgcc_s.so so that we can play with pcc :)

Revision 1253 - Directory Listing - [select for diffs]
Modified Tue Sep 25 15:38:13 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1252
$MidnightBSD$

Revision 1252 - Directory Listing - [select for diffs]
Modified Tue Sep 25 15:26:50 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1251
Forced commit to note the patch originated from Ed Maste.

http://www.freebsd.org/cgi/query-pr.cgi?pr=81534

Revision 1251 - Directory Listing - [select for diffs]
Modified Tue Sep 25 15:25:42 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1250
libc_r close() fails if fstat() returns an error.  This causes problems with FreeBSD 4.x applications.

Since we don't control compat4x, this will never be fully resolved, but we can certainly fix our part.

Revision 1250 - Directory Listing - [select for diffs]
Modified Tue Sep 25 04:46:33 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1249
Add sqlite3.

Revision 1249 - Directory Listing - [select for diffs]
Modified Tue Sep 25 04:45:00 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1248
Add readline support.

Revision 1248 - Directory Listing - [select for diffs]
Modified Tue Sep 25 04:40:50 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1247
Remove depend on libpthread, as it is no longer needed.

Revision 1247 - Directory Listing - [select for diffs]
Modified Mon Sep 24 20:58:00 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1246
Add the cleanup code to create. Various bug fixes.

Revision 1246 - Directory Listing - [select for diffs]
Modified Mon Sep 24 20:54:15 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1245
we don't want or need a threadsafe sqlite.  If users need it, they can build
it from ports.

Revision 1245 - Directory Listing - [select for diffs]
Modified Mon Sep 24 16:49:59 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1244
Added mport_parselist().
Conflicts and depends are now inserted into the package file db.  The schema
of this will probably change once the install end is written and we know
what we need.

Revision 1244 - Directory Listing - [select for diffs]
Modified Mon Sep 24 16:49:06 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1243
Moved parselist to libmport.

Revision 1243 - Directory Listing - [select for diffs]
Modified Mon Sep 24 06:01:46 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1242
First working code for archive creation.  Many features still missing, but
it kinda works :).

Revision 1242 - Directory Listing - [select for diffs]
Modified Sun Sep 23 22:32:13 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1241
mport.create hook binary. This is basically complete, but needs some input
checking, a usage function, and a manpage.

Revision 1241 - Directory Listing - [select for diffs]
Modified Sun Sep 23 22:30:52 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1240
Start of libmport.  At the moment all it can do is a make a tmpdir with the
package-meta database.  Soon we'll pull in libarchive and start to make some
packages.

Revision 1240 - Directory Listing - [select for diffs]
Modified Sun Sep 23 22:29:21 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1239
remove some things that where for platforms we don't support.
add libsqlite3.

Revision 1239 - Directory Listing - [select for diffs]
Modified Sun Sep 23 20:03:56 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1238
The last revision of this was broken.

Revision 1238 - Directory Listing - [select for diffs]
Modified Fri Sep 21 19:24:27 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1237
libsqlite3 brings in libpthread, so we don't need to.

Revision 1237 - Directory Listing - [select for diffs]
Modified Fri Sep 21 19:23:48 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1236
libsqlite3 depends on pthread.

Revision 1236 - Directory Listing - [select for diffs]
Modified Fri Sep 21 19:17:37 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1234
Notes for 3.4.2

Revision 1234 - Directory Listing - [select for diffs]
Modified Fri Sep 21 19:14:36 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1232
This commit was generated by cvs2svn to compensate for changes in r1233,
which included commits to RCS files with non-trunk default branches.
Revision 1232 - Directory Listing - [select for diffs]
Modified Tue Sep 11 23:01:20 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1228
$MidnightBSD$

add -B option to find.  Obtained from FreeBSD.

Revision 1228 - Directory Listing - [select for diffs]
Modified Tue Sep 11 22:08:22 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1226
Document mksh update and the changes to libpthread.

Revision 1226 - Directory Listing - [select for diffs]
Modified Tue Sep 11 22:02:31 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1221
This commit was generated by cvs2svn to compensate for changes in r1225,
which included commits to RCS files with non-trunk default branches.
Revision 1221 - Directory Listing - [select for diffs]
Modified Tue Sep 11 16:39:00 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1220
threads should write to stderr when they have error messages.

Revision 1220 - Directory Listing - [select for diffs]
Modified Fri Sep 7 23:45:31 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1219
periodic runs on saturdays (from Dragonfly).

$MidnightBSD$

Revision 1219 - Directory Listing - [select for diffs]
Modified Fri Sep 7 15:16:34 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1218
Our first pass at SATA DVD drive support.  This has only been tested on Intel hardware, based on a patch from Richard Burton.

(atapi sata cd/dvd ahci)

Revision 1218 - Directory Listing - [select for diffs]
Modified Fri Sep 7 13:20:22 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1217
Remove umap fs man page reference

Revision 1217 - Directory Listing - [select for diffs]
Modified Mon Sep 3 02:27:28 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1216
Don't treat failure to find the operator GID as a fatal
error; this made it impossible to use newfs (and mdmfs) when /etc/group
is missing and /etc is read-only.

Obtained from FreeBSD

Revision 1216 - Directory Listing - [select for diffs]
Modified Mon Sep 3 01:48:29 2007 UTC (16 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 1215
Add chown to rescue.  It could be very handy.

Remove alpha bits.

Revision 1215 - Directory Listing - [select for diffs]
Modified Sun Sep 2 18:04:31 2007 UTC (16 years, 6 months ago) by ctriv
Original Path: trunk
Diff to previous 1214
Open port 22 on the desktop ruleset when sshd is enabled in rc.conf.

Revision 1214 - Directory Listing - [select for diffs]
Modified Fri Aug 31 05:47:34 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1213
Document the addition of the dot.mkshrc file in skel and ipfw desktop feature.

Revision 1213 - Directory Listing - [select for diffs]
Modified Fri Aug 31 03:08:38 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1212
add mksh file.

Revision 1212 - Directory Listing - [select for diffs]
Modified Fri Aug 31 02:16:27 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1211
Enable ipfw kernel module by default.

Use the new desktop configuration.

Disable verbose display of rulesets on startup.  (users get confused enough by the console)

Yes, we were going to use pf, but archite@ never completed the work.  I got sick of waiting and know ipfw better. Besides, it's familiar to Mac users. This ruleset is very similar to the default apple ships with ipfw enabled.

Revision 1211 - Directory Listing - [select for diffs]
Modified Fri Aug 31 02:12:37 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1210
Add a desktop configuration example with mild protection for desktops.  This ruleset is not intrusive and blocks ping + unsolicited TCP traffic.

Revision 1210 - Directory Listing - [select for diffs]
Modified Sat Aug 25 18:59:43 2007 UTC (16 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 1209
Removing GNU bc/dc.

Revision 1209 - Directory Listing - [select for diffs]
Modified Sat Aug 25 18:53:58 2007 UTC (16 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 1208
Remove GNU bc/dc from contrib.

Revision 1208 - Directory Listing - [select for diffs]
Modified Sat Aug 25 18:43:21 2007 UTC (16 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 1207
Replacing the GNU bc/dc with BSD versions obtained from OpenBSD.

Revision 1207 - Directory Listing - [select for diffs]
Modified Sun Aug 19 01:59:21 2007 UTC (16 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 1206
Updating Makefile's to build sudo correctly. Moved closefrom.c to lib/Makefile
as opposed to being in sudo/Makefile.

Revision 1206 - Directory Listing - [select for diffs]
Modified Sun Aug 19 01:58:31 2007 UTC (16 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 1205
Updating sudo to latest version from OpenBSD.

Revision 1205 - Directory Listing - [select for diffs]
Modified Sat Aug 18 08:00:38 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1204
Fix sshd issue with nologin.

Revision 1204 - Directory Listing - [select for diffs]
Modified Sat Aug 18 07:58:02 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1203
Obtained from FreeBSD:

pam_nologin(8) starts to provide an account management function in
addition to the existing authentication function so that sshd(8) can
respect nologin(5) while the rest of PAM consumers work as earlier.
In turn, sshd(8) starts to use the new account management function
in pam_nologin(8) and thus respect nologin(5) even when doing public
key authentication with sshd's internal routines (PAM authentication
isn't called at all in that case).

Revision 1203 - Directory Listing - [select for diffs]
Modified Sat Aug 18 07:40:09 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1202
Add cron PAM support.

Revision 1202 - Directory Listing - [select for diffs]
Modified Sat Aug 18 07:37:09 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1201
$MidnightBSD$

Add PAM supoprt to cron.  This will allow cron to skip commands by unavailable accounts depending on pam.conf for cron. This only effects personal crontabs and not /etc/crontab.

Also fix an issue with $HOME

Obtained from FreeBSD.

Revision 1201 - Directory Listing - [select for diffs]
Modified Sat Aug 18 06:59:04 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1200
Don't use implicit int.
$MidnightBSD$
Remove __P

Revision 1200 - Directory Listing - [select for diffs]
Modified Sat Aug 18 06:53:01 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1199
$MidnightBSD$

Revision 1199 - Directory Listing - [select for diffs]
Modified Sat Aug 18 06:50:52 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1198
The format of /etc/crontab is different.  (who field)

Don't allow silly people to use /etc/crontab by adding some anti foot shooting.

Obtained from FreeBSD rev 1.23 + 1.24

Revision 1198 - Directory Listing - [select for diffs]
Modified Sat Aug 18 05:44:20 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1197
Connect mksh to build.

Revision 1197 - Directory Listing - [select for diffs]
Modified Sat Aug 18 05:43:52 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1195
Remove OpenBSD ksh

Revision 1195 - Directory Listing - [select for diffs]
Modified Sat Aug 18 05:22:23 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1193
This commit was generated by cvs2svn to compensate for changes in r1194,
which included commits to RCS files with non-trunk default branches.
Revision 1193 - Directory Listing - [select for diffs]
Modified Sat Aug 18 05:19:27 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1192
Add mksh R30 Makefile.

Revision 1192 - Directory Listing - [select for diffs]
Modified Tue Aug 14 04:28:13 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1191
GNU tar be gone

Revision 1191 - Directory Listing - [select for diffs]
Modified Tue Aug 14 04:24:49 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1190
We've been using bsd tar.  I don't see why this is still here.

Revision 1190 - Directory Listing - [select for diffs]
Modified Mon Aug 13 20:01:18 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1189
Add etc/ssl/certs

Revision 1189 - Directory Listing - [select for diffs]
Modified Mon Aug 13 18:15:38 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1188
Sync etc/services with IANA.

This is only ports 1-1023.

Revision 1188 - Directory Listing - [select for diffs]
Modified Sun Aug 12 07:53:21 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1187
Our pax and cpio implementations do not support GNU style long options.  This is causing me hell in the transition off GNU cpio.  This adds some of the GNU longopts for cpio.

From NetBSD.

Revision 1187 - Directory Listing - [select for diffs]
Modified Sun Aug 12 04:19:23 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1186
un k&r some of this.  remove pc98 bits.

Revision 1186 - Directory Listing - [select for diffs]
Modified Sun Aug 12 04:07:56 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1185
I need to test these things.

Revision 1185 - Directory Listing - [select for diffs]
Modified Sun Aug 12 03:04:39 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1184
Speaker duration is incorrect according to the documentation.  Fix this.

$MidnightBSD$

Revision 1184 - Directory Listing - [select for diffs]
Modified Sun Aug 12 02:55:08 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1183
Return value is never used.  Don't bother to assign it, just ignore.

Revision 1183 - Directory Listing - [select for diffs]
Modified Sun Aug 12 02:47:58 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1181
Fix 106 key japanese keyboards.

Revision 1181 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:53:20 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1180
Fix datatype for Verbose.

Revision 1180 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:51:38 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1179
fix core dump

Revision 1179 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:50:02 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1178
variable verbosity.

Revision 1178 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:48:39 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1177
fix logio/static linkage

Revision 1177 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:46:56 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1176
x509 fix

Revision 1176 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:46:09 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1175
Close descriptor in retrieve_x509_marker function.

Revision 1175 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:44:49 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1174
Fix the logic bug that caused the custom versions of warn(3) and
warnx(3) to be compiled on systems that have it (e.g. FreeBSD),
while the intention was opposite, i.e., compile them on systems
that don't have them.  Also fixes static linkage of pkg_sign(1).

Revision 1174 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:42:15 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1173
whitespace

Revision 1173 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:41:21 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1172
add variable levels of verbosity

Revision 1172 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:39:29 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1171
spacing.  get rid of other INDEX definitions.  we've made a lot of changes to the pkg-tools for mports.  Let's bump version

Revision 1171 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:35:49 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1170
style

Revision 1170 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:34:59 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1169
Style fixes.

Revision 1169 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:33:57 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1168
bsdtar fixes.

Revision 1168 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:33:17 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1167
Indentation.

Revision 1167 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:32:49 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1166
 turn on libfetch debugging if -v was specified

Revision 1166 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:30:57 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1165
usage

Revision 1165 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:30:26 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1164
Clarify

Revision 1164 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:29:44 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1163
grammar fixes.

Revision 1163 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:27:40 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1162
Fix bugs with CWD

Revision 1162 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:25:46 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1161
variable verbosity

Revision 1161 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:24:11 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1160
Variable verbosity

Revision 1160 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:23:03 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1159
Fix usage

Revision 1159 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:19:55 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1158
Switch to BZIP2 by default.

get rid of _P usage

Revision 1158 - Directory Listing - [select for diffs]
Modified Fri Aug 10 00:17:09 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1157
Add -F option to nto fail on already installed packages.
by:   Eugene Grosbein <eugen@grosbein.pp.ru>

Revision 1157 - Directory Listing - [select for diffs]
Modified Thu Aug 9 23:05:15 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1156
Get rid of vile bubblesort!

Revision 1156 - Directory Listing - [select for diffs]
Modified Thu Aug 9 22:45:31 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1155
make it possible to use 1 sec wait time.

Revision 1155 - Directory Listing - [select for diffs]
Modified Thu Aug 9 22:43:34 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1153
Remove alpha support.

Revision 1153 - Directory Listing - [select for diffs]
Modified Wed Aug 8 02:27:19 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1152
Forced commit to add:

 The changes in the randomize_fd.c are pretty simple: Basically in the older algorithm you had to
walk thru the whole list element-by-element in order to reach an specific line and print it. This
process is rather slow in big lists (big files :)), since it had to go all the way from the head
of the list until it reached the element it randomly selected.
 The new algorithm only changes the way we access the elements, basically after the whole file is
loaded up into the linked-list, we create an array of pointers to rand_node pointers, basically we
walk over the whole list once (after the whole file is loaded into the list) and map each address
into an array position (in the same order they were inserted on the list), after that whenever a
random number is selected, we dont need to walk the whole list until we reach it, we simply
rand_node_table[selected] it and get it in one move.
 If the unique option is used, after a rand_node_table[selected] gets visited we set it to NULL
and if we reach that same slot afterwards, we simply go back and randomly select another number.
 Pretty simple.

 victor loureiro lima

Revision 1152 - Directory Listing - [select for diffs]
Modified Wed Aug 8 02:20:32 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1151
Add submitted patch that has been sitting in my inbox for over six months.

Revision 1151 - Directory Listing - [select for diffs]
Modified Wed Aug 8 00:41:43 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1150
Oops.. forgot $MidnightBSD$

Revision 1150 - Directory Listing - [select for diffs]
Modified Wed Aug 8 00:40:29 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1149
Sync with FreeBSD.  Includes OpenBSD 4, Dragonfly 1.10, etc.

Note they still don't list us :)

Revision 1149 - Directory Listing - [select for diffs]
Modified Tue Aug 7 06:16:23 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1148
Fix a tagging goof

Revision 1148 - Directory Listing - [select for diffs]
Modified Tue Aug 7 05:18:54 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1144
Remove autofs cruft.

Revision 1144 - Directory Listing - [select for diffs]
Modified Mon Aug 6 04:46:04 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1143
$MidnightBSD$

Revision 1143 - Directory Listing - [select for diffs]
Modified Mon Aug 6 04:45:21 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1142
Explain some of our recent changes.

Revision 1142 - Directory Listing - [select for diffs]
Modified Mon Aug 6 04:32:51 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1141
Remove umapfs.  Sorry :)

Revision 1141 - Directory Listing - [select for diffs]
Modified Mon Aug 6 04:32:20 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1138
$MidnightBSD$

Revision 1138 - Directory Listing - [select for diffs]
Modified Mon Aug 6 00:46:07 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1137
New version creates a receipt instead of removing one.  This is much easier to check for and handles the problem of mergemaster adding a new file, etc.

Revision 1137 - Directory Listing - [select for diffs]
Modified Mon Aug 6 00:23:51 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1133
Add firstboot script to do last minute configuration.

Currently, we just want to install packages for GNUstep, X11, WindowMaker, and slim.

firstboot needs to start after the network is up so we intentionally position it after dhclient just in case.

Revision 1133 - Directory Listing - [select for diffs]
Modified Thu Aug 2 08:33:00 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1130
Fix interaction with Windows 2000/XP servers.  If a newly created directory has exactly 50 entries, an error is generated as smbfs grabs 52 items at a time.  With . and .. this is 52.  It then returns on the second trip and causes some apps like rsync to generate errors.

Revision 1130 - Directory Listing - [select for diffs]
Modified Thu Aug 2 02:36:59 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1129
Apply security patch.  This is equivalent to 9.34p1

Revision 1129 - Directory Listing - [select for diffs]
Modified Thu Aug 2 02:30:22 2007 UTC (16 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 1125
Remove several menu options for Documentation.  These can be restored later when we have proper documenation.

Revision 1125 - Directory Listing - [select for diffs]
Modified Wed Aug 1 19:31:20 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1124
Don't install umap filesystem headers.

Revision 1124 - Directory Listing - [select for diffs]
Modified Wed Aug 1 15:33:52 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1123
Remove umapfs

Revision 1123 - Directory Listing - [select for diffs]
Modified Tue Jul 31 05:25:37 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1122
Remove umapfs.  It is totally broken.

Revision 1122 - Directory Listing - [select for diffs]
Modified Tue Jul 31 05:24:05 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1121
Remove umapfs.  It is seriously broken.

Revision 1121 - Directory Listing - [select for diffs]
Modified Tue Jul 31 05:18:36 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1120
Remove mount_autofs as it has been broken/removed from the kernel for awhile.

Revision 1120 - Directory Listing - [select for diffs]
Modified Tue Jul 31 04:31:26 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1119
Connect HPFS to bulid.

Revision 1119 - Directory Listing - [select for diffs]
Modified Tue Jul 31 04:30:54 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1118
Connect to build. (HPFS)

Revision 1118 - Directory Listing - [select for diffs]
Modified Tue Jul 31 04:30:20 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1117
K&R cleanup on mount_hpfs.c
WARNS 6
Make this compile again.

Revision 1117 - Directory Listing - [select for diffs]
Modified Sun Jul 29 21:20:15 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1116
Change formatting and text of message when a module is loaded.

Revision 1116 - Directory Listing - [select for diffs]
Modified Sun Jul 29 15:03:12 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1115
Remove GNU tar options

Revision 1115 - Directory Listing - [select for diffs]
Modified Sat Jul 28 01:27:45 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1113
Make the package limit dynamic instead of 200.

$MidnightBSD$

Revision 1113 - Directory Listing - [select for diffs]
Modified Fri Jul 27 21:32:46 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1112
Let the fun begin.

Rebranded man page (mostly).  There are still several errors and references to things like pesky alpha support.

Created a temporary hack to (hopefully) get BSD cpio working with the installation media.  If this works, we'll need to make some adjustments as to not waste memory and/or replace the mediaBufferSize function with something that makes sense.

Revision 1112 - Directory Listing - [select for diffs]
Modified Fri Jul 27 20:30:37 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1111
$MidnightBSD$

Revision 1111 - Directory Listing - [select for diffs]
Modified Fri Jul 27 02:54:40 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1110
We're making progress on transitioning off GNU cpio.

Revision 1110 - Directory Listing - [select for diffs]
Modified Thu Jul 26 22:15:40 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1109
Remove alpha bits.

Revision 1109 - Directory Listing - [select for diffs]
Modified Thu Jul 26 20:27:47 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1108
$MidnightBSD$

Revision 1108 - Directory Listing - [select for diffs]
Modified Thu Jul 26 20:17:41 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1107
$MidnightBSD$

Revision 1107 - Directory Listing - [select for diffs]
Modified Thu Jul 26 19:31:17 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1106
Remove LOCKS

Revision 1106 - Directory Listing - [select for diffs]
Modified Thu Jul 26 19:28:21 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1105
$MidnightBSD$

Revision 1105 - Directory Listing - [select for diffs]
Modified Thu Jul 26 18:48:57 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1104
Remove alpha bits.

Revision 1104 - Directory Listing - [select for diffs]
Modified Thu Jul 26 18:33:16 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1103
Remove pc98 bits.

Revision 1103 - Directory Listing - [select for diffs]
Modified Thu Jul 26 18:30:11 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1102
Remove alpha bits.

Revision 1102 - Directory Listing - [select for diffs]
Modified Thu Jul 26 18:14:38 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1101
Remove alpha and pc98 bits.

Revision 1101 - Directory Listing - [select for diffs]
Modified Thu Jul 26 17:08:59 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1100
Intel/IBM Blades do not have keyboard devices and will hang.  Avoid the hang with a timeout.

Apple intel-based Macs do not have a keyboard controller.  Provide a timeout for these devices.

Revision 1100 - Directory Listing - [select for diffs]
Modified Thu Jul 26 16:34:22 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1099
$MidnightBSD$

Revision 1099 - Directory Listing - [select for diffs]
Modified Thu Jul 26 16:27:58 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1098
A20 timeout for intel Macs.

Revision 1098 - Directory Listing - [select for diffs]
Modified Thu Jul 26 14:16:22 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1097
Remove picobsd and pc98 files.  As pc98 machines have not be made in Japan for several years, there is little point for us to try to support it.  FreeBSD has that niche.

I intentionally kept two apps within picobsd including the simple_httpd and PNG viewer which uses libvgl.  There are few examples of using vgl, so I thought this might be fun to play with for now.

Revision 1097 - Directory Listing - [select for diffs]
Modified Thu Jul 26 13:40:42 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1096
Remove outdated ports, change the name of pkgconfig to pkg-config

Revision 1096 - Directory Listing - [select for diffs]
Modified Wed Jul 25 19:57:08 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1095
vi is the default editor.  This is BSD after all.

Revision 1095 - Directory Listing - [select for diffs]
Modified Wed Jul 25 19:07:46 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1094
use ee

Revision 1094 - Directory Listing - [select for diffs]
Modified Wed Jul 25 14:25:36 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1093
Load sound before mixer.  Test if sound pci id file exists before
loading.  Don't run sound in a jail.  Clean up formatting and whitespace.

Revision 1093 - Directory Listing - [select for diffs]
Modified Wed Jul 25 13:29:52 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1092
Switch to BINDIR

Revision 1092 - Directory Listing - [select for diffs]
Modified Wed Jul 25 07:03:16 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1091
pick up bin

Revision 1091 - Directory Listing - [select for diffs]
Modified Wed Jul 25 06:47:43 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1090
use usage function

Revision 1090 - Directory Listing - [select for diffs]
Modified Wed Jul 25 06:38:46 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1089
clean up usage
remove a lint warning by adding not reached

Revision 1089 - Directory Listing - [select for diffs]
Modified Wed Jul 25 06:04:17 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1088
8 byte alignment for rwlock

Revision 1088 - Directory Listing - [select for diffs]
Modified Tue Jul 24 21:53:32 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1087
Adjust the parameters to pax.

Revision 1087 - Directory Listing - [select for diffs]
Modified Tue Jul 24 21:49:44 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1086
Get rid of FreeBSD 4 case.

Revision 1086 - Directory Listing - [select for diffs]
Modified Mon Jul 23 22:50:45 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1085
fix more typos

Revision 1085 - Directory Listing - [select for diffs]
Modified Mon Jul 23 22:48:19 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1084
fix comment typo

Revision 1084 - Directory Listing - [select for diffs]
Modified Mon Jul 23 22:45:27 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1083
security fix, strcpy to strlcpy

Revision 1083 - Directory Listing - [select for diffs]
Modified Mon Jul 23 20:55:49 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1082
*** empty log message ***

Revision 1082 - Directory Listing - [select for diffs]
Modified Mon Jul 23 16:14:40 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1081
kflag was defined twice.

Revision 1081 - Directory Listing - [select for diffs]
Modified Mon Jul 23 13:03:56 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1080
add -f flag to usage

Revision 1080 - Directory Listing - [select for diffs]
Modified Mon Jul 23 13:02:06 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1079
add support for linux scripts by adding "-f" flag to hostname

Revision 1079 - Directory Listing - [select for diffs]
Modified Mon Jul 23 12:49:56 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1078
make putenv() calls conform to -W compile flag

Revision 1078 - Directory Listing - [select for diffs]
Modified Mon Jul 23 12:42:30 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1077
should be long, not u_long

Revision 1077 - Directory Listing - [select for diffs]
Modified Mon Jul 23 12:39:39 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1076
-l and -t are mutually exclusive

Revision 1076 - Directory Listing - [select for diffs]
Modified Mon Jul 23 12:34:12 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1075
fix blocksize

Revision 1075 - Directory Listing - [select for diffs]
Modified Mon Jul 23 12:27:22 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1074
two security fixes, use strlcpy instead of strncpy

Revision 1074 - Directory Listing - [select for diffs]
Modified Mon Jul 23 12:22:02 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1073
security fix, use strlcpy instead of strncpy

Revision 1073 - Directory Listing - [select for diffs]
Modified Mon Jul 23 12:12:50 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1072
close on error

Revision 1072 - Directory Listing - [select for diffs]
Modified Mon Jul 23 10:25:47 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1071
switch to pax
$MidnightBSD$

Revision 1071 - Directory Listing - [select for diffs]
Modified Mon Jul 23 10:24:23 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1070
Adjust crunch to include pax/tar.

Revision 1070 - Directory Listing - [select for diffs]
Modified Mon Jul 23 10:23:19 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1069
Remove unneeded echo

Revision 1069 - Directory Listing - [select for diffs]
Modified Mon Jul 23 07:22:01 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1068
Experiment with removing cpio during most of the build process. Change base version to 0.2 for current.  Correct the path for Distfiles as ctriv changed
the name from distfiles.

Revision 1068 - Directory Listing - [select for diffs]
Modified Sun Jul 22 09:45:20 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1067
$MidnightBSD$

Revision 1067 - Directory Listing - [select for diffs]
Modified Sun Jul 22 09:42:26 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1066
Start using old BSD cpio.

Revision 1066 - Directory Listing - [select for diffs]
Modified Sun Jul 22 09:41:35 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1065
Disconnect GNU cpio from build.

Revision 1065 - Directory Listing - [select for diffs]
Modified Sun Jul 22 07:57:59 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1064
MidnightBSD has had a behavior where incoming packets were dropped if the MRU > MTU.  If you had a device misconfigured on your network, for instance with jumbo frames, the network stack would drop packets.  This is not a desired behavior in most cases.

However, some people like to experiment with the existing behavior or have other reasons such as detecting misconfigured devices.  We now have a new sysctl net.link.ether.MTUisMRU which allows you to tune this behavior.  0 is the default and implies the stack will take all incoming packets that it can handle whereas 1 reverts to the old behavior.

This patch was inspired by work from Julian Elischer @ freebsd-net

Revision 1064 - Directory Listing - [select for diffs]
Modified Sat Jul 21 11:02:32 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1063
Running md5 and sha256 is rather helpful.

Revision 1063 - Directory Listing - [select for diffs]
Modified Fri Jul 20 20:02:28 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1062
Add a modified version of DragonFly's nrelease.  We will initially use this to build MidnightBSD Live CD's and later for our own custom installer.

This should build a bootable live cd.  I've been testing it on amd64 by first doing a buildworld and then cd nrelease; make buildiso; make mkiso

The CD must be in the first cdrom drive to work.

Revision 1062 - Directory Listing - [select for diffs]
Modified Fri Jul 20 17:41:33 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1061
Clarify procedure to enable softupdates on the root file system.

Revision 1061 - Directory Listing - [select for diffs]
Modified Fri Jul 20 12:03:35 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1060
Fix a security issue with tcpdump.  There is potential for remote system access in some cases.  It is caused by the incorrect use of snprintf.

Our version is significantly out of date, but this issue needs attention now.

Revision 1060 - Directory Listing - [select for diffs]
Modified Thu Jul 19 15:22:57 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1059
Mention cpdup import

Revision 1059 - Directory Listing - [select for diffs]
Modified Thu Jul 19 15:11:27 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1058
$MidnightBSD$

Change domain to MidnightBSD.org.  While we don't technically need "freefall", it might be handy to keep around for now.

Revision 1058 - Directory Listing - [select for diffs]
Modified Thu Jul 19 15:05:06 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1057
$MidnightBSD$

Revision 1057 - Directory Listing - [select for diffs]
Modified Thu Jul 19 09:36:39 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1056
Add Matt Dillon's cpdup from DragonFly

Revision 1056 - Directory Listing - [select for diffs]
Modified Thu Jul 19 07:54:18 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1055
Undo some of the damage from our "helpful" script

Revision 1055 - Directory Listing - [select for diffs]
Modified Thu Jul 19 06:46:44 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1054
Forgot to log cpio upgrade.

Revision 1054 - Directory Listing - [select for diffs]
Modified Thu Jul 19 04:54:07 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1053
Correct bug in script adding $MidnightBSD$

Revision 1053 - Directory Listing - [select for diffs]
Modified Wed Jul 18 03:55:15 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1052
Recognize and skip 'x' and 'g' pax extension entries.
Patch from FreeBSD.

Revision 1052 - Directory Listing - [select for diffs]
Modified Tue Jul 17 13:21:16 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1051
Fix the URLs to our website documentation.  We don't have a lot yet, but there is some available.

Revision 1051 - Directory Listing - [select for diffs]
Modified Tue Jul 17 13:14:24 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1050
Get rid of hard coded values.

Revision 1050 - Directory Listing - [select for diffs]
Modified Tue Jul 17 13:08:07 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1049
Write to the slice instead of the disk to fix upgrades with boot code

Revision 1049 - Directory Listing - [select for diffs]
Modified Tue Jul 17 13:01:48 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1048
modernize

Revision 1048 - Directory Listing - [select for diffs]
Modified Tue Jul 17 12:58:36 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1047
cleanup.

Revision 1047 - Directory Listing - [select for diffs]
Modified Tue Jul 17 12:57:25 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1046
Increase minimum usr size.

Make sure /usr size with auto sizing is adequate with small disk sizes <10GB

Revision 1046 - Directory Listing - [select for diffs]
Modified Tue Jul 17 12:49:34 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1045
Modernize the example install.cfg file.

Revision 1045 - Directory Listing - [select for diffs]
Modified Tue Jul 17 12:36:14 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1044
Fix input text.

Revision 1044 - Directory Listing - [select for diffs]
Modified Tue Jul 17 12:35:09 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1043
Change group to ftp when setting up anonymous ftp.

Revision 1043 - Directory Listing - [select for diffs]
Modified Tue Jul 17 10:36:11 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1042
$MidnightBSD$

Revision 1042 - Directory Listing - [select for diffs]
Modified Tue Jul 17 10:25:13 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1041
$MidnightBSD$

Revision 1041 - Directory Listing - [select for diffs]
Modified Tue Jul 17 10:11:11 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1040
$MidnightBSD$

Revision 1040 - Directory Listing - [select for diffs]
Modified Tue Jul 17 09:48:29 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1039
$MidnightBSD$

Revision 1039 - Directory Listing - [select for diffs]
Modified Tue Jul 17 09:25:07 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1038
$MidnightBSD$

Revision 1038 - Directory Listing - [select for diffs]
Modified Mon Jul 16 14:39:04 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1037
Update to cpio 2.8.  This is the last pre GPLv3 release.

Revision 1037 - Directory Listing - [select for diffs]
Modified Mon Jul 16 12:52:04 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1036
Remove FREEBSD-upgrade

Revision 1036 - Directory Listing - [select for diffs]
Modified Mon Jul 16 12:51:38 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1034
*** empty log message ***

Revision 1034 - Directory Listing - [select for diffs]
Modified Mon Jul 16 12:47:21 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1032
This commit was generated by cvs2svn to compensate for changes in r1033,
which included commits to RCS files with non-trunk default branches.
Revision 1032 - Directory Listing - [select for diffs]
Modified Mon Jul 16 03:00:45 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1031
 Back this out as well.

Revision 1031 - Directory Listing - [select for diffs]
Modified Mon Jul 16 02:58:41 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1030
Back this change out.

Revision 1030 - Directory Listing - [select for diffs]
Modified Mon Jul 16 00:12:51 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1029
Better handle error condition for msdos file system.

Revision 1029 - Directory Listing - [select for diffs]
Modified Mon Jul 16 00:07:50 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1028
$MidnightBSD$

Revision 1028 - Directory Listing - [select for diffs]
Modified Sun Jul 15 23:46:05 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1027
Free resources.

Revision 1027 - Directory Listing - [select for diffs]
Modified Sun Jul 15 23:42:46 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1026
fixes page fault on flash msdosfs

Revision 1026 - Directory Listing - [select for diffs]
Modified Sun Jul 15 11:41:50 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1025
without casting, neg values can prevent opening a socket

Revision 1025 - Directory Listing - [select for diffs]
Modified Sun Jul 15 11:22:44 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1024
*** empty log message ***

Revision 1024 - Directory Listing - [select for diffs]
Modified Sat Jul 14 23:04:03 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1023
cleanup

Revision 1023 - Directory Listing - [select for diffs]
Modified Sat Jul 14 22:57:33 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1022
cleanup for already existing user

Revision 1022 - Directory Listing - [select for diffs]
Modified Sat Jul 14 22:31:40 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1021
enable ssh automatically

Revision 1021 - Directory Listing - [select for diffs]
Modified Sat Jul 14 15:51:00 2007 UTC (16 years, 8 months ago) by alex
Original Path: trunk
Diff to previous 1019
change incorrect filename on fstat() failure

Revision 1019 - Directory Listing - [select for diffs]
Modified Thu Jul 12 21:59:15 2007 UTC (16 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 1018
Preliminary libarchive security patch.  This is equivalent to FreeBSD-SA-07:05.libarchive

Revision 1018 - Directory Listing - [select for diffs]
Modified Sat Jun 30 01:05:42 2007 UTC (16 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1017
Add sound "autodetection"

Revision 1017 - Directory Listing - [select for diffs]
Modified Sat Jun 30 01:04:15 2007 UTC (16 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1016
Add sound directory for sound "autodetection"

Revision 1016 - Directory Listing - [select for diffs]
Modified Sat Jun 30 01:02:26 2007 UTC (16 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1015
Add "autodetection" for sound.

Revision 1015 - Directory Listing - [select for diffs]
Modified Sat Jun 30 00:58:44 2007 UTC (16 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1014
Add $MidnightBSD$

Revision 1014 - Directory Listing - [select for diffs]
Modified Sun Jun 24 04:53:23 2007 UTC (16 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1013
Add sdiff

Revision 1013 - Directory Listing - [select for diffs]
Modified Sun Jun 24 04:49:41 2007 UTC (16 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1012
sdiff

Revision 1012 - Directory Listing - [select for diffs]
Modified Sun Jun 24 04:49:21 2007 UTC (16 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 1011
Add $MidnightBSD$

remove sdiff...

Revision 1011 - Directory Listing - [select for diffs]
Modified Fri Jun 1 03:22:37 2007 UTC (16 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1010
SMP is now default on amd64.

Revision 1010 - Directory Listing - [select for diffs]
Modified Fri Jun 1 03:20:15 2007 UTC (16 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1009
Remove SMP configuration as its not default in GENERIC.

Revision 1009 - Directory Listing - [select for diffs]
Modified Fri Jun 1 03:19:47 2007 UTC (16 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1008
SMP is enabled by default on i386.

Revision 1008 - Directory Listing - [select for diffs]
Modified Sun May 27 00:05:58 2007 UTC (16 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1006
Fix typo in comment.

Revision 1006 - Directory Listing - [select for diffs]
Modified Wed May 23 17:26:02 2007 UTC (16 years, 10 months ago) by ctriv
Original Path: trunk
Diff to previous 1005
Security fix. When writing data to a buffer in the file_printf function, the
length of the unused portion of the bugger if not correctly tracked.  See
FreeBSD SA-07:04.

Revision 1005 - Directory Listing - [select for diffs]
Modified Mon May 14 06:12:57 2007 UTC (16 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 1004
$MidnightBSD$

Use unsigned comparisons.  This fixes some bugs in the following case:

1. i386
2. program calling update is statically linked to libmd
3. buffer provided is aligned modulo 4 bytes
4. the buffer extends beyond 2 GB.

Bugs 1-3 still cause problems beyond 4GB.

Revision 1004 - Directory Listing - [select for diffs]
Modified Fri May 11 06:32:11 2007 UTC (16 years, 10 months ago) by ctriv
Original Path: trunk
Diff to previous 1003
Added LIBSQLITE3 variable.

Revision 1003 - Directory Listing - [select for diffs]
Modified Fri May 11 06:31:41 2007 UTC (16 years, 10 months ago) by ctriv
Original Path: trunk
Diff to previous 1002
Added sqlite3 shell.

Revision 1002 - Directory Listing - [select for diffs]
Modified Fri May 11 06:31:15 2007 UTC (16 years, 10 months ago) by ctriv
Original Path: trunk
Diff to previous 1001
Added libsqlite3.

Revision 1001 - Directory Listing - [select for diffs]
Modified Fri May 11 06:30:03 2007 UTC (16 years, 10 months ago) by ctriv
Original Path: trunk
Diff to previous 999
Added cvs import command.

Revision 999 - Directory Listing - [select for diffs]
Modified Fri May 11 06:26:31 2007 UTC (16 years, 10 months ago) by ctriv
Original Path: trunk
Diff to previous 997
This commit was generated by cvs2svn to compensate for changes in r998,
which included commits to RCS files with non-trunk default branches.
Revision 997 - Directory Listing - [select for diffs]
Modified Mon May 7 16:56:09 2007 UTC (16 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 996
Configuration ROM length should be unsigned.

Revision 996 - Directory Listing - [select for diffs]
Modified Mon May 7 16:54:09 2007 UTC (16 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 995
Initialize configuration ROM before a bus reset.

Revision 995 - Directory Listing - [select for diffs]
Modified Mon May 7 16:50:10 2007 UTC (16 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 993
Don't call fw_busreset(fc) in firewire_attach

Revision 993 - Directory Listing - [select for diffs]
Modified Sat May 5 17:42:00 2007 UTC (16 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 992
Add a cast to our previous fix.

Revision 992 - Directory Listing - [select for diffs]
Modified Thu May 3 05:41:47 2007 UTC (16 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 990
UDP checksums are checked in place, overwriting whatever is there.  This has the side effect of the ICMP code sending back the first eight bytes of the UDP payload with 2 bytes different.

Patch by Matthew Luckie.

Revision 990 - Directory Listing - [select for diffs]
Modified Thu May 3 04:57:30 2007 UTC (16 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 989
Module name changed to mports-all

Revision 989 - Directory Listing - [select for diffs]
Modified Tue May 1 17:59:53 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 988
Forced commit to add this relates to FreeBSD threads/112297

Revision 988 - Directory Listing - [select for diffs]
Modified Tue May 1 17:59:06 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 987
A memory leak was reported.  When an application uses a large number of threads, memory appears to be leaked. (clamav for instance)

free_tls does not free all memory in dtv which is allocated earlier by calloc.  The function appears to use a very carefully constructed free loop.  There could be side effects to this patch.

Test and MFC after 1 month.

Reported by Spencer Minear to the FreeBSD project.

Revision 987 - Directory Listing - [select for diffs]
Modified Tue May 1 05:17:38 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 986
Fix strtoul() error condition check.

Revision 986 - Directory Listing - [select for diffs]
Modified Tue May 1 04:28:04 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 985
Files were not written with correct permissions.  (as pointed out by ctriv)

This is a patch from http://cvs.savannah.gnu.org/viewcvs/cpio/src/copypass.c?root=cpio&r1=1.11&r2=1.12

Revision 985 - Directory Listing - [select for diffs]
Modified Mon Apr 30 01:57:27 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 983
We don't have portsnap so don't create the directory.

Revision 983 - Directory Listing - [select for diffs]
Modified Fri Apr 27 20:29:07 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 982
This is equivalent to the recent OpenBSD discover of type 0 routing headers as insecure.  There is now a sysctl to enable the behavior.  Currently, this is not needed unless the host is acting as a router.  In which case, ideally there should be firewall rules in place to protect the host.  ipfw and pf do not offer solutions to protect systems entirely yet.

This patch is derived from the FreeBSD SA-07:03.ipv6 patch.

Revision 982 - Directory Listing - [select for diffs]
Modified Tue Apr 24 18:45:52 2007 UTC (16 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 981
Add support for recent GNUstep layouts.

Revision 981 - Directory Listing - [select for diffs]
Modified Fri Apr 20 15:12:55 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 980
Fix twiddle display.

Revision 980 - Directory Listing - [select for diffs]
Modified Fri Apr 20 15:06:48 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 979
Add -mno-sse3 for prescott/nocona.

Revision 979 - Directory Listing - [select for diffs]
Modified Thu Apr 19 04:56:38 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 977
Fix a buffer overflow.

Revision 977 - Directory Listing - [select for diffs]
Modified Tue Apr 17 17:04:46 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 976
Add the NVIDIA nForce MCP61 ATA controller.

Revision 976 - Directory Listing - [select for diffs]
Modified Sun Apr 15 06:14:04 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 975
We're 0.2 now.

Revision 975 - Directory Listing - [select for diffs]
Modified Sun Apr 15 06:05:06 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 974
Make sh and ksh source GNUstep.sh if it exists.  This will allow openapp and friends to work automatically.

Revision 974 - Directory Listing - [select for diffs]
Modified Sun Apr 15 05:55:55 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 973
Source GNUstep.csh if it exists.  This will save the user from sourcing this thing all the freaking time.  openapp working by default is good :)

As we plan on installing GNUstep by default, this should be quite helpful.

Revision 973 - Directory Listing - [select for diffs]
Modified Sun Apr 15 04:55:21 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 972
whitespace

Revision 972 - Directory Listing - [select for diffs]
Modified Fri Apr 13 21:16:04 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 971
$MidnightBSD$

Revision 971 - Directory Listing - [select for diffs]
Modified Fri Apr 13 05:35:11 2007 UTC (16 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 970
Mport fixes.
Some ports use bsd.prog.mk for custom dist makefiles.  Make sure that this
plays nice with the new fake system.

Revision 970 - Directory Listing - [select for diffs]
Modified Fri Apr 13 03:20:00 2007 UTC (16 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 969
bsd.mport.mk is now the default.  Let the instability in ports begin!

Revision 969 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:48:17 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 968
Add directions for cpio 2.7

Revision 968 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:47:35 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 967
add some missing and apparently required files.

Revision 967 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:46:55 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 966
Update to 2.7

Revision 966 - Directory Listing - [select for diffs]
Modified Thu Apr 12 03:46:39 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 965
Update to cpio 2.7.

Revision 965 - Directory Listing - [select for diffs]
Modified Thu Apr 12 02:21:29 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 963
They moved most things into the src subdirectory.

Revision 963 - Directory Listing - [select for diffs]
Modified Thu Apr 12 02:12:30 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 960
This commit was generated by cvs2svn to compensate for changes in r962,
which included commits to RCS files with non-trunk default branches.
Revision 960 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:34:26 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 959
bzip2 switchover with revised directions.

Revision 959 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:30:30 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 957
$MidnightBSD$

Revision 957 - Directory Listing - [select for diffs]
Modified Thu Apr 12 01:27:23 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 955
This commit was generated by cvs2svn to compensate for changes in r956,
which included commits to RCS files with non-trunk default branches.
Revision 955 - Directory Listing - [select for diffs]
Modified Tue Apr 10 22:05:46 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 954
Update for less v394
$MidnightBSD$

Revision 954 - Directory Listing - [select for diffs]
Modified Tue Apr 10 22:00:06 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 952
less v394

Revision 952 - Directory Listing - [select for diffs]
Modified Tue Apr 10 21:58:45 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 950
This commit was generated by cvs2svn to compensate for changes in r951,
which included commits to RCS files with non-trunk default branches.
Revision 950 - Directory Listing - [select for diffs]
Modified Tue Apr 10 21:30:11 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 949
$MidnightBSD$

Revision 949 - Directory Listing - [select for diffs]
Modified Tue Apr 10 21:17:35 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 947
Update build for tcsh-6.15.00

Revision 947 - Directory Listing - [select for diffs]
Modified Tue Apr 10 21:07:41 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 945
This commit was generated by cvs2svn to compensate for changes in r946,
which included commits to RCS files with non-trunk default branches.
Revision 945 - Directory Listing - [select for diffs]
Modified Tue Apr 10 06:31:58 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 944
Throw in some more version numbers as we may add features from other BSDs.  MidnightBSD 0.2 is already in there.

Revision 944 - Directory Listing - [select for diffs]
Modified Tue Apr 10 06:28:53 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 943
Update to 0.2-CURRENT

Revision 943 - Directory Listing - [select for diffs]
Modified Tue Apr 10 06:24:54 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 942
$MidnightBSD$

Revision 942 - Directory Listing - [select for diffs]
Modified Tue Apr 10 06:11:10 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 941
$MidnightBSD$

Revision 941 - Directory Listing - [select for diffs]
Modified Tue Apr 10 06:03:28 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 940
Set the version number internally to .2

Revision 940 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:57:22 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 939
Document the flag added by the DragonFly patches.

Revision 939 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:50:39 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 938
Explain that we branched and begin doing real work with src again.

cvs was updated to 1.12.13.

Revision 938 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:47:19 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 937
cvsbug was removed, might as well delete the files too.

Revision 937 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:42:31 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 936
No longer included.

Revision 936 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:41:14 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 935
getopt.h is no longer included.

Revision 935 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:37:26 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 934
Explain some of the things we had to do to  put this together.

Revision 934 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:34:55 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 933
3 additional files we are not importing.

__fpending is not supported by MidnightBSD.  Its a Solaris thing which DF and Linux also happen to support.  It checks the pending buffer on a stream.

lib/getdate.y does not work with our system yacc.  It requires bison 1.875+.

Revision 933 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:30:11 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 932
Patches from Dragonfly.

Allow legacy tag/tagexpand options file used by all the BSD projects.

zlib.c: byte by byte to fix infinity waiting on some zlib operations while using compression.

Revision 932 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:26:23 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 931
Patches from DragonFly.

Revision 931 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:24:03 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 930
Remove getdate.y as it does not build with our system yacc.  Need bision 1.875+

closeout.c can not use __fpending as we do not have it in MidnightBSD.

Revision 930 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:19:53 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 929
We're removing this cvsbug as developers can figure out how to submit changes

Revision 929 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:19:02 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 927
Update for 1.12.13.

It was much simpler to update to this newer version of cvs than to fix the tag/tagexpand for $MidnightBSD$ type tags.

This is based on the patches from DragonFly with most of their extensinos.  The manpages aren't updated yet.

One caveat, the __fpending libc/stdio function is missing in MidnightBSD.  This is a Solarisism which was added to Linux and DragonFly.  For now, we've simply deleted references to it.  That means the pending buffer is not checked which may or may not be a real issue.

src/contrib/cvs/lib/getdate.y will not build with our system yacc.  It requires a version of bison newer than 1.75 (1.875 worked).  I will just commit the generated files instead.

Revision 927 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:12:41 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 925
This commit was generated by cvs2svn to compensate for changes in r926,
which included commits to RCS files with non-trunk default branches.
Revision 925 - Directory Listing - [select for diffs]
Modified Tue Apr 10 05:05:08 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 924
Remove cvsbug as most people know how to report such things.

Revision 924 - Directory Listing - [select for diffs]
Modified Tue Apr 10 00:54:02 2007 UTC (16 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 922
Added native support for @dirrmtry.

Revision 922 - Directory Listing - [select for diffs]
Modified Tue Apr 10 00:00:26 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 920
This commit was generated by cvs2svn to compensate for changes in r921,
which included commits to RCS files with non-trunk default branches.
Revision 920 - Directory Listing - [select for diffs]
Modified Tue Apr 10 00:00:25 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 918
This commit was generated by cvs2svn to compensate for changes in r919,
which included commits to RCS files with non-trunk default branches.
Revision 918 - Directory Listing - [select for diffs]
Modified Mon Apr 9 23:24:11 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 917
Add md5.c as it was missing.

Revision 917 - Directory Listing - [select for diffs]
Modified Mon Apr 9 23:08:18 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 915
*** empty log message ***

Revision 915 - Directory Listing - [select for diffs]
Modified Mon Apr 9 23:07:01 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 913
This commit was generated by cvs2svn to compensate for changes in r914,
which included commits to RCS files with non-trunk default branches.
Revision 913 - Directory Listing - [select for diffs]
Modified Mon Apr 9 22:57:54 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 912
Revise directions.

Revision 912 - Directory Listing - [select for diffs]
Modified Mon Apr 9 22:38:40 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 910
Change FREEBSD upgrade and Xlist to MIDNIGHTBSD

Revision 910 - Directory Listing - [select for diffs]
Modified Mon Apr 9 01:11:41 2007 UTC (16 years, 11 months ago) by ctriv
Original Path: trunk
Diff to previous 909
Close a possible buffer overflow in package deletion.  There are probably
other such errors in this code.

Revision 909 - Directory Listing - [select for diffs]
Modified Sun Apr 8 19:54:01 2007 UTC (16 years, 11 months ago) by archite
Original Path: trunk
Diff to previous 908
Importing initial form of bsd.patch.mk. While this is not a final version,
nor is it truly usefull to anyone other than the security officer, this
should be contained in the cvs tree now. Please note that various updates
to this mk file will continue and do not depend on it being in this form.

Revision 908 - Directory Listing - [select for diffs]
Modified Sat Apr 7 02:17:03 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 907
Clean up the chroot patch.  Remove SLOGGER definition since its no longer used.  Go to WARNS 3 since there
are const errors with the second parameter of kenv.  I could fix this with a const char [] definition for each entry,
but the current approach is easier to read.

This effectively equates to FreeBSD init.c 1.63 with some local changes.  Like the previous chroot patch commit,
this is based on work by Oliver Fromme.

Revision 907 - Directory Listing - [select for diffs]
Modified Sat Apr 7 01:21:34 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 906
Add further directions to the propolice removal bit.

Revision 906 - Directory Listing - [select for diffs]
Modified Fri Apr 6 20:37:50 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 905
Back out propolice.  More information in UPDATING.

In short, propolice broke libpthread and libthr.

Revision 905 - Directory Listing - [select for diffs]
Modified Fri Apr 6 20:12:31 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 904
$MidnightBSD$ and whitespace

Revision 904 - Directory Listing - [select for diffs]
Modified Fri Apr 6 20:03:33 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 903
Disable -g flag

Revision 903 - Directory Listing - [select for diffs]
Modified Fri Apr 6 19:58:03 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 902
$MidightBSD$

Backout recent changes so that we can detect problems easily.  curthread == NULL with the propolice patch in several cases.

Revision 902 - Directory Listing - [select for diffs]
Modified Fri Apr 6 19:49:14 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 901
$MidnightBSD$

Revision 901 - Directory Listing - [select for diffs]
Modified Fri Apr 6 17:59:29 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 900
$MidnightBSD$

Make cvs report the correct operating system.

Revision 900 - Directory Listing - [select for diffs]
Modified Thu Apr 5 04:17:02 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 899
!= :)

Revision 899 - Directory Listing - [select for diffs]
Modified Thu Apr 5 04:09:05 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 898
Remove ProPolice portion.  Its un-needed.

Revision 898 - Directory Listing - [select for diffs]
Modified Thu Apr 5 03:52:16 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 897
After adding pro police, we started failing one of the regression tests that we used to pass (mutex_d).

curthread can be NULL in some cases.  This was causing the test app to crash.

Revision 897 - Directory Listing - [select for diffs]
Modified Thu Apr 5 02:45:54 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 896
Some /sbin utilities require this.

Revision 896 - Directory Listing - [select for diffs]
Modified Thu Apr 5 02:45:23 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 895
$MidnightBSD$

Revision 895 - Directory Listing - [select for diffs]
Modified Tue Apr 3 18:03:04 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 894
Missed one...

Revision 894 - Directory Listing - [select for diffs]
Modified Tue Apr 3 18:01:25 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 893
Add missing prototypes through header includes.

Revision 893 - Directory Listing - [select for diffs]
Modified Tue Apr 3 17:48:34 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 892
fix paths

Revision 892 - Directory Listing - [select for diffs]
Modified Tue Apr 3 14:42:19 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 891
Prevent a panic by checking for NULL and print a message to that effect.

Revision 891 - Directory Listing - [select for diffs]
Modified Tue Apr 3 14:27:26 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 890
Sync a number of useful changes with BSD sed.

This corrects behavior with 'c" functions.

Revision 890 - Directory Listing - [select for diffs]
Modified Tue Apr 3 13:30:31 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 889
Remove bandaid.

Giant was locked on calls to sorecieve() and sosend() to fix a race condition which shouldn't be a problem anymore.

Revision 889 - Directory Listing - [select for diffs]
Modified Tue Apr 3 13:24:36 2007 UTC (16 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 888
Remove GIANT lock which should not be ndded with make_dev(9)

Revision 888 - Directory Listing - [select for diffs]
Modified Mon Apr 2 20:21:15 2007 UTC (16 years, 11 months ago) by archite
Original Path: trunk
Diff to previous 887
Small correction to install directions for proplice. Added requirement
to build libpthread and libthr first.

Revision 887 - Directory Listing - [select for diffs]
Modified Mon Apr 2 02:26:37 2007 UTC (17 years ago) by archite
Original Path: trunk
Diff to previous 886
Slight update to set default hostname for those who, like the Guy in the Red
Shirt, are forsaken because they did not set a hostname.

Revision 886 - Directory Listing - [select for diffs]
Modified Mon Apr 2 00:48:03 2007 UTC (17 years ago) by archite
Original Path: trunk
Diff to previous 885
Importing propolice into MidnightBSD. Propolice is going to
provide us with much greater security and stability in the
long run. If upgrading from a pre-propolice system, please
follow the these instructions:

cd /usr/src/lib/libc && make obj && make && make install
cd /usr/src/gnu/usr.bin/cc && make obj && make && make install
buildworld and kernel

It is adviced that any mports which were installed and/or built
prior to the propolice update also be updated. If any errors
or issue are encounted, please contact security@midnightbsd.org
and we will be sure to investigate and come up with an expeditious
fix.

Revision 885 - Directory Listing - [select for diffs]
Modified Mon Apr 2 00:03:51 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 884
stop command wouldn't work without the command specified.

Revision 884 - Directory Listing - [select for diffs]
Modified Fri Mar 30 05:36:52 2007 UTC (17 years ago) by ctriv
Original Path: trunk
Diff to previous 883
Add a new variable, PORT_SYSTEM.  If you set PORT_SYSTEM to "mport" in your
make.conf, your system will use the new mport package database and tools
instead of the old pkg_* binaries and /var/db/pkg.

Given that mport is in very early developement, and isn't even close to
alpha code yet, you will be ill advised to use it on your production
machine.

Revision 883 - Directory Listing - [select for diffs]
Modified Fri Mar 30 01:48:15 2007 UTC (17 years ago) by archite
Original Path: trunk
Diff to previous 882
To avoid any confusion, the default PS1 for a user user with UID != 0
has been changed back to "$ ". Please update either ~/.profile or
~/.kshrc if you prefer to use the previous "> " PS1. While consistancy
is important, we have decided that we do not want to confuse anyone
who might mistake the previous PS1 for that of {t}csh's default prompt.

Revision 882 - Directory Listing - [select for diffs]
Modified Thu Mar 29 23:02:48 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 881
Increase LOMTU to 32768.  The previous value was set in 1995.  NetBSD has been using around 32k since the BSD 4.4 lite import.

My testing has shown 32768 is faster on some workloads.  There is a very slight drop transfer large, cached data but uncached data showed a noticable improvement.

Revision 881 - Directory Listing - [select for diffs]
Modified Thu Mar 29 22:44:53 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 880
Remove WARNS from cpufreq Makefile.  kernel source Makefiles should not use WANRS as it conflicts with kernel build options.

Add additional Pentium M cpus.

Revision 880 - Directory Listing - [select for diffs]
Modified Thu Mar 29 20:05:06 2007 UTC (17 years ago) by archite
Original Path: trunk
Diff to previous 879
Adding ksh.kshrc into /etc for user convenience

Revision 879 - Directory Listing - [select for diffs]
Modified Thu Mar 29 20:03:05 2007 UTC (17 years ago) by archite
Original Path: trunk
Diff to previous 878
Small changes to ksh to make more csh like. Also sets umask now.

Revision 878 - Directory Listing - [select for diffs]
Modified Thu Mar 29 20:02:18 2007 UTC (17 years ago) by archite
Original Path: trunk
Diff to previous 877
Update to main.c to make ksh more csh like for consistancy.

Revision 877 - Directory Listing - [select for diffs]
Modified Sat Mar 24 07:56:45 2007 UTC (17 years ago) by archite
Original Path: trunk
Diff to previous 876
Importing ohash.h into includes for ohash functions.

Revision 876 - Directory Listing - [select for diffs]
Modified Sat Mar 24 07:53:53 2007 UTC (17 years ago) by archite
Original Path: trunk
Diff to previous 875
Importing ohash functions into libc from OpenBSD 4.0 code.

Revision 875 - Directory Listing - [select for diffs]
Modified Wed Mar 21 03:35:14 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 874
Remove ucb advertising clause on some files.  Attempt to finish the wanrs 3 workwhich caused problems on 64bit arch

Revision 874 - Directory Listing - [select for diffs]
Modified Wed Mar 21 00:26:24 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 873
Set this to warns 2 temporarily

Revision 873 - Directory Listing - [select for diffs]
Modified Tue Mar 20 21:24:40 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 872
Convert to %ju

Revision 872 - Directory Listing - [select for diffs]
Modified Tue Mar 20 18:53:02 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 871
Drop WARNS level to unbreak sparc

Revision 871 - Directory Listing - [select for diffs]
Modified Tue Mar 20 18:40:50 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 870
Switch to uintmax_t from unsigned long long.  This might fix our problems on amd64.

Revision 870 - Directory Listing - [select for diffs]
Modified Tue Mar 20 17:32:17 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 869
Fix the MBSDID crap

Revision 869 - Directory Listing - [select for diffs]
Modified Tue Mar 20 17:02:55 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 868
$MidnightBSD$

The __MBSDID macro is not working as it should be with the assembler. There must be a behavior difference between FBSDID and MBSDID somewhere.

Revision 868 - Directory Listing - [select for diffs]
Modified Tue Mar 20 03:10:10 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 867
No need to use syslog here.

Revision 867 - Directory Listing - [select for diffs]
Modified Tue Mar 20 02:59:28 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 866
Don't leak strings.

Obtained from OpenBSD.

Revision 866 - Directory Listing - [select for diffs]
Modified Tue Mar 20 02:50:42 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 865
Make rdate ignore ntp responses with ALARM status.

Obtained from OpenBSD. (ntp.c 1.29)

Revision 865 - Directory Listing - [select for diffs]
Modified Mon Mar 19 00:55:13 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 864
forgot a `

Revision 864 - Directory Listing - [select for diffs]
Modified Sun Mar 18 17:22:55 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 863
Remove adam's favorite window manager.  Perhaps it can be resurected someday.

Revision 863 - Directory Listing - [select for diffs]
Modified Sat Mar 17 23:17:24 2007 UTC (17 years ago) by archite
Original Path: trunk
Diff to previous 862
Updating sound system including the snd_hda patches from FreeBSD.

Revision 862 - Directory Listing - [select for diffs]
Modified Sat Mar 17 16:48:59 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 861
add floppy boot support just in case we need it down the road for amd64

Revision 861 - Directory Listing - [select for diffs]
Modified Sat Mar 17 16:46:51 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 860
Get rid of a few lines of rmdir errors.  We're just trying to delete empty items so
tell find that using -empty.

Revision 860 - Directory Listing - [select for diffs]
Modified Sat Mar 17 16:44:45 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 859
$MidnightBSD$

IN package-splint.py, modernize the ports we look for...

Revision 859 - Directory Listing - [select for diffs]
Modified Sat Mar 17 16:43:15 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 858
Lets try to fix this mess.

Revision 858 - Directory Listing - [select for diffs]
Modified Sat Mar 17 16:07:24 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 857
$MidnightBSD$
s/ports/mports
s/FreeBSD/MidnightBSD

Revision 857 - Directory Listing - [select for diffs]
Modified Sat Mar 17 16:06:10 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 856
$MidnightBSD$
s/Free/Midninight
s/ports/mports

Revision 856 - Directory Listing - [select for diffs]
Modified Sat Mar 17 16:03:29 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 855
s/Free/Midnight

Revision 855 - Directory Listing - [select for diffs]
Modified Sat Mar 17 16:02:47 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 854
$MidnightBSD$

s/Free/Midnight

s/ports/mports

Revision 854 - Directory Listing - [select for diffs]
Modified Sat Mar 17 16:01:10 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 853
$MidnightBSD$

Revision 853 - Directory Listing - [select for diffs]
Modified Sat Mar 17 16:00:12 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 852
$MidnightBSD$

s/ports/mports
s/FreeBSD/Midnight

Revision 852 - Directory Listing - [select for diffs]
Modified Sat Mar 17 15:57:53 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 851
s/ports/mports

Revision 851 - Directory Listing - [select for diffs]
Modified Fri Mar 16 00:17:29 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 850
remove send-pr reference to fix world.

Revision 850 - Directory Listing - [select for diffs]
Modified Thu Mar 15 14:39:44 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 849
OK. We've got this sorted.

Revision 849 - Directory Listing - [select for diffs]
Modified Thu Mar 15 14:08:28 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 848
Add some useful macros.

Revision 848 - Directory Listing - [select for diffs]
Modified Thu Mar 15 13:44:04 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 847
Temporary fix to unbreak world.

Revision 847 - Directory Listing - [select for diffs]
Modified Thu Mar 15 02:35:23 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 846
Fix the behavior of the Apple Mighty Mouse.

Revision 846 - Directory Listing - [select for diffs]
Modified Thu Mar 15 02:21:47 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 845
f we receive an out of window SYN for an established connection, then ack the syn as required by RFC793

Revision 845 - Directory Listing - [select for diffs]
Modified Thu Mar 15 02:10:40 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 844
 Enable proxy ARP answers on any of the bridged interfaces if proxy record
 belongs to another interface within the bridge group.

Revision 844 - Directory Listing - [select for diffs]
Modified Thu Mar 15 02:07:21 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 843
Increment requests counter right before we send an arp query.  Without this change, EHOSTDOWN errors could be reported which would be incorrect.

Revision 843 - Directory Listing - [select for diffs]
Modified Thu Mar 15 02:05:28 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 842
Comply with RFC 3927.

Revision 842 - Directory Listing - [select for diffs]
Modified Thu Mar 15 00:08:27 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 841
Document today's changes.. gzip, removal of send-pr, etc.

Revision 841 - Directory Listing - [select for diffs]
Modified Thu Mar 15 00:06:42 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 840
Remove send-pr

Revision 840 - Directory Listing - [select for diffs]
Modified Wed Mar 14 23:44:42 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 839
$MidnightBSD$

Revision 839 - Directory Listing - [select for diffs]
Modified Wed Mar 14 23:43:34 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 838
Remove send-pr as we don't use gnats and are unlikely to.

Revision 838 - Directory Listing - [select for diffs]
Modified Wed Mar 14 23:37:06 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 837
Remove GNU gzip as its replaced by NetBSD gzip.

Revision 837 - Directory Listing - [select for diffs]
Modified Wed Mar 14 23:33:37 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 836
gzip from netbsd

Revision 836 - Directory Listing - [select for diffs]
Modified Wed Mar 14 23:33:20 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 835
gzip from NetBSD.

Revision 835 - Directory Listing - [select for diffs]
Modified Wed Mar 14 23:33:01 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 834
gzip from NetBSD

Revision 834 - Directory Listing - [select for diffs]
Modified Wed Mar 14 23:32:19 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 833
OpenSSH 4.6p1
BSD licensed gzip from FreeBSD/NetBSD.

Revision 833 - Directory Listing - [select for diffs]
Modified Wed Mar 14 12:10:24 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 832
unbreak the build for nowunbreak the build for now.

Revision 832 - Directory Listing - [select for diffs]
Modified Wed Mar 14 03:37:31 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 831
We got a few things out of the way today.

Revision 831 - Directory Listing - [select for diffs]
Modified Wed Mar 14 02:45:08 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 829
Update bsdtar

Revision 829 - Directory Listing - [select for diffs]
Modified Wed Mar 14 02:24:10 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 827
This commit was generated by cvs2svn to compensate for changes in r828,
which included commits to RCS files with non-trunk default branches.
Revision 827 - Directory Listing - [select for diffs]
Modified Wed Mar 14 01:53:23 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 826
Disable debugging information.

Revision 826 - Directory Listing - [select for diffs]
Modified Tue Mar 13 22:34:34 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 825
Re-add version.c which was incorrectly removed earlier when merging.

Revision 825 - Directory Listing - [select for diffs]
Modified Tue Mar 13 22:33:33 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 824
Re-importing Makefile.inc and ssh_namespace.h which were incorrectly removed
when merging earlier.

Revision 824 - Directory Listing - [select for diffs]
Modified Tue Mar 13 22:31:25 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 823
Switch FREEBSD-* to MIDNIGHTBSD-*

Revision 823 - Directory Listing - [select for diffs]
Modified Tue Mar 13 22:07:51 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 822
After configure was run on 4.6p1

Revision 822 - Directory Listing - [select for diffs]
Modified Tue Mar 13 22:06:38 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 821
MidnightBSD friendly

Revision 821 - Directory Listing - [select for diffs]
Modified Tue Mar 13 22:02:20 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 820
adjust the config file a bit.

Revision 820 - Directory Listing - [select for diffs]
Modified Tue Mar 13 21:52:10 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 819
Fix version

Revision 819 - Directory Listing - [select for diffs]
Modified Tue Mar 13 21:46:01 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 818
Merging changes between the the last OpenSSH and 4.6p1

Revision 818 - Directory Listing - [select for diffs]
Modified Tue Mar 13 21:44:09 2007 UTC (17 years ago) by archite
Original Path: trunk
Diff to previous 816
Updating sudo to p12.

Revision 816 - Directory Listing - [select for diffs]
Modified Tue Mar 13 21:36:54 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 814
This commit was generated by cvs2svn to compensate for changes in r815,
which included commits to RCS files with non-trunk default branches.
Revision 814 - Directory Listing - [select for diffs]
Modified Tue Mar 13 03:07:44 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 813
Reapply 1.3, but keep out 1.4.

Revision 813 - Directory Listing - [select for diffs]
Modified Tue Mar 13 03:05:40 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 812
Backout 1.3

Revision 812 - Directory Listing - [select for diffs]
Modified Tue Mar 13 00:48:41 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 811
Typo

Revision 811 - Directory Listing - [select for diffs]
Modified Tue Mar 13 00:45:49 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 810
BSD_daemon and FreeBSD_version directories.

Revision 810 - Directory Listing - [select for diffs]
Modified Tue Mar 13 00:42:43 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 809
Remove obsolete files for BSD_daemon and FreeBSD_version.

Revision 809 - Directory Listing - [select for diffs]
Modified Tue Mar 13 00:35:42 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 808
FreeBSD_version and BSD daemon files were removed from examples.  We also recently added MidnightBSD_version.

Revision 808 - Directory Listing - [select for diffs]
Modified Tue Mar 13 00:26:29 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 807
Remove FreeBSD_version.

Add MidnightBSD_version.

Revision 807 - Directory Listing - [select for diffs]
Modified Tue Mar 13 00:19:32 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 806
A summary of some of today's changes.

Revision 806 - Directory Listing - [select for diffs]
Modified Mon Mar 12 23:32:12 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 805
Add MidnightBSD_version.  Until we correct newvers.sh, this will report the FreeBSD value.  We must first remove all references to FreeBSD_version (OSRELDATE) from mports and the src tree before we can whack this.

Revision 805 - Directory Listing - [select for diffs]
Modified Mon Mar 12 23:15:08 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 804
Remove the BSD daemon stuff.  We've never asked for permission to distribute it and don't plan on using it.

Revision 804 - Directory Listing - [select for diffs]
Modified Mon Mar 12 22:47:48 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 803
$MidnightBSD$

Revision 803 - Directory Listing - [select for diffs]
Modified Mon Mar 12 22:47:16 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 802
$MidnightBSD$

example.4:  Add kernel module loading example.

Revision 802 - Directory Listing - [select for diffs]
Modified Mon Mar 12 22:06:02 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 801
Document the user/group LOR in our sample pf.conf

Revision 801 - Directory Listing - [select for diffs]
Modified Mon Mar 12 22:01:55 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 800
add link status descriptions and related structures for userland
applications.

Revision 800 - Directory Listing - [select for diffs]
Modified Mon Mar 12 21:17:04 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 799
Fill in the correct rtm_index for RTM_ADD and RTM_CHANGE messages.

Allow RTM_CHANGE to change a number of route flags as specified by RTF_FMASK.

The unusued rtm_use filed in struct rt_Msghdr is redesignated as rtm_fmask field to communicate route flag changes in RTM_CHANGE messages from userland.  The use count of a route was moved to rtm_rmx some time ago.

Revision 799 - Directory Listing - [select for diffs]
Modified Mon Mar 12 21:14:31 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 798
Add definitions for MD5_BLOCK_LENGTH, MD5_DIGEST_LENGTH and MD5_DIGEST_STRING_LENGTH

Revision 798 - Directory Listing - [select for diffs]
Modified Mon Mar 12 21:05:28 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 797
add manpage for OpenBSD 32bit hash functions previously commited in December.

Revision 797 - Directory Listing - [select for diffs]
Modified Mon Mar 12 21:03:50 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 796
Fix race conditions.

Revision 796 - Directory Listing - [select for diffs]
Modified Mon Mar 12 20:59:27 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 795
Sound overhaul.

Fix 8bit int overflows during channel creation and destruction on vchans.

Enforce channel/chardev numbering within 8bit boundary.

Traverse d-channels SLIT and try to reclaim free counter during channel creation.

Determine open direction using 'flags', not mode.

Don't allow opening the same device twice. (WTF?)

O_RDWR is allowed, provided that it is done by a single open and the hardware supports full duplex.

Fix pcm_unregister memory leak.

Optimize channel allocation and numbering.

Mega vchan create/destroy cleanup.

Obtained from FreeBSD

Revision 795 - Directory Listing - [select for diffs]
Modified Mon Mar 12 20:51:36 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 794
Pointer align should be generic enough to handle awkward byte size especially for true 24 bit format.

Obtained from FreeBSD.

Revision 794 - Directory Listing - [select for diffs]
Modified Mon Mar 12 20:50:18 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 793
Convert NULL checks into KASSERTs

Revision 793 - Directory Listing - [select for diffs]
Modified Mon Mar 12 20:46:50 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 792
Drop the kqueue global mutex as soon as we are finished with it.

Clear any action flags on the register knote.

Obtained from FreeBSD.

Revision 792 - Directory Listing - [select for diffs]
Modified Mon Mar 12 20:43:07 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 791
Fix memory leaks in failure cases.

Revision 791 - Directory Listing - [select for diffs]
Modified Mon Mar 12 20:40:22 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 790
Add support for AD1815 based ISA sound cards.

Revision 790 - Directory Listing - [select for diffs]
Modified Mon Mar 12 20:34:24 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 789
Replace awk parts with shell scripting.

Obtained from FreeBSD

Revision 789 - Directory Listing - [select for diffs]
Modified Mon Mar 12 20:28:30 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 788
If the buffer lock has waiters after the bufer has changed identity then getnewbuf() needs to drop the buffer in order to wake waiters that might sleep on the buffer in the context of the old identity.

Obtained from FreeBSD (tegge) 1.491.2.8

Revision 788 - Directory Listing - [select for diffs]
Modified Mon Mar 12 20:23:41 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 787
Destroy bip bio when an error occurs.

Revision 787 - Directory Listing - [select for diffs]
Modified Sat Mar 10 17:18:11 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 786
What the heck happened when I was copy/pasting...

Revision 786 - Directory Listing - [select for diffs]
Modified Sat Mar 10 17:13:24 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 785
Revise directions to point to src/share/misc/iso3166 update which must also be done when updating timezones.

Revision 785 - Directory Listing - [select for diffs]
Modified Sat Mar 10 17:10:49 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 784
Seperate Serbia and Montenegro to make this match our recent tzdate2007c import.

Revision 784 - Directory Listing - [select for diffs]
Modified Sat Mar 10 16:58:29 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 783
Import tzdata2007c.

Just in case we missed any timezone changes last year.

Revision 783 - Directory Listing - [select for diffs]
Modified Fri Mar 9 14:48:48 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 782
Fix the ordering of localhost in /etc/hosts to match the example

Revision 782 - Directory Listing - [select for diffs]
Modified Fri Mar 9 14:46:01 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 781
We don't have redhat 8 as a base.  The fc4 port calls itself linux_base-fc

Revision 781 - Directory Listing - [select for diffs]
Modified Fri Mar 9 14:43:11 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 780
Correct situation where user boots from floppy disk and then inserts a CDROM.  The first call to mount the CD will fail.

Revision 780 - Directory Listing - [select for diffs]
Modified Fri Mar 9 14:37:41 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 779
add hme and modernize the names of several adapters.

Revision 779 - Directory Listing - [select for diffs]
Modified Fri Mar 9 14:25:47 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 778
Teach sysinstall about several network interfaces.

Revision 778 - Directory Listing - [select for diffs]
Modified Fri Mar 9 14:18:36 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 777
teach sysinstall about mfi

Revision 777 - Directory Listing - [select for diffs]
Modified Fri Mar 9 03:00:49 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 776
COMPAT_43

Revision 776 - Directory Listing - [select for diffs]
Modified Fri Mar 9 02:59:57 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 775
$MidnightBSD$

Revision 775 - Directory Listing - [select for diffs]
Modified Fri Mar 9 02:47:02 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 774
add mfi

Revision 774 - Directory Listing - [select for diffs]
Modified Fri Mar 9 02:42:24 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 773
oops...

Revision 773 - Directory Listing - [select for diffs]
Modified Fri Mar 9 02:20:50 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 772
Accidently commited something I was testing.. msk.

Revision 772 - Directory Listing - [select for diffs]
Modified Thu Mar 8 19:04:43 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 771
add mfi man page

Revision 771 - Directory Listing - [select for diffs]
Modified Thu Mar 8 18:54:36 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 770
Add LSI MegaRAID SAS mfi

Revision 770 - Directory Listing - [select for diffs]
Modified Thu Mar 8 18:53:43 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 769
Add mfi LSI MegaRAID SAS

Revision 769 - Directory Listing - [select for diffs]
Modified Thu Mar 8 18:51:36 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 768
Add mfi hooks

Revision 768 - Directory Listing - [select for diffs]
Modified Thu Mar 8 18:03:27 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 767
add mfi

Revision 767 - Directory Listing - [select for diffs]
Modified Thu Mar 8 17:31:59 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 766
Add IFF_NEEDSGIANT which is required with the kernel PPP

Revision 766 - Directory Listing - [select for diffs]
Modified Thu Mar 8 17:29:16 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 765
Document files.

Revision 765 - Directory Listing - [select for diffs]
Modified Thu Mar 8 17:27:08 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 764
Fix race condition.

Revision 764 - Directory Listing - [select for diffs]
Modified Thu Mar 8 17:11:18 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 763
If an NFS server returns more than a few EJUKEBOX errors for a given RPC request, the NFS client will back off for a very long wait (days, weeks) before retrying.

Change behavior to match solaris.  There is a new sysctl nfs3_jukebox_delay which is in seconds to adjust the retry default.

Revision 763 - Directory Listing - [select for diffs]
Modified Wed Mar 7 06:51:56 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 762
$MidnightBSD$

Revision 762 - Directory Listing - [select for diffs]
Modified Wed Mar 7 06:42:15 2007 UTC (17 years ago) by laffer1
Original Path: trunk
Diff to previous 761
Modify ports path.

Submitted by chris.reinhardt at gmail.com

Revision 761 - Directory Listing - [select for diffs]
Modified Fri Mar 2 02:36:10 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 760
Fix setsockopt SO_NOSIGPIPE.

Revision 760 - Directory Listing - [select for diffs]
Modified Tue Feb 27 05:25:36 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 759
Add support for Intel 945G chipset.

Revision 759 - Directory Listing - [select for diffs]
Modified Mon Feb 26 00:27:52 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 758
Remove keyboard flags since we have kbdmux

Revision 758 - Directory Listing - [select for diffs]
Modified Mon Feb 26 00:18:29 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 757
Remove alpha stuff

Revision 757 - Directory Listing - [select for diffs]
Modified Mon Feb 26 00:12:28 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 756
Remove X11BASE so that the ports system can set the default.  openssh and groff source don't actually need this value.

Revision 756 - Directory Listing - [select for diffs]
Modified Mon Feb 26 00:10:27 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 755
Allow IGNORE_PRAGMA to be set in makefiles in case we choose to use opensolaris code.

Revision 755 - Directory Listing - [select for diffs]
Modified Mon Feb 26 00:08:07 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 754
Add CSTD support.

Revision 754 - Directory Listing - [select for diffs]
Modified Sun Feb 25 23:57:17 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 753
remove alpha

Revision 753 - Directory Listing - [select for diffs]
Modified Fri Feb 23 00:50:36 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 752
Remove alpha reference.

Revision 752 - Directory Listing - [select for diffs]
Modified Fri Feb 23 00:49:13 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 751
Change allscreens_flags to disable boot logo screen saver.  As we are adding splash, we do not want to use that.

Revision 751 - Directory Listing - [select for diffs]
Modified Tue Feb 20 02:45:04 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 750
revert the DIST_KERN change.

Revision 750 - Directory Listing - [select for diffs]
Modified Tue Feb 20 02:43:34 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 749
Add version info to title so we know what version of MidnightBSD the installer is running on.

Revision 749 - Directory Listing - [select for diffs]
Modified Tue Feb 20 02:03:21 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 748
Fix check minimum so all the x's are there.

Revision 748 - Directory Listing - [select for diffs]
Modified Tue Feb 20 01:50:21 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 747
Change Ntpdate to rdate and reorder the menu.

Revision 747 - Directory Listing - [select for diffs]
Modified Tue Feb 20 01:41:33 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 746
We switched to rdate months ago.  Change ntpdate occurances to rdate and fix the flags accordingly.

Revision 746 - Directory Listing - [select for diffs]
Modified Tue Feb 20 00:03:37 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 745
$MidnightBSD$

Revision 745 - Directory Listing - [select for diffs]
Modified Tue Feb 20 00:02:48 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 744
Remove and fix the list of ports to include.

Revision 744 - Directory Listing - [select for diffs]
Modified Mon Feb 19 22:00:52 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 743
Remove device zs, remove nodevice uart

Revision 743 - Directory Listing - [select for diffs]
Modified Mon Feb 19 21:30:39 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 742
This is a patch from Andrew Turner to allow partial booting on EFIKA.  It includes ofwread.S from NetBSD.  It uses the real-mode ofw interface from NetBSD and TLB exception handlers from FreeBSD's perforce //depot/user/jaras.

The ofwr_init call is not enabled by default as it breaks Macs.  If the ifdef FIRMWORKSBUGS is commented out, EFIKA will work until it hits the scheduler.

Revision 742 - Directory Listing - [select for diffs]
Modified Mon Feb 19 21:18:24 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 741
If the CPU is unknown, the version check will run off the list... this will correct that deficiency.

Revision 741 - Directory Listing - [select for diffs]
Modified Mon Feb 12 18:59:50 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 740
$MidnightBSD$

Revision 740 - Directory Listing - [select for diffs]
Modified Mon Feb 12 18:51:39 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 739
$MidnightBSD$

NO_WARNS...

Revision 739 - Directory Listing - [select for diffs]
Modified Mon Feb 12 18:49:10 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 738
WARNS=3

NULL terminate nlist.

Constify several functions.

Use uintmax_t to pass around 64bit quantities.

Revision 738 - Directory Listing - [select for diffs]
Modified Mon Feb 12 16:44:46 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 737
Get rid of classful IPv4 special treatment of network prefixes in netstat -rn.

Revision 737 - Directory Listing - [select for diffs]
Modified Fri Feb 9 22:32:17 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 736
A type * (ANY) query response containing multiple RRsets can trigger an
assertion failure.

Certain recursive queries can cause the nameserver to crash by using memory
which has already been freed.

Revision 736 - Directory Listing - [select for diffs]
Modified Fri Feb 9 20:24:21 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 735
Fix BUILDNAME.  For floppy target, split mfsroot

Revision 735 - Directory Listing - [select for diffs]
Modified Fri Feb 9 18:43:36 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 734
Remove zs to unbreak kernel builds.

Revision 734 - Directory Listing - [select for diffs]
Modified Fri Feb 9 18:27:54 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 733
Add kernel config for PowerPC

Revision 733 - Directory Listing - [select for diffs]
Modified Fri Feb 9 17:18:53 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 732
$MidnightBSD$

Remove alpha bits

Revision 732 - Directory Listing - [select for diffs]
Modified Fri Feb 9 16:34:18 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 731
Correct Typo... missing {

Revision 731 - Directory Listing - [select for diffs]
Modified Wed Feb 7 16:39:14 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 730
Remove unused variable.

Revision 730 - Directory Listing - [select for diffs]
Modified Wed Feb 7 16:36:08 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 729
$MidnightBSD$

Fix beep code.

Revision 729 - Directory Listing - [select for diffs]
Modified Wed Feb 7 15:50:03 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 728
TCP Auto sizing of socket buffers improves throughput on high latency links. Several new sysctls were added to control the buffers max size, etc.

Additional work is needed, but under initial testing this is working great.  You must rebulid world in order for netstat to work correctly.

A few changes were made to netstat, but do not change functionality in any significant way.

Revision 728 - Directory Listing - [select for diffs]
Modified Wed Feb 7 07:25:01 2007 UTC (17 years, 1 month ago) by archite
Original Path: trunk
Diff to previous 727
Small update to visudo Makefile for consistancy.

Revision 727 - Directory Listing - [select for diffs]
Modified Wed Feb 7 02:52:23 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 726
These changes may help with the build problems.

Revision 726 - Directory Listing - [select for diffs]
Modified Wed Feb 7 01:25:31 2007 UTC (17 years, 1 month ago) by archite
Original Path: trunk
Diff to previous 725
Updated to include instructions for installing sudo.

Revision 725 - Directory Listing - [select for diffs]
Modified Tue Feb 6 22:41:32 2007 UTC (17 years, 1 month ago) by archite
Original Path: trunk
Diff to previous 724
Updating Makefile to be more efficient

Revision 724 - Directory Listing - [select for diffs]
Modified Sun Feb 4 18:19:17 2007 UTC (17 years, 1 month ago) by archite
Original Path: trunk
Diff to previous 723
Moving sudoers install to src/etc

Revision 723 - Directory Listing - [select for diffs]
Modified Sun Feb 4 17:33:53 2007 UTC (17 years, 1 month ago) by archite
Original Path: trunk
Diff to previous 722
Importing sudo into src

Revision 722 - Directory Listing - [select for diffs]
Modified Sat Feb 3 21:50:36 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 721
Hmm.. we made a stupid mistake a few weeks ago.  Lets see if this makes more sense.

Revision 721 - Directory Listing - [select for diffs]
Modified Sat Feb 3 17:33:52 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 720
update package-split.py to point to mports.

Revision 720 - Directory Listing - [select for diffs]
Modified Fri Feb 2 01:03:18 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 719
Fixed generated files as I forgot to remove a file. (skipped 9.3.3 release..)

Revision 719 - Directory Listing - [select for diffs]
Modified Fri Feb 2 00:51:44 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 718
Remove from branch as they are no longer in 9.3.3 sources.

Revision 718 - Directory Listing - [select for diffs]
Modified Fri Feb 2 00:23:38 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 717
Generated files using step 9  make -DMAINTAINER_MODE generate...

Revision 717 - Directory Listing - [select for diffs]
Modified Fri Feb 2 00:21:12 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 716
Generated files for Bind 9.3.4 per FreeBSD-upgrade directions step 7 and 8

Revision 716 - Directory Listing - [select for diffs]
Modified Thu Feb 1 15:16:01 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 714
Import changes for BIND 9.3.4

Revision 714 - Directory Listing - [select for diffs]
Modified Thu Feb 1 14:51:32 2007 UTC (17 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 712
This commit was generated by cvs2svn to compensate for changes in r713,
which included commits to RCS files with non-trunk default branches.
Revision 712 - Directory Listing - [select for diffs]
Modified Sun Jan 28 18:22:15 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 711
Add additonal PATA controllers found on newer motherboards.

This specifically fixes the INTEL DP965LT which I happen to be using.  Many Intel motherboards use one of these chips.

Revision 711 - Directory Listing - [select for diffs]
Modified Sun Jan 28 18:12:51 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 710
Refer to mports instead of ports.

Revision 710 - Directory Listing - [select for diffs]
Modified Wed Jan 24 00:59:09 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 708
The jail rc.d script does not check if a path inside a jail is a symbolic link before it uses a path.

/var/log/console.log and mounting/unmounting file systems inside the jail structure are not checked.

As such, the jail system is vulnerable to symlink attacks.

Revision 708 - Directory Listing - [select for diffs]
Modified Fri Jan 19 14:45:44 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 707
Explain recent changes in MidnightBSD.

Revision 707 - Directory Listing - [select for diffs]
Modified Fri Jan 19 04:34:15 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 706
Revert code

Revision 706 - Directory Listing - [select for diffs]
Modified Fri Jan 19 04:20:58 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 705
Remove manual assignment of m_pkthdr from one mbuf to another in ipsec_copypkt() as its handled by M_MOVE_PKTHDR()

Revision 705 - Directory Listing - [select for diffs]
Modified Fri Jan 19 04:11:49 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 704
Sync with FreeBSD 6.1 Release.

Revision 704 - Directory Listing - [select for diffs]
Modified Fri Jan 19 04:07:01 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 703
We only lock the local per cpu page in the local dTLB, so accessing the foreign CPU pages in cpu_ipi_send() causes a page fault.

Revision 703 - Directory Listing - [select for diffs]
Modified Fri Jan 19 04:05:30 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 702
Add convenience macros for the bits in ASI_ESTATE_ERROR_EN_REG which is used for ECC handling and additional bits for cpu bug workarounds.

Revision 702 - Directory Listing - [select for diffs]
Modified Fri Jan 19 04:03:22 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 701
Move the check for too high HZ values.

Revision 701 - Directory Listing - [select for diffs]
Modified Fri Jan 19 03:55:11 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 700
Don't point at bar.com.

Docment how to change polling interval for HC interface and counters.

Revision 700 - Directory Listing - [select for diffs]
Modified Fri Jan 19 03:46:41 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 699
Fix a bug in the retransmission path.

Revision 699 - Directory Listing - [select for diffs]
Modified Fri Jan 19 03:33:17 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 698
allow root to open jail PTYs from the host.

Revision 698 - Directory Listing - [select for diffs]
Modified Fri Jan 19 03:26:58 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 697
Fix a potential memory leak.

Revision 697 - Directory Listing - [select for diffs]
Modified Fri Jan 19 03:26:22 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 696
Fix a memory leak when net.inet6.icmp6.nd6_maxquelen is greater than 1

Revision 696 - Directory Listing - [select for diffs]
Modified Fri Jan 19 03:23:17 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 695
Fix up IPXIP so that the network stack is run with Giant.  There is unsafety in the code that requires this change for SMP systems to function properly.

Revision 695 - Directory Listing - [select for diffs]
Modified Fri Jan 19 03:20:15 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 694
Add new libsm file from sendmail 8.13.6+

Revision 694 - Directory Listing - [select for diffs]
Modified Fri Jan 19 02:58:35 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 693
Document authpf's requirement for a mounted fdescfs(5)

Revision 693 - Directory Listing - [select for diffs]
Modified Fri Jan 19 02:57:43 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 692
Fix IP checksum when modifying IP header fields.

Revision 692 - Directory Listing - [select for diffs]
Modified Fri Jan 19 02:41:21 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 691
Fix thread suspension race.

Revision 691 - Directory Listing - [select for diffs]
Modified Fri Jan 19 02:35:06 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 690
Add info regarding previous commit for watchdog part of MK48Txx

Revision 690 - Directory Listing - [select for diffs]
Modified Fri Jan 19 02:34:19 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 689
Enable the MK48Txx watchdog part for E250 and E450

Revision 689 - Directory Listing - [select for diffs]
Modified Fri Jan 19 02:33:24 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 688
Clear the interupt source flags before processing the interupt events and turn off  NIC interrupts while in the interrupt handler.

Relax the watchdog timer somewhat; don't enable it until the last packet is enqueued and if there is a TX interrupt but there are still outstanding ones reload the timer.

Revision 688 - Directory Listing - [select for diffs]
Modified Fri Jan 19 02:25:17 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 687
Serialize access to info/dir file for parallel installation.

Revision 687 - Directory Listing - [select for diffs]
Modified Fri Jan 19 02:22:33 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 686
Clean up

Revision 686 - Directory Listing - [select for diffs]
Modified Fri Jan 19 02:22:11 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 685
Oops.. typo

Revision 685 - Directory Listing - [select for diffs]
Modified Fri Jan 19 01:49:55 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 684
Avoid heap overrun

Revision 684 - Directory Listing - [select for diffs]
Modified Fri Jan 19 01:47:26 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 683
Document JMicron JMB361, 365 and 366.

Revision 683 - Directory Listing - [select for diffs]
Modified Fri Jan 19 01:42:39 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 682
0.4.8 of hostapd

Revision 682 - Directory Listing - [select for diffs]
Modified Fri Jan 19 01:39:45 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 681
Version 0.4.8 of wpa_supplicant.

Revision 681 - Directory Listing - [select for diffs]
Modified Fri Jan 19 01:26:08 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 680
Add unshare function.

Revision 680 - Directory Listing - [select for diffs]
Modified Fri Jan 19 01:22:38 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 679
Sync if_hme

Revision 679 - Directory Listing - [select for diffs]
Modified Fri Jan 19 01:17:59 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 678
Sync man page

Revision 678 - Directory Listing - [select for diffs]
Modified Fri Jan 19 01:16:40 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 677
add missing function to uipc_mbuf.c

Revision 677 - Directory Listing - [select for diffs]
Modified Fri Jan 19 01:00:01 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 676
Sync ipsec.

Revision 676 - Directory Listing - [select for diffs]
Modified Fri Jan 19 00:51:34 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 675
Sync with freebsd

Revision 675 - Directory Listing - [select for diffs]
Modified Fri Jan 19 00:37:18 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 674
Sync with FreeBSD

Revision 674 - Directory Listing - [select for diffs]
Modified Thu Jan 18 04:10:05 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 673
fix EBUSY description.

Revision 673 - Directory Listing - [select for diffs]
Modified Thu Jan 18 04:07:50 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 672
Fix version number

Revision 672 - Directory Listing - [select for diffs]
Modified Thu Jan 18 04:05:29 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 671
Fix incorrect command line example.

Revision 671 - Directory Listing - [select for diffs]
Modified Thu Jan 18 04:04:26 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 670
Descripter fixes to kill dup(2) error.

Revision 670 - Directory Listing - [select for diffs]
Modified Thu Jan 18 03:56:22 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 669
Don't call vn_finished_write() if vn_start_write() failed.

Revision 669 - Directory Listing - [select for diffs]
Modified Thu Jan 18 03:44:01 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 668
Revert to setting vlan and vlandev parameters synchronously, as soon as both have been read from the command line.  Still use the callback, but this time only to verify that both vlan and vlandev have been found on the command line.

Revision 668 - Directory Listing - [select for diffs]
Modified Thu Jan 18 03:39:19 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 667
When a process is de-configuring a log file, also stop all of its PMCs that require a log file to operate.

Only stop PMCs that are in the running state.

Revision 667 - Directory Listing - [select for diffs]
Modified Thu Jan 18 03:36:38 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 666
add a note about the assumption for m->m_pkthdr.rcvif

Revision 666 - Directory Listing - [select for diffs]
Modified Thu Jan 18 03:35:31 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 665
Updates net.inet6.ip6.kame_version as the proof of the latest KAME merge

Revision 665 - Directory Listing - [select for diffs]
Modified Thu Jan 18 03:33:53 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 664
Add PCI ID for Neteasy DRP-32TXD cardbus 10/100 card.

Revision 664 - Directory Listing - [select for diffs]
Modified Thu Jan 18 03:28:28 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 663
Ensure install scripts are set executable.

Revision 663 - Directory Listing - [select for diffs]
Modified Thu Jan 18 03:24:11 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 662
Correctly locate the character proceeding the matched string in -w mode when in non-UTF-8 multibyte locales.

Revision 662 - Directory Listing - [select for diffs]
Modified Thu Jan 18 03:23:10 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 661
Properly spell and document ozfod.

Revision 661 - Directory Listing - [select for diffs]
Modified Tue Jan 16 23:47:04 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 660
Sync sbin/geom

Revision 660 - Directory Listing - [select for diffs]
Modified Sat Jan 13 19:04:08 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 659
Sync gmirror code.

Revision 659 - Directory Listing - [select for diffs]
Modified Sat Jan 13 19:00:00 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 658
When opening a trace file, open O_NOBLOCK so that ktrace doesn't stall if the target is a fifo.

Revision 658 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:57:10 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 657
If fifo_open() is called with a negative file descriptor, return EINVAL.

Revision 657 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:52:03 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 656
Sync with FreeBSD 6.1 Release

Revision 656 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:51:05 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 655
Add an alias 'unhalted-cycles' denoting cyles where the CPU is not in halt or sleep state.

Revision 655 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:47:28 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 654
calcu fix for threaded process.

Revision 654 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:41:20 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 653
Free private data when deleting hook.

Revision 653 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:40:35 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 652
No IFF_POLLING flag.

Revision 652 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:39:15 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 651
Fix misinformation in setconfig

Revision 651 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:37:09 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 650
Fix genesys 6-in-1 card reader.

Revision 650 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:32:40 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 649
Unbreaks symlinks that have double slashes...

Revision 649 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:31:33 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 648
Remove baudrate in miibus aware drivers.

Revision 648 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:26:25 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 647
Do not touch baudrate

Revision 647 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:18:25 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 646
Add snapinfo.

Update rpcbind.

Revision 646 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:13:08 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 645
For audit stubs

Revision 645 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:11:21 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 644
Sync with FreeBSD 6.1 Release.

Revision 644 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:10:11 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 643
Add audit stubs.

Revision 643 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:07:30 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 642
Sync with FreeBSD 6.1 Release.

syscalls.master: add audit stubs.

Revision 642 - Directory Listing - [select for diffs]
Modified Sat Jan 13 18:06:14 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 641
Add stub audit calls for future compatibility.

Revision 641 - Directory Listing - [select for diffs]
Modified Sat Jan 13 17:51:09 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 640
Sync with FreeBSD 6.1 Release

Revision 640 - Directory Listing - [select for diffs]
Modified Sat Jan 13 17:47:05 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 639
Sync with FreeBSD 6.1 Release.

Don't build IPv6 support if NO_INET6 was defined.

Revision 639 - Directory Listing - [select for diffs]
Modified Sat Jan 13 17:40:55 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 638
Correct ni_txrate when using a fixed rate.

Revision 638 - Directory Listing - [select for diffs]
Modified Sat Jan 13 17:39:24 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 637
Add missing ldconfig directories.

Revision 637 - Directory Listing - [select for diffs]
Modified Sat Jan 13 17:37:21 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 636
Unbreak missing symbols so world will eventually compile :)

Revision 636 - Directory Listing - [select for diffs]
Modified Sat Jan 13 17:31:22 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 635
We're not FreeBSD.

Revision 635 - Directory Listing - [select for diffs]
Modified Sat Jan 13 16:14:34 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 634
VFS fixes, etc.  Sync with FreeBSD 6.1 Release.

Revision 634 - Directory Listing - [select for diffs]
Modified Sat Jan 13 16:11:01 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 633
VFS SMP fixes etc

Revision 633 - Directory Listing - [select for diffs]
Modified Sat Jan 13 16:03:36 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 632
VFS SMP fixes, stack api, softupdates fixes.

Revision 632 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:57:44 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 631
VFS SMP fixes etc

Revision 631 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:46:38 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 630
VFS SMP fixes, stack api, softupdates fixes.

Revision 630 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:43:50 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 629
VFS SMP fixes, stack api, softupdate fixes.

1.160.2.2 FBSD equivalent.

Revision 629 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:39:13 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 628
VFS SMP fixes, stack api, softupdates fixes.

Revision 628 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:23:22 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 627
VFS SMP fixes, stack api, softupdates

Revision 627 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:21:52 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 626
VFS SMP fixes, stack api, softupdates fixes.

Revision 626 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:19:39 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 625
VFS SMP fixes, stack API, softupdates fixes.

Revision 625 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:17:52 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 624
Fix stack alignment for KSE

Revision 624 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:13:07 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 623
Call vfs_destroy_object() before v_data gets set to NULL.

Revision 623 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:11:38 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 622
Call vfs_destroy_object() before v_data gets set to NULL

Revision 622 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:08:44 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 621
Call vfs_destroy_object() beofre v_data gets set to NULL

Revision 621 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:06:51 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 620
Fix output and exit status when daily_mailq_shorten is set to YES

Revision 620 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:04:47 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 619
iir works on PAE now.

Revision 619 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:04:10 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 618
Update the iir driver to include > 4GB support.

Revision 618 - Directory Listing - [select for diffs]
Modified Sat Jan 13 15:00:24 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 617
Further refine the bridge hack in teh arp code.  Only do the special arp handling for interfaces which are actually in the bridge group, ignore all others.

Revision 617 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:59:24 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 616
Consolidate calculation of capabilities

Revision 616 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:58:50 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 615
Make driver override of net80211 parameter state consistent with methods.

Revision 615 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:54:25 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 614
Sync with FreeBSD 6.1

Revision 614 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:50:21 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 613
Fix jail list.

Revision 613 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:47:01 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 612
File was installed with incorrect name anyway.

Revision 612 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:42:43 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 611
Add Cronyx Tau32-PCI adapters code.

Revision 611 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:37:42 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 610
Add support for Cronyx Tau32-PCI adaptors. (connect to build)

Revision 610 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:28:01 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 609
Sync with FreeBSD 6.1 Release.

Finish interrupt changes.

Revision 609 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:26:46 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 608
Finish interrupt changes.

Revision 608 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:19:06 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 607
Finish interrupt changes.

Revision 607 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:14:10 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 606
Sync with FreeBSD 6.1 Release.

Revision 606 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:12:25 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 605
Explain what list chan displays.

Revision 605 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:06:28 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 604
Update URL at cisco.com

Revision 604 - Directory Listing - [select for diffs]
Modified Sat Jan 13 14:04:07 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 603
Don't touch baudrate in miibus aware drivers.

Correctly switch IFCAP_VLAN_HWTAGGING on and off.

Revision 603 - Directory Listing - [select for diffs]
Modified Sat Jan 13 13:51:19 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 602
Handling of login.access(5) was moved from login(1) to pam_login_access(8) years ago.  This will remove dead code, clean up manpages and install login.access.5 from the pam_login_access src dir.

Revision 602 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:34:46 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 601
Move the functionality of options TDFX_LINUX from 3dfx.ko to a seperate module.

Revision 601 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:30:49 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 600
Move options TDFX_LINUX from 3dfx.ko to a seperate module.

Revision 600 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:29:42 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 599
Move options TDFX_LINUX from 3dfx.ko to a new module.

Revision 599 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:19:52 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 598
Do not leak read lock in IP_FW_TABLE_GETSIZE case of ipfw_ctl().
Acquire read (not write) lock in case of IP_FW_TABLE_LIST.

Revision 598 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:18:27 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 597
Import locale changes for tcsh

Revision 597 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:17:07 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 596
Clean up some descriptions and remove ambiguities in the language.

Revision 596 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:16:27 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 595
Clean up some descriptions.

Revision 595 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:15:18 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 594
Fix for an inappropriate bzero of the ICMPv6 stats.

Revision 594 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:13:39 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 593
Remove a useless word.

Revision 593 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:12:57 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 592
Revert proto ip back to the previous behavior.  The kernel side of ipfw2 doesn't allow zero as protocol number.

Revision 592 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:11:48 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 591
DDB requires KDB.

Revision 591 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:10:35 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 590
Reduce needless DNS query by lookup only appropriate address family.
Specify appropraite hints to getaddrinfo(3).
Obtain address family from peername in inetd mode.

Revision 590 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:08:06 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 589
Add timers

Revision 589 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:06:43 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 588
Sync rc.conf.5.

Document ldconfig32_paths

Revision 588 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:05:27 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 587
Add 32-bit ldconfig32 path for use with scripts.

Revision 587 - Directory Listing - [select for diffs]
Modified Sat Jan 13 00:02:53 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 586
Sync with FreeBSD 6.1 Release.

Introduce several patches to stop potential deadlocks with snapshots.  Clean up the vm code.

Revision 586 - Directory Listing - [select for diffs]
Modified Fri Jan 12 23:48:28 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 585
Document the ataraid(8), gmirror(8), graid3(8), gstripe(8), and gconcat(8) scripts.

Revision 585 - Directory Listing - [select for diffs]
Modified Fri Jan 12 23:46:33 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 584
Add audit to /var with proper group membership of audit.

Revision 584 - Directory Listing - [select for diffs]
Modified Fri Jan 12 23:41:59 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 583
Fix incorrect examples.  The first partition should start at offset 16 and explain why that is.

Revision 583 - Directory Listing - [select for diffs]
Modified Fri Jan 12 23:33:32 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 582
Throw out all the logical APIC ID stuff and just wire up the interrupts to individual CPUs using physical addressing and fixed delivery mode.

Revision 582 - Directory Listing - [select for diffs]
Modified Fri Jan 12 23:27:36 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 581
Sync with FreeBSD 6.1 Release.

Revision 581 - Directory Listing - [select for diffs]
Modified Wed Jan 10 15:26:17 2007 UTC (17 years, 2 months ago) by wintellect
Original Path: trunk
Diff to previous 580
update userland pkg tools to use /usr/mports not /usr/ports

Revision 580 - Directory Listing - [select for diffs]
Modified Mon Jan 8 00:39:11 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 579
Cleanup line break formatting.

Revision 579 - Directory Listing - [select for diffs]
Modified Mon Jan 8 00:37:49 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 578
Remove some dead code.

Revision 578 - Directory Listing - [select for diffs]
Modified Mon Jan 8 00:37:07 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 577
amr_linux.c: add a missing check for the return value for copyin()

Revision 577 - Directory Listing - [select for diffs]
Modified Mon Jan 8 00:34:38 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 576
Get rid of syscons restart in freebsd revision 1.26.2.4

Revision 576 - Directory Listing - [select for diffs]
Modified Mon Jan 8 00:33:16 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 575
Fix keyboard attach/detach and use new setkeyboard function in rc.d/syscons

Revision 575 - Directory Listing - [select for diffs]
Modified Mon Jan 8 00:30:12 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 574
Modify sysons to add setkeyboard method.  It does nothing with kbdmux but works properly switching otherwise.

Revision 574 - Directory Listing - [select for diffs]
Modified Mon Jan 8 00:25:17 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 573
Add audit group.

Revision 573 - Directory Listing - [select for diffs]
Modified Mon Jan 8 00:16:53 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 572
Make pflog a seperate module.

Revision 572 - Directory Listing - [select for diffs]
Modified Mon Jan 8 00:16:33 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 571
Make pf a seperate module.

Revision 571 - Directory Listing - [select for diffs]
Modified Mon Jan 8 00:10:37 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 570
Move pflog into a seperate module.

Revision 570 - Directory Listing - [select for diffs]
Modified Mon Jan 8 00:01:57 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 569
Link firmware to the build.

Revision 569 - Directory Listing - [select for diffs]
Modified Sun Jan 7 23:59:31 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 568
Sync inet_net_pton() and inet_net_ntop() with latest BIND9's includes an IPv6 support version.

Revision 568 - Directory Listing - [select for diffs]
Modified Sun Jan 7 23:57:13 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 567
Decrease the value of RES_DFLRETRY from 4 to 2.

Revision 567 - Directory Listing - [select for diffs]
Modified Sun Jan 7 23:54:06 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 566
Do not discard the current value of __MAKE_CONF when testing whether
MAKEOBJDIRPREFIX is set at a wrong place.

Revision 566 - Directory Listing - [select for diffs]
Modified Sun Jan 7 23:51:00 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 565
Sync with FreeBSD 6.1 Release.

Revision 565 - Directory Listing - [select for diffs]
Modified Sun Jan 7 23:46:27 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 564
Do not use the TSC where its know to be broken.

Revision 564 - Directory Listing - [select for diffs]
Modified Sun Jan 7 23:40:52 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 563
crypto.ko depends on zlib.

Revision 563 - Directory Listing - [select for diffs]
Modified Sun Jan 7 23:38:55 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 562
Add entry about using timecounter TSC and cpu frequency changing.

Revision 562 - Directory Listing - [select for diffs]
Modified Sun Jan 7 23:37:16 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 561
Just query as is if there is a trailing dot in the name.

Don't query as is twice.

Revision 561 - Directory Listing - [select for diffs]
Modified Sun Jan 7 23:15:07 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 560
Fix a bug in ip_reass() if we are using 'full' hardware rx checksum offload.

Revision 560 - Directory Listing - [select for diffs]
Modified Sun Jan 7 22:50:58 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 559
Update the kbdmux(4) manpage to explain how to disable it.

Revision 559 - Directory Listing - [select for diffs]
Modified Sun Jan 7 22:36:50 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 558
Provide ability to disable kbdmux(4)

Fix endian bugs accessing ioctl arguments

Revision 558 - Directory Listing - [select for diffs]
Modified Sun Jan 7 22:29:34 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 557
Sync with FreeBSD 6.1 Release

Revision 557 - Directory Listing - [select for diffs]
Modified Sun Jan 7 22:28:49 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 556
Move the hard coded ETHER_* options where they belong.

Utilize the fact the module supprots all frames by default.

Fix comment.

Revision 556 - Directory Listing - [select for diffs]
Modified Sun Jan 7 22:14:28 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 555
Fix random popping while playing in 32bit by increasing the buffer size.

Fix severe crackling under repetative module load/unload.

Make sure DMA pointer is properly aligned to avoid trunication by caller.

Add ac97 inverted external amplifier quirk for Maxselect x710s. (russian)

Trim unnecessary pointer alignment.

Revision 555 - Directory Listing - [select for diffs]
Modified Sun Jan 7 22:12:36 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 554
Fix possible DMA leak and locking violation especially during suspend and resume or module load/unload.

Revision 554 - Directory Listing - [select for diffs]
Modified Sun Jan 7 19:12:01 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 553
Grab the media from the passed in structure and put it in a global structure.

Revision 553 - Directory Listing - [select for diffs]
Modified Sun Jan 7 19:10:11 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 552
Fixes a problem when you have IPSEC in your kernel and want crypto loaded as a module.

Revision 552 - Directory Listing - [select for diffs]
Modified Sun Jan 7 19:04:00 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 551
Megacommit :)

This is a change in the way interrupt handling is done similar to the FreeBSD commit to RELENG_6_1 on March 10.

Revision 551 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:42:41 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 550
Sync with FreeBSD.

Revision 550 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:40:58 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 549
Have TCP Inflight disable itself if RTT is too low.

sysctl net.inet.tcp.inflight.rttthresh specifies the threshold in milliseconds below which it will disengage inflight.  It defaults to 10ms.

Revision 549 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:37:57 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 548
Make sysctl_msec_to_ticks(SYSCTL_HANDER_ARGS) avaliable instead of private to tcp_timer.c

Revision 548 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:33:49 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 547
Make kern.ipc.[max_linkhdr|max_protohdr|max_hdr|max_datalen] read only.

Revision 547 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:26:25 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 546
Change pfs_visible() to optionally return with the process still locked to simply locking and close some race conditions.

Revision 546 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:24:33 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 545
Print statistics on jumbo clusters and improve package zone info.

Revision 545 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:22:54 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 544
Hold the proc lock while calling proc_sstep().

Revision 544 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:21:30 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 543
Update man pages for functional changes not documented previously.

Revision 543 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:19:04 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 542
Change the x86 interrupt code to allocate IDT vectors on demand.

Revision 542 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:13:28 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 541
apic fixes and tweaks from FreeBSD revisions 1.16 (io_apic.c) and 1.18 (local_apic.c)

Revision 541 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:11:21 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 540
Style(9) fix.

Revision 540 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:08:44 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 539
Backout cardbus MFC from FreeBSD 6.1 beta and bring the code to 6.1 Release
standards.

Revision 539 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:06:21 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 538
Sync with FreeBSD 6.1

Revision 538 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:05:37 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 537
Correct issues with cardbus code.  Sync with FreeBSD.

Revision 537 - Directory Listing - [select for diffs]
Modified Sun Jan 7 04:00:04 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 536
Sync with FreeBSD 6.1 Release.

Revision 536 - Directory Listing - [select for diffs]
Modified Sun Jan 7 03:56:32 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 535
$MidnightBSD$

Sync with FreeBSD 6.1 Release.

Revision 535 - Directory Listing - [select for diffs]
Modified Sun Jan 7 03:54:45 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 534
Sync ELI with FreeBSD 6.1 Release.

Revision 534 - Directory Listing - [select for diffs]
Modified Sun Jan 7 03:50:23 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 533
Apply some patches from FreeBSD 6.1 Release for cpu detection, ioctl fixes, etc.

Change i386 GENERIC kernel to include VESA and raster support so that end users can easily switch to 800x600 and other video modes in the console.  While the kernel size is larger, it makes more sense on a desktop.

Revision 533 - Directory Listing - [select for diffs]
Modified Sun Jan 7 03:47:09 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 532
Re-apply previous patch.

Revision 532 - Directory Listing - [select for diffs]
Modified Sun Jan 7 03:45:37 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 531
Accidently added code to attach instead of the init function.

Revision 531 - Directory Listing - [select for diffs]
Modified Sat Jan 6 22:03:11 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 530
Helps to spell the function name correctly.

Revision 530 - Directory Listing - [select for diffs]
Modified Sat Jan 6 21:52:37 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 529
Sync with FreeBSD

Revision 529 - Directory Listing - [select for diffs]
Modified Sat Jan 6 21:02:49 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 528
Fix the hw.realmem sysctl

Revision 528 - Directory Listing - [select for diffs]
Modified Sat Jan 6 21:02:36 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 527
Fix hw.realmem sysctl

Revision 527 - Directory Listing - [select for diffs]
Modified Sat Jan 6 20:59:56 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 526
For now we are just syncing documentation.  We will transition this around or shrotly after 0.1 release.

Revision 526 - Directory Listing - [select for diffs]
Modified Sat Jan 6 19:27:31 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 525
Again this documentation is helpful until we have our own.

Revision 525 - Directory Listing - [select for diffs]
Modified Sat Jan 6 19:25:01 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 524
We haven't decided on how we're going to build or store the website documentation in the future yet.  This will sync some problems with the imported docs in case we decide to do something with them. If not, its a handy reference until our own documentation is in place.

Revision 524 - Directory Listing - [select for diffs]
Modified Sat Jan 6 19:20:14 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 523
Fix pmccontrol(8) when run on Intel Xeon chips in 64bit mode.

Revision 523 - Directory Listing - [select for diffs]
Modified Sat Jan 6 19:15:59 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 522
Add default choice option for --yesno box.
Reduce trivial code duplications.

Obtained from FreeBSD 6.1 Release.

Revision 522 - Directory Listing - [select for diffs]
Modified Sat Jan 6 19:13:19 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 521
Add option -w to specify graph width.  Default width is terminal width.

Fix the way the median is calculated.

Obtained from FreeBSD 6.1 Release.

Revision 521 - Directory Listing - [select for diffs]
Modified Sat Jan 6 18:52:52 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 520
Switch this over to GIANT as the other keyboard devices require.

Revision 520 - Directory Listing - [select for diffs]
Modified Sat Jan 6 18:33:23 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 519
Add ncpus to check the number of CPUs.

Revision 519 - Directory Listing - [select for diffs]
Modified Sat Jan 6 06:02:29 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 518
Add a spinlock to handles cases where printf, etc are called simultaneously.  This should fix console freezes in some circumstances.

This patch was based on a similar patch to FreeBSD stable, however, we do not use the new "enhanced" syscons code so it will require further testing.  It works fine on a UNI box.

Revision 518 - Directory Listing - [select for diffs]
Modified Sat Jan 6 05:03:18 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 517
Remove alpha directory

Revision 517 - Directory Listing - [select for diffs]
Modified Sat Jan 6 05:00:07 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 516
Remove references to alpha.

Revision 516 - Directory Listing - [select for diffs]
Modified Sat Jan 6 01:29:55 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 515
Cleanup can be fun.

Revision 515 - Directory Listing - [select for diffs]
Modified Sat Jan 6 01:16:44 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 514
Check the return code of sc_clean_up() in the only place missing.  There is only one case where it can fail in wait_scrn_saver_stop(), but might as well check.

Revision 514 - Directory Listing - [select for diffs]
Modified Sat Jan 6 01:11:46 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 513
Sometimes the vty switching has to be delayed; the vty to be switched is saved in sc->delayed_next_scr and toe actual switch happens later.  It is possible to get into an endless loop when trying to switch to a closed vty.

To repeat:
boot single user
run kbdcontrol -b visual
quickly press alt + f2 twice.

Revision 513 - Directory Listing - [select for diffs]
Modified Thu Jan 4 06:44:59 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 512
__restrict

Revision 512 - Directory Listing - [select for diffs]
Modified Thu Jan 4 06:27:28 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 511
Fix formatting.

Revision 511 - Directory Listing - [select for diffs]
Modified Thu Jan 4 06:26:08 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 510
Add the source of strndup(3).

Revision 510 - Directory Listing - [select for diffs]
Modified Thu Jan 4 06:22:50 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 509
Add strndup(3) to libc.

Revision 509 - Directory Listing - [select for diffs]
Modified Thu Jan 4 06:22:05 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 508
Add strndup(3) to libc.

$MidnightBSD$

Revision 508 - Directory Listing - [select for diffs]
Modified Wed Jan 3 03:24:21 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 507
Remove ealloc and sprite headers.  ealloc is now provided by libutil and the few definitions needed in sprite.h have been moved.

Switch to c99 stdbool.

Revision 507 - Directory Listing - [select for diffs]
Modified Wed Jan 3 02:53:21 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 506
ANSIfy

Revision 506 - Directory Listing - [select for diffs]
Modified Wed Jan 3 02:24:29 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 505
ANSIfy and make local functions static.

Revision 505 - Directory Listing - [select for diffs]
Modified Tue Jan 2 21:20:33 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 504
Adjust manpage to document additonal information about new -p and -o flags.

Revision 504 - Directory Listing - [select for diffs]
Modified Tue Jan 2 21:17:33 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 503
Add DragonFly and MidnightBSD definitions.

Revision 503 - Directory Listing - [select for diffs]
Modified Tue Jan 2 20:08:18 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 502
Add susv3

Revision 502 - Directory Listing - [select for diffs]
Modified Tue Jan 2 20:04:03 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 501
Make local changes to mdoc.local to give us .Mx for MidnightBSD. Also include recent OS releases from the other BSDs so we can reference them.

Inspired from DragonFly.  OpenBSD releases are missing.

Revision 501 - Directory Listing - [select for diffs]
Modified Tue Jan 2 09:50:08 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 500
Add -o and -p options from DragonFly.

-0 keyword causes rcorder to generate the dependancy list required to execute
a particular keyword.

-p generated PROVIDE keywords for the specified files.

TODO: document these.

Revision 500 - Directory Listing - [select for diffs]
Modified Tue Jan 2 08:14:55 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 499
Clarify a section.

Revision 499 - Directory Listing - [select for diffs]
Modified Tue Jan 2 08:13:30 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 498
Do not pass through the tailing newline char form ctime(3) output to
setproctitle(3) in order to get rid of the \n escape sequence in ps(1) output
of a dump(8) process.

Revision 498 - Directory Listing - [select for diffs]
Modified Tue Jan 2 08:06:44 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 497
Check for no leading slash.

Revision 497 - Directory Listing - [select for diffs]
Modified Tue Jan 2 08:04:52 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 496
If rawname returns null, deal with iIf rawname returns null, deal with it.

Revision 496 - Directory Listing - [select for diffs]
Modified Tue Jan 2 08:01:12 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 495
Avoid changing line while processing syslog prios.

Revision 495 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:58:35 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 494
Send client indentifier unconditonally as Mac OS X and Windows do.  This corrects problems with older or cheap routers.

Revision 494 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:53:37 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 493
There is no -n option

Revision 493 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:52:31 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 492
Obtained from FreeBSD:

Be more like Windows and Linux and send our hostname in the host-name
option if none is given in the config file.  Also add #ifdefd out
support for sending a client ID based on our MAC address.

PR:		bin/94743, bin/76401
Submitted by:	Frank Behrens <frank at pinky dot sax dot de>

Revision 492 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:51:20 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 491
Obtained from FreeBSD:

  It is possible for bpf to return a length such that:

         length != BPF_WORDALIGN(length)

  This meeans that it is possible for this to be true:

         interface->rbuf_offset > interface->rbuf_len

  Handle this case in the test for running out of packets.  While
  OpenBSD's solution of setting interface->rbuf_len to
  BPF_WORDALIGN(length) is safe due to the size of the buffer, I think
  this solution results in less hidden assumptions.

  This should fix the problem of dhclient running away and consuming 100%
  CPU.

PR:		bin/102226
Submitted by:	Joost Bekkers <joost at jodocus.org>

Revision 491 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:43:23 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 490
WARNS?=6

Revision 490 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:41:35 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 489
Eliminate core dumpbs on lines without '\n'.

Revision 489 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:40:39 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 488
Use pidfile(3).

Reset lineno to 1 for each devd config file.

Revision 488 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:19:11 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 487
Remove alpha bits, $MidnightBSD$

Revision 487 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:15:33 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 486
WARNS?=6

Revision 486 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:14:29 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 485
Remove alpha bits... -s flag was removed prior to fork.. clean up getopt

Revision 485 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:11:41 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 484
$MidnightBSD$
WARNS?=6

Revision 484 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:07:00 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 483
Add new modes.

Revision 483 - Directory Listing - [select for diffs]
Modified Tue Jan 2 07:03:16 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 482
If not compiled for debugging, redirect standard input/output/error to /dev/null before becoming a daemon.

Revision 482 - Directory Listing - [select for diffs]
Modified Tue Jan 2 06:59:59 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 481
WARNS?=6

$MidnightBSD$

Revision 481 - Directory Listing - [select for diffs]
Modified Tue Jan 2 06:57:32 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 480
Clean up RCS/CVS ids

Revision 480 - Directory Listing - [select for diffs]
Modified Tue Jan 2 06:54:22 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 479
Rename perror, xperror as we are using a homegrown version.  (Inspired by OpenBSD)

With this fix, we can go to WARNS=6

Revision 479 - Directory Listing - [select for diffs]
Modified Tue Jan 2 06:37:58 2007 UTC (17 years, 2 months ago) by laffer1
Original Path: trunk
Diff to previous 478
$MidnightBSD$

WARNS=5

NetBSD Coverity CID 1745: Fix memory leak.

Revision 478 - Directory Listing - [select for diffs]
Modified Mon Jan 1 01:25:05 2007 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 477
Recent power outage hit the cvs server.  This file seems to be the only one affected.

Revision 477 - Directory Listing - [select for diffs]
Modified Mon Jan 1 00:08:00 2007 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 476
We've been busy today.

Revision 476 - Directory Listing - [select for diffs]
Modified Mon Jan 1 00:00:52 2007 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 475
Remove reference to loader.conf since its been impossible for a long time to specify using loader.conf

Revision 475 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:54:46 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 474
Fix error in reference.

Revision 474 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:50:26 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 473
Beautify the messages from the ipfw script.

Revision 473 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:48:54 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 472
Change ipfw l to ipfw list

Revision 472 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:46:15 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 471
Correct misleading documentation.

Revision 471 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:42:24 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 470
Document the relation between $command and $foo_program.

Revision 470 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:38:59 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 469
Fix references for SUP to csup.

Revision 469 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:37:08 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 468
Mention no NLS catalog option.

Revision 468 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:35:25 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 467
Add No NLS Catalogs in relation to recent tcsh commit.

Revision 467 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:30:12 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 466
Fix whitespace.

Revision 466 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:28:03 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 465
Fix holiday for Romania.

Revision 465 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:25:30 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 464
Get rid of a potential panic in linprocfs by removing a call to fdfree() which is no longer needed.

Revision 464 - Directory Listing - [select for diffs]
Modified Sun Dec 31 23:23:44 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 463
If block size is zero, use normal file operations to do I/O.  This eliminates a divide by zero fault.

Obtained from FreeBSD (davidxu)

Revision 463 - Directory Listing - [select for diffs]
Modified Sun Dec 31 22:42:40 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 462
Happy New Year.

Revision 462 - Directory Listing - [select for diffs]
Modified Sun Dec 31 22:37:47 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 461
s/FreeBSD/MidnightBSD

Revision 461 - Directory Listing - [select for diffs]
Modified Sun Dec 31 22:36:16 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 460
Add efun(3) functions from NetBSD.

Revision 460 - Directory Listing - [select for diffs]
Modified Sun Dec 31 22:35:34 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 459
Forgot to add Makefile for spell(1) related special dict files.

Revision 459 - Directory Listing - [select for diffs]
Modified Sun Dec 31 22:34:27 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 458
Remove portsnap from tree.

Revision 458 - Directory Listing - [select for diffs]
Modified Sun Dec 31 22:31:45 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 457
Remove portsnap

Revision 457 - Directory Listing - [select for diffs]
Modified Sun Dec 31 22:29:36 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 456
Remove portsnap config file.

Revision 456 - Directory Listing - [select for diffs]
Modified Sun Dec 31 22:28:36 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 455
We do not have a portsnap service.

Revision 455 - Directory Listing - [select for diffs]
Modified Sun Dec 31 22:17:42 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 454
Add rdate to Makefile.

Revision 454 - Directory Listing - [select for diffs]
Modified Sun Dec 31 21:10:52 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 453
Just to clarify compatiblity, we've merged all changes between the import date of Feb 24 and the tcsh Feb 26 commit in FreeBSD.  Bump the version number.

Revision 453 - Directory Listing - [select for diffs]
Modified Sun Dec 31 21:07:53 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 452
Check for a non-null superblock.

Make quot skip unallocated inodes.

Revision 452 - Directory Listing - [select for diffs]
Modified Sun Dec 31 21:04:08 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 451
Allow timo to be 0 when mtx is not NULL

Revision 451 - Directory Listing - [select for diffs]
Modified Sun Dec 31 20:59:58 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 450
Fix the name of plip.

Revision 450 - Directory Listing - [select for diffs]
Modified Sun Dec 31 20:59:20 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 449
Fix the name of plip

Revision 449 - Directory Listing - [select for diffs]
Modified Sun Dec 31 20:57:23 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 448
lp0 has been plip0 for some time before our fork.

Revision 448 - Directory Listing - [select for diffs]
Modified Sun Dec 31 20:55:58 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 447
Add missing ohci_waitintr() call that allows polled operation of bulk transfers to have a chance.

Revision 447 - Directory Listing - [select for diffs]
Modified Sun Dec 31 20:52:02 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 446
Add definition of SWIDTH.  Fixes locale problems with tcsh.

Revision 446 - Directory Listing - [select for diffs]
Modified Sun Dec 31 20:49:07 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 445
Always print a newline char at the end of the line.

Revision 445 - Directory Listing - [select for diffs]
Modified Sun Dec 31 20:43:11 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 444
Stop device so we don't panic on removal.

Revision 444 - Directory Listing - [select for diffs]
Modified Sun Dec 31 20:42:08 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 443
enable s/w bmiss handling in sta mode

Revision 443 - Directory Listing - [select for diffs]
Modified Sun Dec 31 20:39:52 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 442
use s/w bmiss facility

Revision 442 - Directory Listing - [select for diffs]
Modified Sun Dec 31 19:01:26 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 441
Back out some of the changes to kern_mbuf.c and correct an obmission in upic_mbuf.c

Revision 441 - Directory Listing - [select for diffs]
Modified Sun Dec 31 10:00:42 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 440
Fix rcorder and fsck as they included e*alloc routines now found in libutil.

Revision 440 - Directory Listing - [select for diffs]
Modified Sun Dec 31 09:59:48 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 439
Add NetBSD efun(3) functions...

esetfunc, easprintf, efopen, ecalloc, emalloc, erealloc, estrdup, estrlcat, estrlcpy, evasprintf

Some code in the tree already includes this such as fsck and rcorder. This will make NetBSD code porting easier.  Note our libutil uses libutil.h instead of util.h.

Revision 439 - Directory Listing - [select for diffs]
Modified Sun Dec 31 09:09:40 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 438
Enable the NLS catalog of csh(1).  Since this requires libiconv which is not part of base, I've imported the stub from FreeBSD.

Revision 438 - Directory Listing - [select for diffs]
Modified Sun Dec 31 09:04:12 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 437
Prepare for tcsh libiconv catalogs

Revision 437 - Directory Listing - [select for diffs]
Modified Sun Dec 31 08:58:59 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 436
Replace 4k mbuf clusters with PAGE_SIZE clusters. This should improve TCP/IP performance.

Also add new MidnightBSD_version which will someday replace osreldate etc.

Revision 436 - Directory Listing - [select for diffs]
Modified Sun Dec 31 08:15:20 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 435
Add OpenBSD's hash functions.

Revision 435 - Directory Listing - [select for diffs]
Modified Sun Dec 31 07:08:37 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 434
Add spell(1) from NetBSD. spell is a spell check program originating from Version 6 AT&T UNIX.  It was opened up by Caldera and cleaned up by Todd Miller at OpenBSD, then additonal work was done by perry @ NetBSD.

I've decided to place the dictionary files in src/share/dict/* to keep usr.bin clean. The code is not very clean and could use improvement.  I've left the NetBSD TODO for this purpose.

Revision 434 - Directory Listing - [select for diffs]
Modified Sun Dec 31 07:02:05 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 433
Added src/share/dict/special for spell(1) import from NetBSD.

Revision 433 - Directory Listing - [select for diffs]
Modified Sun Dec 31 07:01:21 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 432
Added for future import of spell(1) from NetBSD.

Revision 432 - Directory Listing - [select for diffs]
Modified Sun Dec 31 05:23:39 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 431
Add deroff, a utility to remove nroff/troff, eqn, pic and tbl constructs from NetBSD, OpenBSD.

Revision 431 - Directory Listing - [select for diffs]
Modified Sun Dec 31 04:44:37 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 430
Add seq from NetBSD 3.0.  seq prints out a sequence of random numbers, one per line from first to as near last as possible.

Revision 430 - Directory Listing - [select for diffs]
Modified Sat Dec 30 00:20:46 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 429
Improve clear temp routine based on recent changes in FreeBSD 7 current.

Revision 429 - Directory Listing - [select for diffs]
Modified Sat Dec 30 00:08:13 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 428
Remove OSF1 alpha support

Revision 428 - Directory Listing - [select for diffs]
Modified Sat Dec 30 00:07:07 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 427
kill alpha support here.

Revision 427 - Directory Listing - [select for diffs]
Modified Sat Dec 30 00:03:30 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 426
Ensure that ldconfig has been run earlier so that services out of mports have access to their shared libraries.

Revision 426 - Directory Listing - [select for diffs]
Modified Fri Dec 29 23:50:25 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 425
Correctly set moused_$2_enable when moused_nondefault_enable is set to NO

Revision 425 - Directory Listing - [select for diffs]
Modified Fri Dec 29 23:44:23 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 424
Fix quote

Revision 424 - Directory Listing - [select for diffs]
Modified Fri Dec 29 23:44:10 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 423
Change NFS cache timeout to match kernel value.

Revision 423 - Directory Listing - [select for diffs]
Modified Fri Dec 29 23:38:24 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 422
Improve the friendliness of the linux ld.so.cache with read only file systems.

Revision 422 - Directory Listing - [select for diffs]
Modified Fri Dec 29 23:31:13 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 421
Make sure abi and therefore archdep start before SERVERS.

Revision 421 - Directory Listing - [select for diffs]
Modified Fri Dec 29 23:28:29 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 420
rc.d comformance patch:

Fix stop command so we don't get abi not running error.
Just use start instead of prestart.

Revision 420 - Directory Listing - [select for diffs]
Modified Fri Dec 29 23:23:36 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 419
Add missing PCI ID for Acer m5288.

Revision 419 - Directory Listing - [select for diffs]
Modified Fri Dec 29 23:11:17 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 418
Fix login fail to catch sshd, proftpd, and su errors along with many other programs.

Revision 418 - Directory Listing - [select for diffs]
Modified Fri Dec 29 23:06:53 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 417
Don't forget to install the new periodic scripts.

Revision 417 - Directory Listing - [select for diffs]
Modified Fri Dec 29 23:02:18 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 416
Add daily periodic scripts with a default of OFF/NO for gmirror, graid3, gstripe and gconcat.

Revision 416 - Directory Listing - [select for diffs]
Modified Fri Dec 29 22:55:20 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 415
No longer need kvmdb

Revision 415 - Directory Listing - [select for diffs]
Modified Fri Dec 29 22:49:38 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 414
Add mixer_enable with a default of Yes.

Revision 414 - Directory Listing - [select for diffs]
Modified Fri Dec 29 22:35:40 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 413
Don't be sexist.

Revision 413 - Directory Listing - [select for diffs]
Modified Fri Dec 29 22:33:25 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 412
$MidnightBSD$

Ignore errors in rc.conf files, simplify the file rotation logic, and make it slightly more secure.

Obtained from FreeBSD

Revision 412 - Directory Listing - [select for diffs]
Modified Fri Dec 29 22:27:52 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 411
$MidnightBSD$
UCB Clause 3

Check return values of setenv

Revision 411 - Directory Listing - [select for diffs]
Modified Fri Dec 29 21:00:15 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 410
Cleanup init(8).  Switch over to static function declarations.

$MidnightBSD$

Revision 410 - Directory Listing - [select for diffs]
Modified Fri Dec 29 19:09:14 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 409
Based on a patch by M. Warner Losh on hackers@freebsd.org, this patch allows init to chroot.

Revision 409 - Directory Listing - [select for diffs]
Modified Thu Dec 28 01:24:38 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 408
Sync with FreeBSD RELENG_6_2.

Reparent the process that executes the window= command from the ttys to the init.  This prevents zombies from being accumulated.

Revision 408 - Directory Listing - [select for diffs]
Modified Thu Dec 28 01:22:23 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 407
Use standard mode instead of 500 for /sbin/init

Revision 407 - Directory Listing - [select for diffs]
Modified Thu Dec 28 01:21:38 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 406
$MidnightBSD$

Revision 406 - Directory Listing - [select for diffs]
Modified Thu Dec 28 01:17:37 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 405
Explain muting.

Revision 405 - Directory Listing - [select for diffs]
Modified Thu Dec 28 01:16:25 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 404
Reference nextboot(8)

Revision 404 - Directory Listing - [select for diffs]
Modified Thu Dec 28 01:15:07 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 403
Crossreference nextboot(8)

Revision 403 - Directory Listing - [select for diffs]
Modified Thu Dec 28 01:14:05 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 402
Sync with FreeBSD RELENG_6_2.  Catch a number of signals which could result in a race condition with init as corrected in NetBSD.

Revision 402 - Directory Listing - [select for diffs]
Modified Thu Dec 28 01:04:03 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 401
Sync with FreeBSD RELENG_6_2, $MidnightBSD$

Revision 401 - Directory Listing - [select for diffs]
Modified Thu Dec 28 00:58:05 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 400
$MidnightBSD$

Revision 400 - Directory Listing - [select for diffs]
Modified Thu Dec 28 00:57:17 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 399
$MidnightBSD$, Correct incorrect statement about the return value as 0 is returned if ALL are found, not any.

Revision 399 - Directory Listing - [select for diffs]
Modified Thu Dec 28 00:53:13 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 398
$MidnightBSD$, UCB clause 3

Revision 398 - Directory Listing - [select for diffs]
Modified Thu Dec 28 00:52:20 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 397
UCB clause 3, $MidnightBSD$, markup fixes.

Revision 397 - Directory Listing - [select for diffs]
Modified Thu Dec 28 00:48:11 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 396
Oops... missing " helps.

Revision 396 - Directory Listing - [select for diffs]
Modified Thu Dec 28 00:46:14 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 395
$MidnightBSD$, UCB clause 3

Revision 395 - Directory Listing - [select for diffs]
Modified Thu Dec 28 00:43:46 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 394
Add the -S option as inspired by OpenBSD and FreeBSD 7-Current.

Revision 394 - Directory Listing - [select for diffs]
Modified Thu Dec 28 00:38:31 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 393
UCB clause 3

Revision 393 - Directory Listing - [select for diffs]
Modified Thu Dec 28 00:31:53 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 392
$MidnightBSD$

Revision 392 - Directory Listing - [select for diffs]
Modified Thu Dec 28 00:30:40 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 391
UCB clause 3

Revision 391 - Directory Listing - [select for diffs]
Modified Wed Dec 27 23:56:44 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 390
NUL terminate buffer from fgetln(3).

Revision 390 - Directory Listing - [select for diffs]
Modified Wed Dec 27 23:54:55 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 389
Check the entire length of the current argument for the EOF string, but don't assume an ANSI string and thus don't use strcmp(3) which looks for NUL.

Revision 389 - Directory Listing - [select for diffs]
Modified Wed Dec 27 23:50:49 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 388
Document the DONTSTRIP environment option.

Revision 388 - Directory Listing - [select for diffs]
Modified Wed Dec 27 23:49:11 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 387
Remove UCB advertising clause.

Revision 387 - Directory Listing - [select for diffs]
Modified Wed Dec 27 23:48:24 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 386
Add DONTSTRIP so that one can easily install debugable binaries when one cannot easily edit a package's makefiles or configure scripts.

Revision 386 - Directory Listing - [select for diffs]
Modified Wed Dec 27 23:43:52 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 385
Use sysctlbyname

Revision 385 - Directory Listing - [select for diffs]
Modified Wed Dec 27 23:38:19 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 384
Import getent(1), a program which retrieves and displays entries from the administrative database such as hosts, using the lookup order in nsswitch.conf(5).

Imported from FreeBSD, NetBSD.

Revision 384 - Directory Listing - [select for diffs]
Modified Wed Dec 27 23:31:40 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 383
Fix the build with NO_LIBPTHREAD or NO_LIBTHR depending on the arch.

Revision 383 - Directory Listing - [select for diffs]
Modified Wed Dec 27 23:24:15 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 382
Print the euid after the gid.

Revision 382 - Directory Listing - [select for diffs]
Modified Wed Dec 27 23:13:18 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 381
Undefine __DATE__ to avoid placing a build timestamp into /usr/sbin/named

Revision 381 - Directory Listing - [select for diffs]
Modified Wed Dec 27 17:18:07 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 380
Add rdate to rc.d startup so users can choose between ntpd and rdate.

Revision 380 - Directory Listing - [select for diffs]
Modified Wed Dec 27 16:46:13 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 379
ntpd's -S flag is the default so we do not need to set it.

Revision 379 - Directory Listing - [select for diffs]
Modified Wed Dec 27 16:43:12 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 378
Disable dump device as we are prepairing for encrypted swap.

Revision 378 - Directory Listing - [select for diffs]
Modified Wed Dec 27 05:16:15 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 377
Sync with FreeBSD RELENG_6

Revision 377 - Directory Listing - [select for diffs]
Modified Wed Dec 27 05:05:11 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 376
Finally fixed this outstanding issue by importing some missing files.  Duh!

Revision 376 - Directory Listing - [select for diffs]
Modified Wed Dec 27 05:02:27 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 375
Documented changes to bsnmpd, geom, etc.

Revision 375 - Directory Listing - [select for diffs]
Modified Wed Dec 27 04:52:56 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 374
Sync with FreeBSD RELENG_6_2

Revision 374 - Directory Listing - [select for diffs]
Modified Wed Dec 27 04:51:23 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 373
Look for BSD label at 512-byte offset, if not found on the very beginning of the second sector.  This makes it compatible with labels created by disklabel(8) on non-512-byte-per-sector devices.

Import from FreeBSD.

Revision 373 - Directory Listing - [select for diffs]
Modified Wed Dec 27 04:48:57 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 372
Delay an orphan event if provider has still in-flight I/O requests. GEOM classes can then detach safely from the provider when an orphan event is received.  Fixes a 'detach with active requests' panic for gstripe/gconcat under load.

Imported/Obtained from FreeBSD.

Revision 372 - Directory Listing - [select for diffs]
Modified Wed Dec 27 04:46:36 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 371
Fix memory alignment error.

Import from FreeBSD.

Revision 371 - Directory Listing - [select for diffs]
Modified Wed Dec 27 04:45:12 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 370
Add g_duplicate_bio() function which does the same thing as g_clone_bio() except it allocates new bio with a M_WAITOK flag.

sys/geom/geom.h
sys/geom/geom_io.c

Import from FreeBSD.

Revision 370 - Directory Listing - [select for diffs]
Modified Wed Dec 27 04:41:43 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 369
Allow to use g_slice_orphan() from outside.

Revision 369 - Directory Listing - [select for diffs]
Modified Wed Dec 27 04:39:03 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 368
VFS SMP fixes, stack api, softupdates fixes.

Revision 368 - Directory Listing - [select for diffs]
Modified Wed Dec 27 04:36:31 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 367
Make sure that bio is set that no data has been transfered to fix fdisk(8)'s probing of secotr size for non-512 byte sector sizes.

Revision 367 - Directory Listing - [select for diffs]
Modified Wed Dec 27 04:32:54 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 366
Fix a typo in a comment.

Revision 366 - Directory Listing - [select for diffs]
Modified Wed Dec 27 04:04:06 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 365
Oops.  Haven't added audit...

Revision 365 - Directory Listing - [select for diffs]
Modified Wed Dec 27 03:55:06 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 364
Change the generation of /etc/fstab so that encryption is used for swap.

Revision 364 - Directory Listing - [select for diffs]
Modified Wed Dec 27 03:46:16 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 363
Forgot to add these on Oct 30

Revision 363 - Directory Listing - [select for diffs]
Modified Wed Dec 27 03:04:25 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 362
$MidnightBSD$

Revision 362 - Directory Listing - [select for diffs]
Modified Wed Dec 27 02:51:01 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 361
$MidnightBSD$

Revision 361 - Directory Listing - [select for diffs]
Modified Wed Dec 27 02:32:32 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 360
Remove additional alpha bit...

Don't create stray objects on pc98.  We may still support pc98.

Detect that the audit group is missing earlier during install.

Revision 360 - Directory Listing - [select for diffs]
Modified Wed Dec 27 02:27:33 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 359
Don't attempt to compile DEFAULTS and don't attempt to compile LINT twice.

Do not discard the current value of __MAKE_CONF when testing whether MAKEOBJDIRPREFIX is set at a wrong place.

Revision 359 - Directory Listing - [select for diffs]
Modified Wed Dec 27 02:07:53 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 358
Change default CVSup command to csup.  Since we haven't done a release yet, fix default branch.

Revision 358 - Directory Listing - [select for diffs]
Modified Wed Dec 27 02:05:17 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 357
Fix make install for cvsup files.

Revision 357 - Directory Listing - [select for diffs]
Modified Wed Dec 27 01:30:02 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 356
Add csup to usr.bin, the second step.

Revision 356 - Directory Listing - [select for diffs]
Modified Wed Dec 27 01:28:42 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 355
Add csup to contrib, the first step to importing csup into base.

Revision 355 - Directory Listing - [select for diffs]
Modified Wed Dec 27 01:25:15 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 354
$MidnightBSD$, path fix.

Revision 354 - Directory Listing - [select for diffs]
Modified Wed Dec 27 01:15:48 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 353
Change burncd so that if CDRIOCGETPROGRESS does not return a good value, CDIOCRESET is used to determine when the command is complete.

This corrects a bug with some CD/DVD recorders working with rewritable media where they never complete.

Based on a patch by Luigi Rizzo on stable@freebsd.org.

Revision 353 - Directory Listing - [select for diffs]
Modified Wed Dec 27 00:48:45 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 352
Removed several supfiles

Revision 352 - Directory Listing - [select for diffs]
Modified Tue Dec 26 22:38:02 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 351
Catch this up a bit with recent changes.

Revision 351 - Directory Listing - [select for diffs]
Modified Tue Dec 26 22:26:03 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 350
We now have a MidnightBSD CVSup server.  Make changes to allow users to access stargazer directly, remove files not needed, and fix comments.

Revision 350 - Directory Listing - [select for diffs]
Modified Tue Dec 26 21:58:15 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 349
We now have a cvsupd server.

Revision 349 - Directory Listing - [select for diffs]
Modified Tue Dec 26 01:20:32 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 348
   Fix a typo in __fpu_ftox() that caused long double to long (and long long)
   conversion of negative numbers to always result in -1.

Revision 348 - Directory Listing - [select for diffs]
Modified Fri Dec 22 02:12:27 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 347
We should not return an ERROR if there are no batteries present.

Revision 347 - Directory Listing - [select for diffs]
Modified Thu Dec 21 21:00:13 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 346
Missed a ifp

Revision 346 - Directory Listing - [select for diffs]
Modified Thu Dec 21 20:41:16 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 345
Assign rl_dev for rl driver.

Revision 345 - Directory Listing - [select for diffs]
Modified Thu Dec 21 20:40:08 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 344
Add rl_dev for previous commit.

Revision 344 - Directory Listing - [select for diffs]
Modified Thu Dec 21 19:52:03 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 343
Don't touch ifp-if_baudrate in miibus aware drivers.

Revision 343 - Directory Listing - [select for diffs]
Modified Thu Dec 21 19:51:12 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 342
Fix the previous commit to use rl's dev instead of ifp.  (two back)

Revision 342 - Directory Listing - [select for diffs]
Modified Thu Dec 21 16:47:20 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 341
Fix some race conditions in TTY code.  tty and sessrele(), doenterpgrp(), leavepgrp(), pgdelete() and enterpgrp().  The tty code is still under giant lock, but the session/pgrp release code just used proctree_locks.  P_CONTROLT isn't really fully locked too in enterpgrp().

Obtained from FreeBSD, mbr.

Revision 341 - Directory Listing - [select for diffs]
Modified Thu Dec 21 16:31:26 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 340
Retest tp->t_session because Giant might have been temporarily dropped while waiting for proctree_lock, allowing for an intervening tty_close() that cleared tp_>t_session.

Obtained from FreeBSD,tegge.

Revision 340 - Directory Listing - [select for diffs]
Modified Thu Dec 21 16:22:39 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 339
Consistently use if_printf() only in interface methods: if_start, if_ioctl, if_watchdog, etc or in functions that are used by these methods only.  In all other cases, device_printf should be used.

This also fixes several panics when if_printf() is called before softc->ifp was initialized.

Revision 339 - Directory Listing - [select for diffs]
Modified Thu Dec 21 16:18:09 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 338
IF_LLADDR does not necessarily return aligned memory addresses.  Since accessing ID registers in rt181x9 needs 32bit register access and RL_IDR6/RL_IDR7 registers are reserved registers bzero() is needed before copying the ethernet address.
This fixes a bug in Sparc64

Obtained from FreeBSD, yongari.

Revision 338 - Directory Listing - [select for diffs]
Modified Mon Dec 18 23:50:50 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 337
As discussed on freebsd-threads@freebsd.org, a libpthread bug exists that this patch by Peter Edwards Corrects.

Here is a summary:

I've a problem when a process uses:
       libpthread
       detached threads
       mixed bound/unbound threads
       suspended threads  (a la pthread_resume_np())

whereby some newly created suspended threads don't get scheduled.
I think I've tracked it down, so if someone could review the
reasoning, I'd be grateful.

Newly launched threads have a "struct pthread" that may be allocated
from a freelist of GCed threads. Apparently, when detached threads
enter the GCed list, they can still have the "active" flag set on
them. Later, this causes problems when this thread is recycled and
resumed, because _thr_setrunnable_unlocked() doesn't add it to a
run queue.

thr_cleanup can be called either from the bound-threads scheduler,
or the unbound scheduler. One callsite clears "active", "needswitchout",
and "lock_switch" to zero before the call. The other callsite just
clears "check_pending". I think these flags are all either bound-thread
or unbound-thread specific, and that there was an unintended
assumption that the thread would remain with the same "boundedness"
after being recycled, which isn't neccessarily the case. (Or another
way - the idea was that there was no need to clear the "active"
flag on a bound thread, as its only used for unbound threads, but
a GCed bound thread might be recycled into an unbound thread)

Given that, it seems correct to clean up the thread the same way
for both cases, and just move that code into thr_cleanup.

Revision 337 - Directory Listing - [select for diffs]
Modified Wed Dec 6 19:43:37 2006 UTC (17 years, 3 months ago) by laffer1
Original Path: trunk
Diff to previous 336
Should be >= and not >

Revision 336 - Directory Listing - [select for diffs]
Modified Thu Nov 30 04:09:58 2006 UTC (17 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 335
Minor cleanup

Revision 335 - Directory Listing - [select for diffs]
Modified Thu Nov 30 03:58:23 2006 UTC (17 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 334
Fix setmode error handling.

Revision 334 - Directory Listing - [select for diffs]
Modified Thu Nov 30 03:54:25 2006 UTC (17 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 333
Minor cleanups to sync.  $MidnightBSD$

Cleaned up source so that it would be more portable and inline with NetBSD.

Revision 333 - Directory Listing - [select for diffs]
Modified Wed Nov 29 17:09:59 2006 UTC (17 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 332
Minor adjustment on the value for "short filename" situations to match freebsd's behavior.  Using -1 makes more sense.

Revision 332 - Directory Listing - [select for diffs]
Modified Wed Nov 29 04:31:24 2006 UTC (17 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 331
The original patch falsely assumed time_t.

Revision 331 - Directory Listing - [select for diffs]
Modified Wed Nov 29 03:04:33 2006 UTC (17 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 330
Correct file creation timestamp.

Revision 330 - Directory Listing - [select for diffs]
Modified Fri Nov 24 19:41:57 2006 UTC (17 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 329
Check that -w width is not above maximum.  Use DWIDTH constant instead of a hard coded constant.

Reported by Gruzicki Wlodek on Bugtraq.
Obtained from FreeBSD, NetBSD, and OpenBSD.

Revision 329 - Directory Listing - [select for diffs]
Modified Thu Nov 16 13:36:07 2006 UTC (17 years, 4 months ago) by laffer1
Original Path: trunk
Diff to previous 328
FreeBSD all versions FireWire IOCTL kernel integer overflow information disclousure

Revision 328 - Directory Listing - [select for diffs]
Modified Wed Nov 1 01:02:34 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 327
Signals can be delivered to a process or thread.  Check for thread delivered signals as well.

Revision 327 - Directory Listing - [select for diffs]
Modified Wed Nov 1 00:58:45 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 326
EWOULDBLOCK should be a recoverable error.  If it is not, clients will experience data loss using TCP.

Revision 326 - Directory Listing - [select for diffs]
Modified Tue Oct 31 19:22:30 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 325
Cleanup

Revision 325 - Directory Listing - [select for diffs]
Modified Tue Oct 31 19:20:59 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 324
List recent changes and removals.

Revision 324 - Directory Listing - [select for diffs]
Modified Tue Oct 31 19:20:02 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 323
$MidnightBSD$
Remove clause 3 from UCB license
Cleanup of man7

Revision 323 - Directory Listing - [select for diffs]
Modified Mon Oct 30 21:39:18 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 322
Update DRM/DRI.  Fix ptrace_machdep build error.

Revision 322 - Directory Listing - [select for diffs]
Modified Mon Oct 30 20:28:38 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 321
oops

Revision 321 - Directory Listing - [select for diffs]
Modified Mon Oct 30 18:51:07 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 320
i915 attachment and running fixed.
i915 vblank support.
Radeon's new memory map support.
ATI PCI/PCIE GART fix.
r300 fixes

Hack to radeon module to shut up errors.

Obtained from FreeBSD stable

Revision 320 - Directory Listing - [select for diffs]
Modified Mon Oct 30 17:02:39 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 319
Bandaid to get world to build.  Need to research/fix this problem.

Revision 319 - Directory Listing - [select for diffs]
Modified Mon Oct 30 16:55:24 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 318
Be reasonable when overwrite mode is enabled and there are hard links.  Overwriting when links > 1 will cause data loss.

Obtained from FreeBSD, OpenBSD.

Revision 318 - Directory Listing - [select for diffs]
Modified Mon Oct 30 15:50:43 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 317
Sync with FreeBSD Stable/vendor.

Revision 317 - Directory Listing - [select for diffs]
Modified Mon Oct 30 15:50:17 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 316
Sync bsnmpd with FreeBSD stable/vendor.

Revision 316 - Directory Listing - [select for diffs]
Modified Mon Oct 30 15:28:00 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 315
update documentation as we've already imported the functional changes for 9.3.2p1.

Revision 315 - Directory Listing - [select for diffs]
Modified Mon Oct 30 15:18:22 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 314
fix lukemftpd

Revision 314 - Directory Listing - [select for diffs]
Modified Mon Oct 30 14:50:16 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 313
Only catch SIGINFO when LIBPTHREAD_DEBUG is defined in the environment.

Eliminate a race condition in timed waist (cv, mutex, sleeps).

Don't forget to init a TAILQ before using it.

Allocate a thread's tcb last so it is easier to handle failures to malloc() siginfo.

Include needed headers obtained through pthread.h

Obtained from FreeBSD (March 2006 MFC)

Revision 313 - Directory Listing - [select for diffs]
Modified Mon Oct 30 13:55:39 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 312
Remove alpha references, install shared libc_r into /lib because its aliased by libpthread and some /sbin tools.

Revision 312 - Directory Listing - [select for diffs]
Modified Mon Oct 30 13:50:18 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 311
Added bce a few months back.  Need a man page.

Revision 311 - Directory Listing - [select for diffs]
Modified Mon Oct 30 07:43:26 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 310
Correct decoding a string containing '/'

Revision 310 - Directory Listing - [select for diffs]
Modified Mon Oct 30 07:34:44 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 309
Added strtonum

Revision 309 - Directory Listing - [select for diffs]
Modified Mon Oct 30 07:30:16 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 308
More cleanup

Revision 308 - Directory Listing - [select for diffs]
Modified Mon Oct 30 07:28:15 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 307
Posixize function strtonum, clean up manpage.

Revision 307 - Directory Listing - [select for diffs]
Modified Mon Oct 30 07:22:30 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 306
Oops.. someone forgot to add the definition for strtonum

Revision 306 - Directory Listing - [select for diffs]
Modified Sat Oct 28 17:34:35 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 305
$MidnightBSD$

Revision 305 - Directory Listing - [select for diffs]
Modified Sat Oct 28 06:15:57 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 304
Described various src/sys/dev updates, lukemftpd and other exiting things.

Revision 304 - Directory Listing - [select for diffs]
Modified Sat Oct 28 06:06:48 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 303
Added intel ICH7 version

Revision 303 - Directory Listing - [select for diffs]
Modified Sat Oct 28 06:04:20 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 302
Recently added Intel ICH8, nForce 5 support.

Revision 302 - Directory Listing - [select for diffs]
Modified Sat Oct 28 05:14:30 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 301
Clear invalid bits in SSE mxcsr register.

Revision 301 - Directory Listing - [select for diffs]
Modified Sat Oct 28 05:08:09 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 300
Clear invalid bits in SSE mxcsr register

Revision 300 - Directory Listing - [select for diffs]
Modified Sat Oct 28 04:41:43 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 299
Added two additional Intel PCI ids for fxp 10/100 Pro NICs.

Revision 299 - Directory Listing - [select for diffs]
Modified Sat Oct 28 04:27:11 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 298
Clear invalid bits in SSE mxcsr register.

Revision 298 - Directory Listing - [select for diffs]
Modified Sat Oct 28 04:16:57 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 297
Don't set CR0_NE and CR0_MP in npx_probe() as they are already set earlier in cpu_setregs().

If we know this CPU has a FPU via cpuid, just assume INT16 and make the dmesg quiet.  This is true for all Pentium class processors and even some 486DX systems.

Revision 297 - Directory Listing - [select for diffs]
Modified Sat Oct 28 04:04:49 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 296
Don't allow userland to set hardware watch points on kernel memory for i386.

Revision 296 - Directory Listing - [select for diffs]
Modified Sat Oct 28 04:01:34 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 295
Remove UCB advertising clause.

Revision 295 - Directory Listing - [select for diffs]
Modified Sat Oct 28 01:03:14 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 294
change seeded check

Revision 294 - Directory Listing - [select for diffs]
Modified Sat Oct 28 01:01:05 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 293
Update lukemftpd

Revision 293 - Directory Listing - [select for diffs]
Modified Fri Oct 27 22:11:59 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 292
Missed mpt changes.

Revision 292 - Directory Listing - [select for diffs]
Modified Fri Oct 27 20:46:54 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 291
Sync with cam changes.

Revision 291 - Directory Listing - [select for diffs]
Modified Fri Oct 27 19:52:26 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 290
Add speed sense correction for U320 SCSI.  Correct problem with mpt driver import.

Revision 290 - Directory Listing - [select for diffs]
Modified Fri Oct 27 16:35:43 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 289
Back out changes.

Revision 289 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:54:29 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 288
Sync with FreeBSD 6-Stable

Revision 288 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:49:00 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 287
Sync Via VGE based Gigabit ethernet with FreeBSD 6-Stable

Revision 287 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:46:20 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 286
Sync with FreeBSD 6-Stable (6.2 beta)

Revision 286 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:44:29 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 285
Sync mpt driver with 6-Stable (6.2 beta).  Adds support for newer fibre channel cards and SCSI controllers.

Revision 285 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:36:04 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 284
Sync USB support with FreeBSD 6.1 Release.

Revision 284 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:32:37 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 283
Fix handling of keyboard LEDs.

Revision 283 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:30:17 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 282
Import some locking changes from FreeBSD

Revision 282 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:28:41 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 281
Part 3:
Add support for nforce5 and intel ICH8 chipsets.  Add some additional ICH7 support.

From FreeBSD

Revision 281 - Directory Listing - [select for diffs]
Modified Thu Oct 26 21:17:32 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 280
Part 2 of our large ata update.  Most of these changes come from FreeBSD 6-stable or 6.1 Release.  We should be at least at 6.1 release levels with our support for devices with this commit.

Add support for the JMicron JMB361, 365 and 366 chips.

Make the ATAPI sense data accessible when using the ioctl interface.

Revision 280 - Directory Listing - [select for diffs]
Modified Thu Oct 26 12:59:58 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 279
Fix spelling error and change to MidnightBSD

Revision 279 - Directory Listing - [select for diffs]
Modified Wed Oct 18 16:42:48 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 278
Document -l maxrun.  It was added to freebsd nearly 12 years ago and no one bothered to document it.

Revision 278 - Directory Listing - [select for diffs]
Modified Wed Oct 18 16:07:47 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 277
Add reload command.

Revision 277 - Directory Listing - [select for diffs]
Modified Wed Oct 18 16:07:04 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 276
Fix amd if installed from ports or another source.

Revision 276 - Directory Listing - [select for diffs]
Modified Wed Oct 18 15:52:35 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 275
Avoid a warning for each whiteout found during ls -lW

# ls -lW
total 2
-rw-r--r--  1 root  wheel  6 Oct 18 14:46 file1
ls: ./file2: No such file or directory
w---------  0 root  wheel  0 Jan  1  1970 file2

From FreeBSD rev 1.76

Revision 275 - Directory Listing - [select for diffs]
Modified Wed Oct 18 15:47:38 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 274
Do not call chflags() for whiteouted files.  From FreeBSD rev 1.56

Revision 274 - Directory Listing - [select for diffs]
Modified Mon Oct 16 15:29:06 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 273
Remove references to alpha

Revision 273 - Directory Listing - [select for diffs]
Modified Sun Oct 15 00:11:58 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 272
Try to catch up recent commits.

Revision 272 - Directory Listing - [select for diffs]
Modified Sun Oct 15 00:07:21 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 271
No locks on tree at this time.

Revision 271 - Directory Listing - [select for diffs]
Modified Sun Oct 15 00:06:35 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 270
informal maintainer change from freebsd repo.

Revision 270 - Directory Listing - [select for diffs]
Modified Sat Oct 14 23:52:44 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 269
Remove alpha arch references.

Revision 269 - Directory Listing - [select for diffs]
Modified Sat Oct 14 23:42:41 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 268
Change ports reference to mports.

Revision 268 - Directory Listing - [select for diffs]
Modified Sat Oct 14 23:08:54 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 267
Fast interupt handlers are causing problems on some systems.  This will workaround the problem until it can be resolved.

Revision 267 - Directory Listing - [select for diffs]
Modified Fri Oct 13 23:15:50 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 266
Only use the channel in the request given to ata_completed if
its still present.

Only look for ICRC and CORR errors on ATA devices not ATAPI.

Get rid of all the long long and mixint casting in printfs'.

On all our platforms intmax == int64_t so simply using %j to
print int64_ts' is safe all over, and doesn't pollute the code.

Update atapi-fd to support direct devices such as disks.

ATAUSB will need to hook inot the delayed boot identity to
have interrupts running, so externalize it.

Add USB modes.

Revision 266 - Directory Listing - [select for diffs]
Modified Fri Oct 13 20:43:48 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 265
Keep the parent device (channel) around in ata_request so that we don't
panic on device removal or failure.

Clean up ata_fail_requests to prevent the queue mnging to fail.

Ensure ata_reinit does things in the right order to prevent panics.

Revision 265 - Directory Listing - [select for diffs]
Modified Thu Oct 12 20:52:33 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 264
Fix memory leak in UDF.

Revision 264 - Directory Listing - [select for diffs]
Modified Tue Oct 10 20:03:47 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 263
fix strange stray character possibly from faulty old server backup.

Revision 263 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:44:06 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 262
Update config for openssh 4.4p1

Revision 262 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:40:33 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 261
commit the config change.

Revision 261 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:21:56 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 260
add lukemftpd.

Revision 260 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:20:24 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 259
if rpc.pcnfsd exists, it would be a port.

Revision 259 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:18:37 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 258
Comment out examples.

Revision 258 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:15:06 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 257
If NO_BIND_MTREE is set, we don't have anywehre to put namedb files.  No need to try.

Revision 257 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:12:20 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 256
Fix NO_CRYPT option when it is only defined during some make operations.

Revision 256 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:52:38 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 255
Add $MidnightBSD$ and the netbsd namespace hack.

Revision 255 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:48:14 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 254
namespace hack from netbsd

Revision 254 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:46:55 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 253
Fix static compiling.

Revision 253 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:46:54 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 252
netbsd namespace hack

Revision 252 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:41:10 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 251
namespace hack from netbsd

Revision 251 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:38:44 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 250
openssh 4.4p1 import fix

Revision 250 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:37:52 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 249
netbsd namespace hack

Revision 249 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:32:15 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 248
add additional files from the OpenSSH import

Revision 248 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:30:23 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 247
NetBSD namespace hack.

Revision 247 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:27:32 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 246
NetBSD hack for namespace pollution.

Revision 246 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:25:49 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 245
Minimize namespace pollution. NetBSD hack.

Revision 245 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:36:54 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 244
fix build of openssh.

Revision 244 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:23:51 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 243
Fix bug in malloc_uninit():
Releasing items from the mt_zone can not be done by a simple uma_zfree() call since mt_zone is allocated with the UMA_ZONE_MALLOC flag.  Use uma_zfree_arg instead and supply the slam.

This bug can cause panics in low memory conditions while unloading kernel modules containing MALLOC_DEFINE(...) statements.

This commit brings kern_malloc.c up to FreeBSD 6.1 release equivalency.

Revision 243 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:08:08 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 242
Remove extraneous PHOLD() in kthread_create()

Revision 242 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:06:10 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 241
fix openssh import

Revision 241 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:04:35 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 240
Fix OpenSSH import

Revision 240 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:02:13 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 239
fix auth files based on freebsd stable changes.

Revision 239 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:01:30 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 238
Fix authentication files based on FreeBSD stable changes.

Revision 238 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:00:40 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 237
update tricks for 4.4

Revision 237 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:00:15 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 235
Change directions for OpenSSH 4.4

Revision 235 - Directory Listing - [select for diffs]
Modified Tue Oct 10 14:38:30 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 233
This commit was generated by cvs2svn to compensate for changes in r234,
which included commits to RCS files with non-trunk default branches.
Revision 233 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:19:03 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 232
Don't interpret .//dir as /dir.

Revision 232 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:16:20 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 231
document changes.

Revision 231 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:15:15 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 230
Copy filename read from stdin into the private buffer.

Revision 230 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:12:18 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 229
Fix typo.

Revision 229 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:11:04 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 228
Be pedantic and do fts_close() when done.

Revision 228 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:09:01 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 227
Fix some typos and clarify some information in the man page regarding column title such as =foo at the end of -o.

Revision 227 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:06:27 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 226
Fix the case where the user specifies an alternate heading for some output format keyword and the keyword they picked is an alias to some other keyword. This includes the segfault fixes.  (FreeBSD)

Revision 226 - Directory Listing - [select for diffs]
Modified Sun Oct 8 14:59:26 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 225
Add -F option to delete empty directories when creating a new symlink.

Revision 225 - Directory Listing - [select for diffs]
Modified Sun Oct 8 14:27:29 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 224
update manpage

Revision 224 - Directory Listing - [select for diffs]
Modified Sun Oct 8 06:21:47 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 223
Fix comment.

Revision 223 - Directory Listing - [select for diffs]
Modified Sun Oct 8 06:19:42 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 222
Fix WARNS=2 warnings.

Revision 222 - Directory Listing - [select for diffs]
Modified Sun Oct 8 06:08:55 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 221
Make sure the filename for the kernel is correct.  The last character could be wrong with the previous code.

Revision 221 - Directory Listing - [select for diffs]
Modified Sun Oct 8 06:07:29 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 220
When enabling A20 put upper limit on amount of time we wait for the keyboard controller to get ready (65K x ISA access time, visually around 1 second).  If we have wait more than that amount it's likely that the hardware is a legacy-free system and doesn't have a keyboard controller and doesn't require enabling A20 at all.

This makes cdboot/pxeldr work on MacBook Pro systems with Boot Camp and some IBM Netvista systems such as the S40.

Revision 220 - Directory Listing - [select for diffs]
Modified Sun Oct 8 06:00:04 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 219
Reduces the size of BTX and boot2 along with some Compaq/HP bios compatibility fixes.

Revision 219 - Directory Listing - [select for diffs]
Modified Sun Oct 8 05:48:24 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 218
Fix for AMD64 systems so that the code generated is identical.

Revision 218 - Directory Listing - [select for diffs]
Modified Sun Oct 8 05:46:40 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 217
whitespace cleanup

Revision 217 - Directory Listing - [select for diffs]
Modified Sun Oct 8 05:43:48 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 216
Remove BSD/OS option and skip the beep if the selection is ok.

Revision 216 - Directory Listing - [select for diffs]
Modified Sun Oct 8 04:52:18 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 215
Remove advertising clause

Revision 215 - Directory Listing - [select for diffs]
Modified Sun Oct 8 04:50:57 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 214
Remove clause as approved in 1999

Revision 214 - Directory Listing - [select for diffs]
Modified Sat Oct 7 18:33:48 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 213
The UK had some changes with their time zones.  This also caused the zoneinfo import to screw up tzsetup.

Revision 213 - Directory Listing - [select for diffs]
Modified Sat Oct 7 16:33:20 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 212
Bring the "just copy" hit list closer to date.

Revision 212 - Directory Listing - [select for diffs]
Modified Sat Oct 7 16:26:19 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 211
Fix the location of the kernel during binary upgrades.

Revision 211 - Directory Listing - [select for diffs]
Modified Sat Oct 7 16:22:27 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 210
Fix binary upgrades by accounting for the schg flag on /var/empty

Revision 210 - Directory Listing - [select for diffs]
Modified Wed Oct 4 01:34:54 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 209
Fixing problems with 4.4p1 import

Revision 209 - Directory Listing - [select for diffs]
Modified Tue Oct 3 02:03:03 2006 UTC (17 years, 5 months ago) by raven
Original Path: trunk
Diff to previous 207
This commit was generated by cvs2svn to compensate for changes in r208,
which included commits to RCS files with non-trunk default branches.
Revision 207 - Directory Listing - [select for diffs]
Modified Mon Oct 2 04:59:17 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 206
Fix a number of security vulnerabilities in OpenSSL as reported on their website Septmeber 28, 2006.

Revision 206 - Directory Listing - [select for diffs]
Modified Mon Oct 2 00:39:35 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 205
forgot to add int copyout :)

Revision 205 - Directory Listing - [select for diffs]
Modified Mon Oct 2 00:24:29 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 204
Adjusted directions

Revision 204 - Directory Listing - [select for diffs]
Modified Mon Oct 2 00:16:53 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 202
gzio.c minigzip.c and zconf.h have changes that must be maintained during each upgrade from the vendor branch.

Revision 202 - Directory Listing - [select for diffs]
Modified Sun Oct 1 23:49:06 2006 UTC (17 years, 5 months ago) by laffer1
Original Path: trunk
Diff to previous 200
This commit was generated by cvs2svn to compensate for changes in r201,
which included commits to RCS files with non-trunk default branches.
Revision 200 - Directory Listing - [select for diffs]
Modified Sun Oct 1 22:12:20 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 199
Make changes to Generic.  Remove legacy 486 cpu support.  $MidnightBSD$

Revision 199 - Directory Listing - [select for diffs]
Modified Sun Oct 1 21:55:48 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 198
$MidnightBSD$

Revision 198 - Directory Listing - [select for diffs]
Modified Sun Oct 1 21:50:12 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 197
$MidnightBSD$

Revision 197 - Directory Listing - [select for diffs]
Modified Sun Oct 1 21:47:25 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 196
Fix some issues with ports/mports change. $MidnightBSD$

Revision 196 - Directory Listing - [select for diffs]
Modified Sun Oct 1 21:08:37 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 195
fix ports tarball name

Revision 195 - Directory Listing - [select for diffs]
Modified Sun Oct 1 15:18:11 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 194
Convert to mports.

Revision 194 - Directory Listing - [select for diffs]
Modified Sat Sep 30 18:29:33 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 193
adjust nfs_diskless to work in additional situations.

Revision 193 - Directory Listing - [select for diffs]
Modified Sat Sep 30 15:00:44 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 192
Remove USB keyboard option as we have kbdmux in.  Clean up menu text to improve usability.

Revision 192 - Directory Listing - [select for diffs]
Modified Fri Sep 29 14:10:15 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 191
Change release target to use mports instead of ports.

Revision 191 - Directory Listing - [select for diffs]
Modified Wed Sep 27 12:58:48 2006 UTC (17 years, 6 months ago) by archite
Original Path: trunk
Diff to previous 190
ALTQ configuration for i386 KERNEL

Revision 190 - Directory Listing - [select for diffs]
Modified Tue Sep 26 18:10:18 2006 UTC (17 years, 6 months ago) by archite
Original Path: trunk
Diff to previous 189
Update pkg_add -r path

Revision 189 - Directory Listing - [select for diffs]
Modified Sat Sep 23 16:25:27 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 188
Fix a problem with some sun usb based machines.

Revision 188 - Directory Listing - [select for diffs]
Modified Sat Sep 23 02:56:53 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 187
Fix POSIX compliance.

Revision 187 - Directory Listing - [select for diffs]
Modified Sat Sep 23 01:38:26 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 186
Change pkg_add -r to MidnightBSD ftp.

Revision 186 - Directory Listing - [select for diffs]
Modified Sat Sep 23 01:26:01 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 185
This patch corrects a problem when the max vnodes is below the minimum required by the code.  nm_wcommitsize calculation should be reviewed

Revision 185 - Directory Listing - [select for diffs]
Modified Sat Sep 23 01:16:55 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 184
Techinically its a bad fd return as it is with all other cases.

Revision 184 - Directory Listing - [select for diffs]
Modified Thu Sep 21 16:45:30 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 183
Fix panics with squid 2.6 using threading.  threads/103127 fbsd

Revision 183 - Directory Listing - [select for diffs]
Modified Wed Sep 20 03:39:30 2006 UTC (17 years, 6 months ago) by archite
Original Path: trunk
Diff to previous 182
gzip security patch

Revision 182 - Directory Listing - [select for diffs]
Modified Mon Sep 18 16:23:58 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 181
Remove advertising clause from UCB

Revision 181 - Directory Listing - [select for diffs]
Modified Mon Sep 18 16:09:11 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 180
Add $MidnightBSD$

Revision 180 - Directory Listing - [select for diffs]
Modified Mon Sep 18 16:08:37 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 179
Remove advertising clause, add $MidnightBSD$

Revision 179 - Directory Listing - [select for diffs]
Modified Mon Sep 18 16:06:33 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 178
Remove the advertising clause

Revision 178 - Directory Listing - [select for diffs]
Modified Mon Sep 18 15:55:53 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 177
Clean up usage, fix row/column order to match OpenBSD, NetBSD and the last BSD 4.4 lite2 release.

Revision 177 - Directory Listing - [select for diffs]
Modified Mon Sep 18 00:15:49 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 176
Add bce module

Revision 176 - Directory Listing - [select for diffs]
Modified Sun Sep 17 13:59:51 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 175
Enable bce gigabit ethernet driver.

Revision 175 - Directory Listing - [select for diffs]
Modified Sun Sep 17 13:56:38 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 174
Enable the bce gigabit ethernet driver.

Revision 174 - Directory Listing - [select for diffs]
Modified Sun Sep 17 03:16:22 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 173
Enable building bce kernel module

Revision 173 - Directory Listing - [select for diffs]
Modified Sun Sep 17 02:37:31 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 172
Update from 6.0.5 to 6.1.4 Intel driver.  This update adds support for one additional NIC and hopefully will fix some problems with the em found on some Dell gx260's negotiating below gigabit speeds!

Revision 172 - Directory Listing - [select for diffs]
Modified Thu Sep 14 03:56:55 2006 UTC (17 years, 6 months ago) by archite
Original Path: trunk
Diff to previous 171
Changed gcc version to indicate MidnightBSD

Revision 171 - Directory Listing - [select for diffs]
Modified Sun Sep 10 00:40:35 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 170
Remove pidfile reference so ntpd can be stopped using the rc mechanisms.

Revision 170 - Directory Listing - [select for diffs]
Modified Sat Sep 9 23:31:34 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 169
Remove $FreeBSD$

Revision 169 - Directory Listing - [select for diffs]
Modified Sat Sep 9 23:27:07 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 168
*** empty log message ***

Revision 168 - Directory Listing - [select for diffs]
Modified Sat Sep 9 23:13:07 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 167
*** empty log message ***

Revision 167 - Directory Listing - [select for diffs]
Modified Sat Sep 9 14:06:07 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 166
Fix standards section as we renamed -p to -D.

Revision 166 - Directory Listing - [select for diffs]
Modified Sat Sep 9 13:48:40 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 165
Changed -p flag to -D for "Date".  Cleaned up the manual.  The utility now checks the length of the format argument and gives an error immediately.

I do not want cat to become a general purpose filter, but this functionality seems quite useful.

Revision 165 - Directory Listing - [select for diffs]
Modified Fri Sep 8 14:04:24 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 164
A new flag, -p, was added to cat which allows dates to be prepended to each line of output.  This could be useful when logging from scripts, etc.

The format is based on strftime
so cat -p %D test might print out
09/08/06testing this
if the file test contained testing this.

This is based on a patch floating around FreeBSD-Current.

Revision 164 - Directory Listing - [select for diffs]
Modified Thu Sep 7 18:52:52 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 163
 recursive DNS server, a remote attacker sending enough recursive
queries for the replies to arrive after all the interested clients
have left the recursion queue will trigger an INSIST failure in the
named(8) daemon.  Also for a a recursive DNS server, an assertion
failure can occour when processing a query whose reply will contain
more than one SIG(covered) RRset.

For an authoritative DNS server serving a RFC 2535 DNSSEC zone which
is queried for the SIG records where there are multiple SIG(covered)
RRsets (e.g. a zone apex), named(8) will trigger an assertion failure
when it tries to construct the response.

Revision 163 - Directory Listing - [select for diffs]
Modified Thu Sep 7 18:51:09 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 162
Vulnerability in OpenSSL where bytes are ignored in keys around the signature.

Revision 162 - Directory Listing - [select for diffs]
Modified Wed Sep 6 14:57:43 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 161
Work around a deadlock when ATA waits for the taskqueue to call back for completion and something else is holding the taskqueue waiting for ATA to return.

Fixes the "semaphore timeout !! DANGER Will Robinson !!" messages.  This patch was obtained from FreeBSD ata-queue.c  1.50.2.3 (march 1 2006) and ata-all.h from the same time.

Revision 161 - Directory Listing - [select for diffs]
Modified Tue Sep 5 12:34:38 2006 UTC (17 years, 6 months ago) by laffer1
Original Path: trunk
Diff to previous 160
*** empty log message ***

Revision 160 - Directory Listing - [select for diffs]
Modified Mon Sep 4 21:00:53 2006 UTC (17 years, 6 months ago) by archite
Original Path: trunk
Diff to previous 159
Someone forgot to add ksh to bin/Makefile

Revision 159 - Directory Listing - [select for diffs]
Modified Wed Aug 30 04:16:05 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 158
Correct a possible race condition and remove some locks that are redundant.

Revision 158 - Directory Listing - [select for diffs]
Modified Tue Aug 29 16:34:08 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 157
$MidnightBSD$

Revision 157 - Directory Listing - [select for diffs]
Modified Tue Aug 29 14:40:51 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 156
Correct spelling errors.

Revision 156 - Directory Listing - [select for diffs]
Modified Tue Aug 29 14:34:05 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 155
Point at localhost instead of bar.com

Revision 155 - Directory Listing - [select for diffs]
Modified Tue Aug 29 14:24:41 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 154
Sync with FreeBSD and indirectly NetBSD.

Revision 154 - Directory Listing - [select for diffs]
Modified Tue Aug 29 14:06:06 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 153
Removing rc_fancy patch.

Revision 153 - Directory Listing - [select for diffs]
Modified Tue Aug 29 14:05:11 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 152
Reverting to color free rc.subr.

Revision 152 - Directory Listing - [select for diffs]
Modified Tue Aug 29 13:09:18 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 151
Fix formatting problem with ambiguous ".\n" lines in rc startup when rc fancy is disabled.

Revision 151 - Directory Listing - [select for diffs]
Modified Tue Aug 29 05:23:24 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 150
$MidnightBSD$

Revision 150 - Directory Listing - [select for diffs]
Modified Tue Aug 29 05:16:19 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 149
$MidnightBSD$

Revision 149 - Directory Listing - [select for diffs]
Modified Mon Aug 28 02:52:35 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 148
Free to Midnight

Revision 148 - Directory Listing - [select for diffs]
Modified Mon Aug 28 02:47:46 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 147
$MidnightBSD$

Revision 147 - Directory Listing - [select for diffs]
Modified Mon Aug 28 02:28:59 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 146
$MidnightBSD$

Revision 146 - Directory Listing - [select for diffs]
Modified Mon Aug 28 02:15:05 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 145
$MidnightBSD$

Revision 145 - Directory Listing - [select for diffs]
Modified Mon Aug 28 01:56:42 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 144
$MidnightBSD$

Revision 144 - Directory Listing - [select for diffs]
Modified Mon Aug 28 01:35:55 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 143
$MidnightBSD$

Revision 143 - Directory Listing - [select for diffs]
Modified Mon Aug 28 00:47:59 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 142
$MidnightBSD$ and add ntpd.conf

Revision 142 - Directory Listing - [select for diffs]
Modified Mon Aug 28 00:44:25 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 141
Remove ntpd related files.

Revision 141 - Directory Listing - [select for diffs]
Modified Mon Aug 28 00:37:35 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 140
Added rdate

Revision 140 - Directory Listing - [select for diffs]
Modified Sun Aug 27 23:45:11 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 139
$MidnightBSD$

Revision 139 - Directory Listing - [select for diffs]
Modified Sun Aug 27 23:41:08 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 138
Mergemaster now checks $MidnightBSD$

Revision 138 - Directory Listing - [select for diffs]
Modified Sun Aug 27 20:56:38 2006 UTC (17 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 137
Updating files

Revision 137 - Directory Listing - [select for diffs]
Modified Sun Aug 27 20:11:25 2006 UTC (17 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 136
Changed default umask to 077

Revision 136 - Directory Listing - [select for diffs]
Modified Sun Aug 27 19:53:16 2006 UTC (17 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 135
Change dot files to 600 by default

Revision 135 - Directory Listing - [select for diffs]
Modified Sun Aug 27 19:49:29 2006 UTC (17 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 134
Update so that home directories are 700 by default.

Revision 134 - Directory Listing - [select for diffs]
Modified Sun Aug 27 18:49:41 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 133
Added Eric Anderson's patch for cp which adds -a an -l flags.

-a is an archive mode which is equivalent to -PpR
-l is link mode where regular files are hard linked instead of copied.

Revision 133 - Directory Listing - [select for diffs]
Modified Fri Aug 25 06:24:52 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 132
ACPI patches for laptops and other changes related to the new sleep_queue / em driver commit.

if_media was updated to allow import of bce and some baudrate changes in vge.

Revision 132 - Directory Listing - [select for diffs]
Modified Fri Aug 25 06:22:55 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 131
The following controllers are supported by this driver:
    BCM5706C A2, A3
    BCM5708C B1

Revision 131 - Directory Listing - [select for diffs]
Modified Fri Aug 25 06:20:58 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 130
Patched ACPI problem in hwpcm which needs further testing.  randomdev was updated along with it.

mii had a bug with recently driver patches as a function was missing to set the ifmedia_baudrate().  The function was added elsewhere.

Revision 130 - Directory Listing - [select for diffs]
Modified Fri Aug 25 06:19:06 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 129
Corrected a problem with keyboard control after kbdmux and kbd patches.

Revision 129 - Directory Listing - [select for diffs]
Modified Fri Aug 25 03:08:09 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 127
Removed baudrate as its not needed.

Revision 127 - Directory Listing - [select for diffs]
Modified Thu Aug 24 07:53:57 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 124
This commit was generated by cvs2svn to compensate for changes in r126,
which included commits to RCS files with non-trunk default branches.
Revision 124 - Directory Listing - [select for diffs]
Modified Thu Aug 24 07:47:42 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 122
This commit was generated by cvs2svn to compensate for changes in r123,
which included commits to RCS files with non-trunk default branches.
Revision 122 - Directory Listing - [select for diffs]
Modified Thu Aug 24 06:51:36 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 121
Keyboard multiplexer added to GENERIC. syscons patched to detect keyboards and add them as they are found. i386 only.

Revision 121 - Directory Listing - [select for diffs]
Modified Thu Aug 24 05:37:56 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 120
Added psm ID's for glide point devices commonly found on laptops. Brings PSM support to FreeBSD 6.1 release.

Revision 120 - Directory Listing - [select for diffs]
Modified Thu Aug 24 05:35:39 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 119
Intel gigabit network driver (em) updated to 6.05 with FreeBSD 6-stable enhancements.  Commit required a sync to a new version of the sleep queue routines which also fixed a deadlock problem.  An ACPI issue with some laptops has been noted and a fix will be forthcoming.

Revision 119 - Directory Listing - [select for diffs]
Modified Thu Aug 24 00:31:14 2006 UTC (17 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 118
Patch for ppp(4) buffer overflow

Revision 118 - Directory Listing - [select for diffs]
Modified Thu Aug 24 00:29:12 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 117
Remove ntpdate utility as rdate replaces it.

Revision 117 - Directory Listing - [select for diffs]
Modified Thu Aug 24 00:18:42 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 116
rdate's -c flag was not working as -DLEAPSECONDS was not used in the base system to maintain posix compliance.  Instead, rdate was altered to read a "right" subdirectory just as openbsd does.  In right, leapsecond versions of all the zones are built so that we can maintain legal time if needed.

Revision 116 - Directory Listing - [select for diffs]
Modified Wed Aug 23 17:39:39 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 115
Made final corrections to rdate.

Revision 115 - Directory Listing - [select for diffs]
Modified Wed Aug 23 15:36:08 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 114
Go back to PHK malloc.  Development version accidently commited.

Revision 114 - Directory Listing - [select for diffs]
Modified Tue Aug 22 21:33:31 2006 UTC (17 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 113
Another update so that man pages display correct OS.

Revision 113 - Directory Listing - [select for diffs]
Modified Tue Aug 22 21:05:08 2006 UTC (17 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 112
Added hack so that ^L clears the screen.

Revision 112 - Directory Listing - [select for diffs]
Modified Tue Aug 22 15:18:15 2006 UTC (17 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 111
Fixing type in Makefile

Revision 111 - Directory Listing - [select for diffs]
Modified Tue Aug 22 12:58:06 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 110
The old ntpdate program displayed the clock error by default.  Change rdate to do the same thing.  Idea from DragonFly.

Revision 110 - Directory Listing - [select for diffs]
Modified Tue Aug 22 05:56:42 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 109
rdate was recently added. Note it in the timed man page.

Revision 109 - Directory Listing - [select for diffs]
Modified Tue Aug 22 05:52:12 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 108
Import of OpenBSD's rdate utility.  Leapseconds flag disabled until a decision is made on /usr/share/zoneinfo/Right/UTC or equivalent.

Revision 108 - Directory Listing - [select for diffs]
Modified Tue Aug 22 05:03:27 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 107
Updated to tzdata2006j. Moved "systemv" into the backward category since its more backward than anything.

Revision 107 - Directory Listing - [select for diffs]
Modified Tue Aug 22 02:45:37 2006 UTC (17 years, 7 months ago) by archite
Original Path: trunk
Diff to previous 106
Changed groff so that man files now say MidnightBSD

Revision 106 - Directory Listing - [select for diffs]
Modified Tue Aug 22 01:22:12 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 105
Removed several openbsd-compat functions not needed.  Smaller binaries are nice.

Revision 105 - Directory Listing - [select for diffs]
Modified Tue Aug 22 00:52:05 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 104
Removed ntpdate rc script.. forgot to fix makefile.

Revision 104 - Directory Listing - [select for diffs]
Modified Mon Aug 21 19:45:21 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 103
*** empty log message ***

Revision 103 - Directory Listing - [select for diffs]
Modified Mon Aug 21 17:43:19 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 102
Finishing up the OpenNTPD commits.  Since we no longer have ntpdate, i'll simply have to add rdate later.

Revision 102 - Directory Listing - [select for diffs]
Modified Mon Aug 21 06:29:14 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 101
Added _ntp user for OpenNTPD

Revision 101 - Directory Listing - [select for diffs]
Modified Mon Aug 21 06:17:56 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 100
Adjusted path to config file to point to /etc/ntpd.conf instead of /usr/local/etc/ntpd.conf

Revision 100 - Directory Listing - [select for diffs]
Modified Mon Aug 21 06:02:16 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 99
OpenNTPD config file

Revision 99 - Directory Listing - [select for diffs]
Modified Mon Aug 21 05:54:56 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 98
Do to naming conflicts, openntpd had to be commited to its own directory src/contrib/openntpd.  This commit should clean up most of the mess. I should plan these things out more carefully. :)

Revision 98 - Directory Listing - [select for diffs]
Modified Mon Aug 21 05:48:36 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 97
Convert to OpenNTPD.

Revision 97 - Directory Listing - [select for diffs]
Modified Mon Aug 21 04:15:39 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 96
*** empty log message ***

Revision 96 - Directory Listing - [select for diffs]
Modified Mon Aug 21 03:48:21 2006 UTC (17 years, 7 months ago) by adam
Original Path: trunk
Diff to previous 95
Changed default password to use blowfish instead of md5

Revision 95 - Directory Listing - [select for diffs]
Modified Mon Aug 21 03:34:42 2006 UTC (17 years, 7 months ago) by adam
Original Path: trunk
Diff to previous 94
Imported strtonum() from OpenBSD

Revision 94 - Directory Listing - [select for diffs]
Modified Sun Aug 20 23:06:33 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 92
This commit was generated by cvs2svn to compensate for changes in r93, which
included commits to RCS files with non-trunk default branches.
Revision 92 - Directory Listing - [select for diffs]
Modified Sun Aug 20 23:01:33 2006 UTC (17 years, 7 months ago) by adam
Original Path: trunk
Diff to previous 90
*** empty log message ***

Revision 90 - Directory Listing - [select for diffs]
Modified Sun Aug 20 16:05:47 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 88
This commit was generated by cvs2svn to compensate for changes in r89, which
included commits to RCS files with non-trunk default branches.
Revision 88 - Directory Listing - [select for diffs]
Modified Sun Aug 20 15:54:16 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 87
*** empty log message ***

Revision 87 - Directory Listing - [select for diffs]
Modified Sun Aug 20 15:49:02 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 86
Correcting some mistakes on import.

Revision 86 - Directory Listing - [select for diffs]
Modified Sun Aug 20 15:43:46 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 84
This commit was generated by cvs2svn to compensate for changes in r85, which
included commits to RCS files with non-trunk default branches.
Revision 84 - Directory Listing - [select for diffs]
Modified Sun Aug 20 15:36:01 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 83
Convert to OpenNTPD.

Revision 83 - Directory Listing - [select for diffs]
Modified Sun Aug 20 15:09:03 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 82
Convert to OpenNTPD.

Revision 82 - Directory Listing - [select for diffs]
Modified Sun Aug 20 02:42:38 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 81
*** empty log message ***

Revision 81 - Directory Listing - [select for diffs]
Modified Sun Aug 20 02:01:31 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 80
Convert to OpenNTPD

Revision 80 - Directory Listing - [select for diffs]
Modified Sun Aug 20 01:37:20 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 79
Switching to OpenNTPD.  Cleaning up old files.

Revision 79 - Directory Listing - [select for diffs]
Modified Sun Aug 20 01:13:44 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 78
Switching to OpenNTPD

Revision 78 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:50:09 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 77
Remove ISC ntpd

Revision 77 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:42:48 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 76
Removing ISC bind

Revision 76 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:42:01 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 75
Removing ISC ntpd

Revision 75 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:23:00 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 74
Removing ISC ntpd

Revision 74 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:21:04 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 73
*** empty log message ***

Revision 73 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:11:12 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 71
Removing ISC ntpd

Revision 71 - Directory Listing - [select for diffs]
Modified Sat Aug 19 17:00:57 2006 UTC (17 years, 7 months ago) by adam
Original Path: trunk
Diff to previous 70
Adding last few additions for OpenSSH

Revision 70 - Directory Listing - [select for diffs]
Modified Sat Aug 19 17:00:06 2006 UTC (17 years, 7 months ago) by adam
Original Path: trunk
Diff to previous 69
adding remaining files for OpenSSH 4.3

Revision 69 - Directory Listing - [select for diffs]
Modified Sat Aug 19 16:49:51 2006 UTC (17 years, 7 months ago) by adam
Original Path: trunk
Diff to previous 68
OpenSSH 4.3 patched files

Revision 68 - Directory Listing - [select for diffs]
Modified Sat Aug 19 16:47:07 2006 UTC (17 years, 7 months ago) by adam
Original Path: trunk
Diff to previous 67
The remainder of the OpenSSH 4.3 upgrade

Revision 67 - Directory Listing - [select for diffs]
Modified Sat Aug 19 16:41:42 2006 UTC (17 years, 7 months ago) by adam
Original Path: trunk
Diff to previous 66
Upgrade to OpenSSH 4.3 through modified FreeBSD-current sources.

Revision 66 - Directory Listing - [select for diffs]
Modified Sat Aug 19 06:52:44 2006 UTC (17 years, 7 months ago) by adam
Original Path: trunk
Diff to previous 65
Added MidnightBSD to the kernel copyright notice.

Revision 65 - Directory Listing - [select for diffs]
Modified Fri Aug 18 23:13:16 2006 UTC (17 years, 7 months ago) by adam
Original Path: trunk
Diff to previous 64
Changed header information
Made KSH compile statically

Revision 64 - Directory Listing - [select for diffs]
Modified Fri Aug 18 00:44:47 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 63
Corrected compiler bug

Revision 63 - Directory Listing - [select for diffs]
Modified Thu Aug 17 18:07:58 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 62
ksh was added to the base system.

Revision 62 - Directory Listing - [select for diffs]
Modified Thu Aug 17 17:22:09 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 61
Added ksh to the base system.

Revision 61 - Directory Listing - [select for diffs]
Modified Thu Aug 17 13:00:11 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 59
Disabled stop on warning so ksh builds.  Eventually some code changes should be made to clear up the errors.

Revision 59 - Directory Listing - [select for diffs]
Modified Wed Aug 16 21:09:08 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 58
OpenBSD 3.9 ksh

Revision 58 - Directory Listing - [select for diffs]
Modified Wed Aug 16 16:14:17 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 57
Updated to correspond to sendmail 8.13.8

Revision 57 - Directory Listing - [select for diffs]
Modified Mon Aug 14 12:07:52 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 56
*** empty log message ***

Revision 56 - Directory Listing - [select for diffs]
Modified Mon Aug 14 11:52:13 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 55
My first past at MidnightBSDizing the installer.  Perhaps I should look into teh DF installer.

Revision 55 - Directory Listing - [select for diffs]
Modified Mon Aug 14 11:00:08 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 53
Added cvs tags.

Revision 53 - Directory Listing - [select for diffs]
Modified Sat Aug 12 01:05:38 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 51
This commit was generated by cvs2svn to compensate for changes in r52, which
included commits to RCS files with non-trunk default branches.
Revision 51 - Directory Listing - [select for diffs]
Modified Sun Aug 6 13:32:03 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 50
Fixed typos in pfctl

Revision 50 - Directory Listing - [select for diffs]
Modified Sun Aug 6 13:31:16 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 49
*** empty log message ***

Revision 49 - Directory Listing - [select for diffs]
Modified Fri Aug 4 17:24:23 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 48
Fixed a bug in nfsd where a payload of zero would cause a kernel panic.

Revision 48 - Directory Listing - [select for diffs]
Modified Fri Aug 4 17:17:04 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 47
fast_ipsec has an error which allows packets to bypass the anti-replay check.  See FreeBSD-SA6:11.ipsec

Revision 47 - Directory Listing - [select for diffs]
Modified Fri Aug 4 17:14:57 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 46
Corrected OPIE security issue where a user mistakenly got root password change acces.  FreeBSD-SA6:12.opie

Revision 46 - Directory Listing - [select for diffs]
Modified Fri Aug 4 17:10:41 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 45
FreeBSD-SA6:13 and 14 were patched.  The nis software and amd athlon fpu handling fixed.  Changes to echo and pfctl are needed to fix compile bugs with changes related to cvs tags and macros.

Revision 45 - Directory Listing - [select for diffs]
Modified Fri Aug 4 12:57:36 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 43
Fixed a bug in smbfs where an attacker can escape a chroot environment.  See FreeBSD-SA-06:16.smbfs

Revision 43 - Directory Listing - [select for diffs]
Modified Fri Aug 4 02:03:05 2006 UTC (17 years, 7 months ago) by laffer1
Original Path: trunk
Diff to previous 41
This commit was generated by cvs2svn to compensate for changes in r42, which
included commits to RCS files with non-trunk default branches.
Revision 41 - Directory Listing - [select for diffs]
Modified Wed Jul 26 12:45:59 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 40
Added __FBSDID hack so the tree builds until all cvs tags and macros are fixed.

Revision 40 - Directory Listing - [select for diffs]
Modified Wed Jul 26 12:35:19 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 39
Added cvs tags.

Revision 39 - Directory Listing - [select for diffs]
Modified Wed Jul 26 00:25:33 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 38
added cvs tags.

Revision 38 - Directory Listing - [select for diffs]
Modified Wed Jul 26 00:22:13 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 37
Added cvs tags.

Revision 37 - Directory Listing - [select for diffs]
Modified Wed Jul 26 00:16:40 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 36
Changed text to MidnightBSD.  Added cvs tag.

Revision 36 - Directory Listing - [select for diffs]
Modified Wed Jul 19 13:56:55 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 35
Added cvs tags.

Revision 35 - Directory Listing - [select for diffs]
Modified Wed Jul 19 13:43:39 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 34
Added cvs tags

Revision 34 - Directory Listing - [select for diffs]
Modified Mon Jul 17 23:07:58 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 33
Converted to MidnightBSD to fix motd repeat problem.

Revision 33 - Directory Listing - [select for diffs]
Modified Fri Jul 7 15:55:59 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 32
Added cvs id.

Revision 32 - Directory Listing - [select for diffs]
Modified Fri Jul 7 13:54:43 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 31
Add cvs ids.

Revision 31 - Directory Listing - [select for diffs]
Modified Fri Jul 7 13:50:33 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 30
Added cvs ids.

Revision 30 - Directory Listing - [select for diffs]
Modified Fri Jul 7 13:46:10 2006 UTC (17 years, 8 months ago) by laffer1
Original Path: trunk
Diff to previous 29
Added cvs ids

Revision 29 - Directory Listing - [select for diffs]
Modified Mon Jun 26 15:12:15 2006 UTC (17 years, 9 months ago) by laffer1
Original Path: trunk
Diff to previous 28
Modifying cvs tags and converting freebsd specific code.

Revision 28 - Directory Listing - [select for diffs]
Modified Mon May 22 06:14:15 2006 UTC (17 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 27
Added cvs header.

Revision 27 - Directory Listing - [select for diffs]
Modified Mon May 22 06:03:21 2006 UTC (17 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 26
Add cvs header.

Revision 26 - Directory Listing - [select for diffs]
Modified Mon May 22 05:08:38 2006 UTC (17 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 25
Added header.

Revision 25 - Directory Listing - [select for diffs]
Modified Mon May 22 04:35:12 2006 UTC (17 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 24
Added cvs header.

Revision 24 - Directory Listing - [select for diffs]
Modified Mon May 22 04:22:55 2006 UTC (17 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 23
Improved readability, added MidnightBSD copyright information.

Revision 23 - Directory Listing - [select for diffs]
Modified Mon May 22 04:09:41 2006 UTC (17 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 22
Removed FreeBSD references except where applicable.

Revision 22 - Directory Listing - [select for diffs]
Modified Mon May 22 04:05:53 2006 UTC (17 years, 10 months ago) by laffer1
Original Path: trunk
Diff to previous 21
Removed referece to FreeBSD source syncing.

Revision 21 - Directory Listing - [select for diffs]
Modified Mon May 1 17:50:15 2006 UTC (17 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 20
*** empty log message ***

Revision 20 - Directory Listing - [select for diffs]
Modified Fri Apr 28 04:23:55 2006 UTC (17 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 19
Syntax errors corrected.

Revision 19 - Directory Listing - [select for diffs]
Modified Fri Apr 28 03:07:38 2006 UTC (17 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 18
Fancy RC startup with colors.

Revision 18 - Directory Listing - [select for diffs]
Modified Fri Apr 28 01:46:50 2006 UTC (17 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 17
Not FreeBSD anymore... fix motd

Revision 17 - Directory Listing - [select for diffs]
Modified Sat Apr 22 20:27:44 2006 UTC (17 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 16
*** empty log message ***

Revision 16 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:19:36 2006 UTC (17 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 15
add missing sparc64 config and makefile for kernel.

Revision 15 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:18:59 2006 UTC (17 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 14
Add missing config and makefile.

Revision 14 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:18:19 2006 UTC (17 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 13
Add missing makefile and config files

Revision 13 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:14:45 2006 UTC (17 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 12
Fixed 13.viref.  Added makefile not imported initially.

Revision 12 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:13:08 2006 UTC (17 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 11
Correct version of the config files.

Revision 11 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:04:32 2006 UTC (17 years, 11 months ago) by laffer1
Original Path: trunk
Diff to previous 10
Kernel config files were missing.

Revision 10 - Directory Listing - [select for diffs]
Modified Wed Mar 1 04:24:17 2006 UTC (18 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 9
Corrected import error where csh.a was not added.

Revision 9 - Directory Listing - [select for diffs]
Modified Tue Feb 28 04:09:52 2006 UTC (18 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 6
*** empty log message ***

Revision 6 - Directory Listing - [select for diffs]
Modified Sat Feb 25 02:38:42 2006 UTC (18 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 3
This commit was generated by cvs2svn to compensate for changes in r5, which
included commits to RCS files with non-trunk default branches.
Revision 3 - Directory Listing - [select for diffs]
Modified Sat Feb 25 02:29:52 2006 UTC (18 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 2
This commit was generated by cvs2svn to compensate for changes in r2, which
included commits to RCS files with non-trunk default branches.
Revision 2 - Directory Listing - [select for diffs]
Modified Sat Feb 25 02:29:52 2006 UTC (18 years, 1 month ago) by laffer1
Original Path: trunk
Diff to previous 1
Imported from FreeBSD 6.0 sources

Revision 1 - Directory Listing - [select for diffs]
Added Sat Feb 25 02:29:52 2006 UTC (18 years, 1 month ago) by cvs2svn
Original Path: trunk
Standard project directories initialized by cvs2svn.

Convenience Links