peter
dfef412c92
Argh, I can't win today. Spell ${.CURDIR} correctly.
2000-02-26 11:16:08 +00:00
peter
10a409ad5f
Don't build pam_ssh if the crypto code is missing.
...
Found by: sos
2000-02-26 11:14:17 +00:00
peter
eb77fcb95c
Redo this with a repo copy from the original file and reset the
...
__PREFIX__ markers.
2000-02-26 09:59:14 +00:00
mdodd
de44413bc6
MCA is supported to some extent. Modify a comment that claims otherwise.
...
Approved by: jkh
2000-02-26 05:07:05 +00:00
shin
a310d24367
Update sockstat to support INET6 socket printing.
...
Approved by: jkh
Submitted by: Ben Smithurst <ben@scientia.demon.co.uk>
Reviewed by: des
2000-02-26 02:56:16 +00:00
peter
18bcb8d297
oops, update path to /etc/ssh/ssh_host_key
2000-02-26 02:24:38 +00:00
wilko
a180df6163
Corrections for DS20, Miata. Multiple cleanups
2000-02-25 23:28:18 +00:00
jkh
c9dd43e564
Add knobs for sendmail and sshd
2000-02-25 23:02:48 +00:00
jkh
056294e146
Make sysinstall use the new debug.boothowto OID. It will now go
...
straight into debug mode if you boot -v. Also conditionalize some
annoying debugging output now that we have this ability.
Partially submitted by: msmith
Approved by: jkh [to make certain wise-acres happy ;)]
2000-02-25 20:55:15 +00:00
bsd
37325dc4d2
Announce support for the hardware debug registers.
...
Approved by: jkh
2000-02-25 15:10:21 +00:00
peter
fdad9bc95f
Install ssh files in /etc/ssh and tidy up a couple of other nits
2000-02-25 14:27:33 +00:00
peter
7abc89037f
Merge from internat.freebsd.org; move ssh files from /etc to /etc/ssh
2000-02-25 14:25:10 +00:00
peter
22d8dd90c9
Add /etc/ssh
2000-02-25 14:18:48 +00:00
peter
3e7de8aad5
Merge from internat.freebsd.org; deal with -DRSAref the same way as
...
libcrypto - not that it means much on the US code tree.
2000-02-25 14:15:31 +00:00
peter
2649bf3728
Merge from internat.freebsd.org; make RSAREF=YES work correctly, although
...
this is not very useful as the US repo is missing bits.
2000-02-25 14:08:35 +00:00
jkh
71756b1d36
Add new oid, debug.boothowto. This allows userland apps to see
...
how the kernel was booted and perhaps do conditional things
based upon it (sysinstall, for example, will now turn Debug mode
on automatically if boot -v was done).
Submitted by: msmith
Suggested by: ulf
2000-02-25 11:43:08 +00:00
yokota
4f4742024f
Do not add children (atkbd and psm) if they are disabled.
...
Approved by: jkh
2000-02-25 11:40:31 +00:00
ru
45c27cda58
Remove the config file line length restriction.
...
PR: 16900
Reviewed by: "Crist J. Clark" <cjclark@home.com>, jkh
Approved by: jkh
2000-02-25 11:34:38 +00:00
peter
c262f0727b
Ack! Time to get the pointy hat. Re-add missing / I left out.
...
Submitted by: John Hay <jhay@mikom.csir.co.za>
2000-02-25 11:08:50 +00:00
mph
1835252407
Install the game files mode 444, so atc(6) can load them.
...
Little interest shown by: jkh
2000-02-25 10:23:19 +00:00
sos
bc6c7f4730
Add (partial) support for the Cypress ATA controller.
...
Call intr_teardown on detach.
Always add non masterdevice from unit 2 upwards.
Update to the pccard code, at least some cards are now working,
more testing to follow.
2000-02-25 09:48:23 +00:00
peter
9f02798cbf
Create a stub libRSAglue for bsd.port.mk's sake
2000-02-25 09:47:17 +00:00
peter
47e3d89f30
Don't pull in libRSAglue for the rsaref case. Since this is linked
...
dynamically by default, we use the dlopen() calls to load librsaref.so
on US code trees.
2000-02-25 08:21:35 +00:00
peter
fe21c9e7b5
Fold libRSAglue into libcrypto so we don't have to special-case
...
all the builds. There is still no actual RSA implementation code
in libcrypto or src/* on US code trees.
2000-02-25 08:18:43 +00:00
peter
3c33910f68
Forced commit; correct previous log message. Use dlopen() only if
...
compiling in a shared library (PIC), not the other way around.
2000-02-25 08:15:50 +00:00
peter
7caf65d2f4
Don't use the dlopen() stubs if comiling with PIC. This still
...
needs some more thought for the static case. Should we provide weak
error-generating stubs for static binaries if -lrsaref was forgotten?
2000-02-25 08:13:50 +00:00
peter
153f059ef0
Sync with internat; delete a trailing space
2000-02-25 05:35:37 +00:00
green
522f06fd77
Fix a bug that crawled in pretty recently (from the port). It made
...
sshd coredump :(
2000-02-25 05:22:14 +00:00
peter
08aeaabc77
Fix references to crypto code to check that it exists first. Otherwise
...
it breaks mergemaster (and probably other things).
Submitted by: Munehiro Matsuda <haro@tk.kubota.co.jp>
Approved by: jkh
2000-02-25 05:16:44 +00:00
bp
6ed9854c48
Fix the loader to handle module dependencies properly. More fixes
...
will be provided after modmetadata appears in the kernel.
Reviewed by: msmith
Approved by: jkh
2000-02-25 05:10:44 +00:00
peter
8e4001f110
Fix garbage in SSH_PROGRAM (only on freefall, not internat)
2000-02-25 04:41:06 +00:00
jdp
d28a31c220
Fix two bugs in the fault handler for copy{in,out} and friends.
...
First, it was failing to reset the PCB's pcb_onfault member to NULL.
Under some really obscure circumstances this might cause a wild jump
within the kernel when a panic would otherwise occur. Second, the
handler was loading the GP register needlessly and with an incorrect
value.
Reviewed by: Doug Rabson <dfr>
Approved by: Jordan Hubbard <jkh>
2000-02-25 03:26:10 +00:00
green
83bac1a374
Make "CheckHostIP" default to off. This was proposed on -security and
...
earlier IRC, but despite my inital feeling against it, this seems
the more proper thing to do.
Proposed by: rwatson
2000-02-25 03:04:29 +00:00
green
129e6a7558
The includes must be <openssl/.*\.h>, not <ssl/.*\.h>.
2000-02-25 01:53:12 +00:00
markm
ccef1c20fc
remove more ports crud.
2000-02-24 23:54:00 +00:00
markm
190eabf199
remove ports junk
2000-02-24 23:46:38 +00:00
markm
ac8ce6a828
We have some new libraries; give them names.
2000-02-24 23:18:08 +00:00
markm
608b5f8fbb
Use libcrypto instead of libdes.
2000-02-24 23:15:42 +00:00
markm
1b942b3840
Run sshd at boot time if the sysadmin wants it. Also install
...
ssh[d] config files in the right place.
2000-02-24 23:12:04 +00:00
markm
27fe751781
Add userland tweakables for OpenSSH and OpenSSL.
2000-02-24 23:08:19 +00:00
markm
eb2f1b4a7c
We have a new world order in libraries.
...
Goodbye libdes; Welcome libcrypto.
2000-02-24 23:03:16 +00:00
markm
60d4791e24
Remove port components not needed in 4.n+
...
Submitted by: Half the freaking planet....
2000-02-24 22:39:24 +00:00
markm
20612f21c7
Use libcrypto instead of libdes.
...
Also - OpenSSH blesses us with a module for PAM.
2000-02-24 22:24:37 +00:00
markm
7f1f2ce659
Use libcrypto inst=ead if libdes.
2000-02-24 21:21:15 +00:00
markm
8a6c9808f4
Use libcrypto instead of libdes.
2000-02-24 21:18:08 +00:00
markm
3c2d308df1
Use libcrypto instead of libdes. Upgrade for Heimdal-0.2p
2000-02-24 21:15:14 +00:00
markm
4dfdc66cab
Use libcrypto instead of libdes.
2000-02-24 21:10:28 +00:00
markm
7926f9a427
Use libcrypto in place of libdes.
2000-02-24 21:06:22 +00:00
markm
1bcfc94e36
Use libcrypto instead of libdes.
2000-02-24 21:01:54 +00:00
markm
be68b23c6f
Use libcrypto in place of libdes.
2000-02-24 20:57:04 +00:00