Re: AS99127F Hardware Monitor

2002-07-03 Thread Nicolas Souchu

On Wed, Jul 03, 2002 at 02:39:29PM -0700, Thomas D. Dean wrote:
> Yes, I will try it.
> 
> The patch you posted is for i2c-amd756.c.  Is there a patch for
> sys/pci/amdpm.c?

Of course not :) The patch for i2c-amd756.c comes from Linux. The
goal is to _write_ the one for sys/pci/amdpm.c (FreeBSD).

You have to write the new nfpm_probe() and nfpm_attach() (where
nfpm stands for nForce Power Management) routines like amdpm_probe()
and amdpm_attach() are. Use the Linux patch to determine the nForce
PCI id and the differences between the AMD and the nForce inits.

Reproduce amdpm_devclass, amdpm_methods and amdpm_driver for nfpm.

Add a line at the end of the driver like this one to connect your
new PCI device:

DRIVER_MODULE(nfpm, pci, nfpm_driver, nfpm_devclass, 0, 0);

Ask me if you need.

Nicholas

-- 
Nicholas Souchu - [EMAIL PROTECTED] - [EMAIL PROTECTED]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



boot loader problems on alpha

2002-07-03 Thread Pieter Danhieux

Following error appears when i'm trying to boot my
just-upgraded-to-4.6-p1 alpha machine:


jumping to bootstrap code
Loading /boot/loader
Can't open file /boot/loader


i checked in the srm if his bootdef-dev was set to dkc0, and it was ...
I also tried booting a floppy and using the dkc0 as rootdisk, and that
worked, so the problem must be in bootstage one.
"disklabel -B -b /boot/boot1 da0" didn't help also ...

thx for the help ..

Pieter


-- 
www.bsdaemon.be - securax.org - docs.bsdaemon.be
keyserver: pgpkeys.mit.edu  PGP keyID: DA07EAE9




signature.asc
Description: This is a digitally signed message part


Re: How noisy should ch(4) be ?

2002-07-03 Thread dirkx


> It probably just doesn't mention the problem.

Yes - you are right - as it also (turns out now) supressed the warning
abotu the tape cleaning tape being in the wrong slot.

Dw.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: How noisy should ch(4) be ?

2002-07-03 Thread Kenneth D. Merry

On Thu, Jul 04, 2002 at 00:18:11 +0200, [EMAIL PROTECTED] wrote:
> 
> > > >  - run 'chio ielem' before you do anything.  This may make the changer look
> > > >at what it has, and perhaps figure out that it doesn't really have a
> > > >source addresses for various elements.
> >
> > What about this option?
> 
> It happily ran the option - but any subsequent command would still yield
> the chattyness.
> 
> Interestingly enough 'mtx' (see sourceforge) does the same thing (plus has
> a few bugs of its own) - but does not cause the warnings.

It probably just doesn't mention the problem.

I'll think about it a bit, it may be that we can safely comment out the
warning.

Ken
-- 
Kenneth Merry
[EMAIL PROTECTED]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: How noisy should ch(4) be ?

2002-07-03 Thread dirkx


> > >  - run 'chio ielem' before you do anything.  This may make the changer look
> > >at what it has, and perhaps figure out that it doesn't really have a
> > >source addresses for various elements.
>
> What about this option?

It happily ran the option - but any subsequent command would still yield
the chattyness.

Interestingly enough 'mtx' (see sourceforge) does the same thing (plus has
a few bugs of its own) - but does not cause the warnings.

Dw.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: How noisy should ch(4) be ?

2002-07-03 Thread Kenneth D. Merry

On Sat, Jun 29, 2002 at 16:17:22 +, Dirk-Willem van Gulik wrote:
> 
> >  - run 'chio ielem' before you do anything.  This may make the changer look
> >at what it has, and perhaps figure out that it doesn't really have a
> >source addresses for various elements.

What about this option?

> >  - try moving every tape in the changer to some destination and back.  The
> >fastest thing to do, if the changer supports it, would probably be
> >moving the tapes to the picker and then back to a slot.
> 
> Did not work :-)
>  
> >  - comment out the warning in copy_element_status().
> 
> Fixed the problem perfectly :-)
>  
> >  - see if there is updated firmware for the changer.
> 
> There is - but it seems to need special third party SCSI software which
> only works on windows. I've got no desire to disconnect the unit for now.

