make buildkernel stops at pccard

2001-07-10 Thread ADiNA
just cvsup'd and got this at buildkernel, perl5 /usr/src/sys/kern/makeops.pl -h /usr/src/sys/pci/pci_if.m perl5 /usr/src/sys/kern/makeops.pl -c /usr/src/sys/isa/isa_if.m perl5 /usr/src/sys/kern/makeops.pl -h /usr/src/sys/isa/isa_if.m make: don't know how to make /usr/src/sys/pccard/pcic_isa.c. St

Fwd: make buildkernel stops at pccard

2001-07-10 Thread ADiNA
I have exactly the same problem ... file sys/conf/files is not coherent with /usr/src/sys/pccard directory !!! (and i've done a fresh cvsup) Hum Olivier P.S/ COuld you please forward this mail to the mailing list ?, i didn't subscribed -- Olivier PAGE

Re: Generating encrypted passwords

2001-07-10 Thread Mike Tancsa
What about a srand (time ^ $$ ^ unpack "%L*", `ps -auxw | gzip`); at the start of your program and for the salt, I use this to generate md5 salts which I think I got from cpan IIRC. sub salt { local($salt); # initialization local($i, $rand); local(@itoa64) = ( '

bug with /usr/src/sys/conf/files ---> pccard/pcic_isa.c

2001-07-10 Thread Olivier PAGE
I've tried a fresh cvsup this morning and got the following problem in /usr/src/sys/conf/files, pccard/pcic_isa.c optional pcic isa card but in src/sys/pccard no pcic_isa.c file so make buildkernel fails with a "don't know how to ..." Olivier P. -- Olivier PAGE

Re: Generating encrypted passwords

2001-07-10 Thread HIRATA Yasuyuki
Hi, From: Mike Tancsa <[EMAIL PROTECTED]> To: Jim Weeks <[EMAIL PROTECTED]> Subject: Re: Generating encrypted passwords Date: Tue, 10 Jul 2001 08:23:47 -0400 Message-ID: <[EMAIL PROTECTED]> > What about a > srand (time ^ $$ ^ unpack "%L*", `ps -auxw | gzip`); > > at the start of your program I

system includes...

2001-07-10 Thread Robin P. Blanchard
/usr/include/netinet/in.h:233: syntax error before `in_addr_t' /usr/include/netinet/in.h:285: syntax error before `u_char' /usr/include/netinet6/in6.h:122: syntax error before `u_int8_t' building the latest CVS versions of lopster croaks with the following sorts of errors. seems i've seen this exa

Re: Tracking -stable remotely/colocated

2001-07-10 Thread Bill Moran
There is a way to accomplish this. It requires 2 computers. The first is your server, the second is a terminal computer. You never log into the actual server, but the terminal computer is connected via serial line to the server to act as a console. This way, you can reboot and everything over an s

Re: Generating encrypted passwords

2001-07-10 Thread Walter Campbell
A DES (and MD5) salt (and the rest of the hash) can contain a-z A-Z 0-9 . and / To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-stable" in the body of the message

Re: Generating encrypted passwords

2001-07-10 Thread Mike Tancsa
At 10:01 PM 7/10/01 +0900, HIRATA Yasuyuki wrote: > > What about a > > srand (time ^ $$ ^ unpack "%L*", `ps -auxw | gzip`); > > > > at the start of your program > >If you use perl 5.005 or later, it's better to call srand without seed >or not to call srand at all. See perldoc -f srand for detail.