Hmm.

Ken
-- 
Kenneth Merry
[EMAIL PROTECTED]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: AS99127F Hardware Monitor

2002-07-03 Thread Thomas D. Dean

Yes, I will try it.

The patch you posted is for i2c-amd756.c.  Is there a patch for
sys/pci/amdpm.c?

tomdean

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re[2]: Driver for device on serial (COM) port

2002-07-03 Thread Lev Serebryakov

Hello, Julian!
Saturday, June 29, 2002, 11:32:31 PM, you wrote:

JE> in -current, we have a new netgraph node ng_device
JE> that gives a device interface to netgraph.
JE> We also have the ng_tty node that attaches to a tty
JE> as a 'line disciplin'
JE> adding a node between these to do you own stuff would give you what you
JE> want.
   Hmm.. As I wrote, netgraph is good framework for my driver. Now I
   see only one problem: I need to change speed of COM port from my
   driver (all setup of device should be done at 9600 and after that
   link could be switched to other, negotiated, speed like 115200).
   If I use ng_tty or my own NG node, which acts as TTY discipline, I
   don't see way to change COM port speed from this side :(


   Lev Serebryakov
/---\
| FIDONet: 2:5030/661.0 |
| E-Mail:  [EMAIL PROTECTED]   |
| Page:http://lev.serebryakov.spb.ru/   |
| ICQ UIN: 3670018  |
| Phone:   You know, if you have world nodelist |
\===/


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



using `restore` without user input

2002-07-03 Thread Patrick Thomas


I would like to perform a restore out of a shell script.  Normally, I run
restore with a command line like:

restore -x -f /some/dump

Which works _exactly_ as I want it to, except that I am asked two
questions:

Specify next volume #:

and then at the end of the restore:

set owner/mode for '.'? [yn]

So that is a problem, since I want to run it unattended, without requiring
user input.  I have discovered that this command line:

restore -rf /some/dump

will run without user input.  MY question is, is the output of this
command identical to the output of the original one I was running ?  I
_do_ indeed wish to specify owner/mode for '.' and have everything restore
just right like it was with my original command line - am I missing
anything or losing any of my original functionality by using this new
command line ?  Or is it identical in result (except for the extra
`restoresymtable` file it produces) to the original command I had ?

thanks,

PT


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: AS99127F Hardware Monitor

2002-07-03 Thread Nicolas Souchu

On Tue, Jul 02, 2002 at 11:55:30PM -0700, Thomas D. Dean wrote:
> Sorry, I have 4.6-stable as of Jun. 17.

amdpm is in -stable too. Want you to give it a try?

Nicholas

-- 
Nicholas Souchu - [EMAIL PROTECTED] - [EMAIL PROTECTED]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: ftp and mail much slower into fbsd 4.4 vs and old BSDi

2002-07-03 Thread John Polstra

In article <[EMAIL PROTECTED]>,
Len Conrad  <[EMAIL PROTECTED]> wrote:
> Sorry, hackers, I posted this twice in -questions and got no response.
[...]
> FreeBSD 4.4-RELEASE #0

FreeBSD-4.4 had terrible performance bugs in the TCP stack, with or
without newreno.  Matt Dillon fixed them -- I believe before 4.5
was released.  There have been recent reports that there are still
problems when newreno is enabled.  So your best bet is to update at
least to 4.5-RELEASE and turn newreno off.

John
-- 
  John Polstra
  John D. Polstra & Co., Inc.Seattle, Washington USA
  "Disappointment is a good sign of basic intelligence."  -- Chögyam Trungpa


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



test please ignore

2002-07-03 Thread colin . percival


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Cable

2002-07-03 Thread Jon22


Hi.  I appreciate your interest in Cable Descramblers and Cable equipment.

If you are interested in a brand new DIGITAL CABLE DESCRAMBLER that decodes 
and receives ALL CHANNELS and is compatible with ALL "DIGITAL" and "ANALOG" 
CABLE SYSTEMS then please get back to me. 

Thats right.  This Descrambler works with DIGITAL cable.

Let me know.

John
7506IHND5-353wrZV8322kJmq5-l25

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message