Perfoce client only

2004-02-16 Thread Igor B. Bykhalo
Is there a way to install the Perforce client only?
We don't need the server, but i failed to find
standalone client. And yes, command-line version
is sufficient.

TIA,
Igor

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


How to convert GNU make files to FreeBSD make?

2004-02-20 Thread Igor B. Bykhalo
How can this GNU make constuct converted to FreeBSD:

> SRCDIRS = convert/c misc/c string/c memory/c handleio/c startup/c environ/c
> 
> vpath %.c $(SRCDIRS)
?

Is there some guide on the topic? I am new to this...

TIA,
Igor

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RELENG_4 IPX commit broke net/mars_nwe?

2005-01-12 Thread Igor B. Bykhalo
[Cc'ing Boris Popov as maintainer]
Greeings!

On my RELENG_4 file server box the follwoing commit broke
net/mars_nwe port:

 Edit src/sys/netipx/ipx.h
  Add delta 1.15.2.1 2005.01.02.13.00.51 rwatson

First, after upgrading machine (buildworld, kernel, installworld),
non-rebuilt nwserv didn't even start. After port was rebuilt,
it starts, but server doesn't appear on the network and doesn't
accept connections from client Windows boxes.

There is no errors or warnings in log files of IPXrouted(8) or
port programs, so i am totally lost...

Here are corresponding parts of ps -ax and other network info:

[...]
   73  ??  Is 0:00,02 IPXrouted -s /var/log/nw.ipx.log
[...]
  374  ??  I  0:00,04 nwbind GO aa.aa.0.0:0.0.0.0.0.1:4.51 400c
  375  ??  I  0:00,00 ncpserv GO aa.aa.0.0:0.0.0.0.0.1:4.51 400c 4009
[...]



banka# ifconfig -a
fxp0: flags=9843 mtu 1500
inet aaa.bbb.ccc.213 netmask 0xffc0 broadcast aaa.bbb.ccc.255
inet aaa.bbb.ccc.221 netmask 0x broadcast aaa.bbb.ccc.221
ether 00:08:c7:49:99:b1
media: Ethernet 100baseTX 
status: active
fxp0f0: flags=8843 mtu 1500
ipx .8c74999b1
ether 00:08:c7:49:99:b1
[...]
lo0: flags=8049 mtu 16384
inet 127.0.0.1 netmask 0xff00
ipx .1H
banka#



===
RCS file: /usr/local/www/cvsroot/FreeBSD/src/sys/netipx/ipx.h,v
retrieving revision 1.15
retrieving revision 1.15.2.1
diff -u -p -r1.15 -r1.15.2.1
--- src/sys/netipx/ipx.h1999/08/28 18:21:52 1.15
+++ src/sys/netipx/ipx.h2005/01/02 13:00:51 1.15.2.1
@@ -33,7 +33,7 @@
  *
  * @(#)ipx.h
  *
- * $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/netipx/ipx.h,v 1.15 
1999/08/28 18:21:52 jhay Exp $
+ * $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/netipx/ipx.h,v 1.15.2.1 
2005/01/02 13:00:51 rwatson Exp $
  */
 
 #ifndef _NETIPX_IPX_H_
@@ -108,6 +108,7 @@ union ipx_host {
 union ipx_net {
u_char  c_net[4];
u_short s_net[2];
+   u_int   u_net;
 };
 
 union ipx_net_u {
@@ -131,6 +132,8 @@ struct sockaddr_ipx {
charsipx_zero[2];
 };
 #define sipx_port sipx_addr.x_port
+#define sipx_network sipx_addr.x_net.u_net
+#define sipx_node sipx_addr.x_host.c_host
 
 /*
  * Definitions for IPX Internetwork Packet Exchange Protocol

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RELENG_4 IPX commit broke net/mars_nwe?

2005-01-12 Thread Igor B. Bykhalo
[Sorry, incidentally sent unfinished letter]

[Cc'ing Boris Popov as maintainer]
Greetings!

Looks like the follwoing commit broke net/mars_nwe port
on my RELENG_4 file server box:

 Edit src/sys/netipx/ipx.h
  Add delta 1.15.2.1 2005.01.02.13.00.51 rwatson

First, after upgrading machine (buildworld, kernel, installworld),
non-rebuilt nwserv didn't even start. After port was rebuilt,
it starts, but server doesn't appear on the network and doesn't
accept connections from client Windows boxes.

There is no errors or warnings in log files of IPXrouted(8) or
port programs, so i am totally lost...

Here are corresponding parts of ps -ax and other network info:

[...]
   73  ??  Is 0:00,02 IPXrouted -s /var/log/nw.ipx.log
[...]
  374  ??  I  0:00,04 nwbind GO aa.aa.0.0:0.0.0.0.0.1:4.51 400c
  375  ??  I  0:00,00 ncpserv GO aa.aa.0.0:0.0.0.0.0.1:4.51 400c 4009
[...]

banka# ifconfig -a
fxp0: flags=9843 mtu 1500
inet aaa.bbb.ccc.213 netmask 0xffc0 broadcast aaa.bbb.ccc.255
inet aaa.bbb.ccc.221 netmask 0x broadcast aaa.bbb.ccc.221
ether 00:08:c7:49:99:b1
media: Ethernet 100baseTX 
status: active
fxp0f0: flags=8843 mtu 1500
ipx .8c74999b1
ether 00:08:c7:49:99:b1
[...]
lo0: flags=8049 mtu 16384
inet 127.0.0.1 netmask 0xff00
ipx .1H
banka#

Can anyone help? I can send mars_nwe config and logs as well...

TIA,
Igor

PS. Oh, here is the diff from cvsweb:

===
RCS file: /usr/local/www/cvsroot/FreeBSD/src/sys/netipx/ipx.h,v
retrieving revision 1.15
retrieving revision 1.15.2.1
diff -u -p -r1.15 -r1.15.2.1
--- src/sys/netipx/ipx.h1999/08/28 18:21:52 1.15
+++ src/sys/netipx/ipx.h2005/01/02 13:00:51 1.15.2.1
@@ -33,7 +33,7 @@
  *
  * @(#)ipx.h
  *
- * $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/netipx/ipx.h,v 1.15 
1999/08/28 18:21:52 jhay Exp $
+ * $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/netipx/ipx.h,v 1.15.2.1 
2005/01/02 13:00:51 rwatson Exp $
  */
 
 #ifndef _NETIPX_IPX_H_
@@ -108,6 +108,7 @@ union ipx_host {
 union ipx_net {
u_char  c_net[4];
u_short s_net[2];
+   u_int   u_net;
 };
 
 union ipx_net_u {
@@ -131,6 +132,8 @@ struct sockaddr_ipx {
charsipx_zero[2];
 };
 #define sipx_port sipx_addr.x_port
+#define sipx_network sipx_addr.x_net.u_net
+#define sipx_node sipx_addr.x_host.c_host
 
 /*
  * Definitions for IPX Internetwork Packet Exchange Protocol

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: RELENG_4 IPX commit broke net/mars_nwe?

2005-01-13 Thread Igor B. Bykhalo
First, small followup: for now, i reverted netipx/ipx.h
to previous version 1.15, and after system and port were
rebuilt all works (not surprisingly :)

Other stuff below...

> On Wed, Jan 12, 2005 at 08:50:02PM +0300, Igor B. Bykhalo wrote:
>> 
>> Looks like the follwoing commit broke net/mars_nwe port
>> on my RELENG_4 file server box:

> Yes, it seems to be.  Mars_nwe have different idea about
> added macro:

> # define sipx_node sipx_addr.x_host.c_host
> # define sipx_network sipx_addr.x_net.c_net
> # define ipx_netlong(iaddr) (((union ipx_net_u *)(&((iaddr).x_net)))->long_e)

I see, this is from mars_nwe/emutli.h. First is identical
to what rwatson commited in ipx.h v.1.15.2.1, but second
is different in v.1.15.2.1:

> # define sipx_network sipx_addr.x_net.u_net

Looking at the old mars_nwe build log, i really see it's
full of warnings:

In file included from ../net.h:69,
 from ../nwserv.c:21:
../emutli.h:26: warning: `sipx_network' redefined

So, the bottom line is that defines in mars_nwe/emutli.h now
conflict with system defines? Sorry, i'm not a programmer
myself, may be you cang give me some hints what i can try
to make mars_nwe work with current ipx.h ...

This is a production machine, but not very heavily used,
so a couple of reboots wont't hurt anyone badly...

TIA,
Igor

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: A-DATA flash drive: some oddities and how to add USB quirks

2003-11-01 Thread Igor B. Bykhalo
[Cc'ed to -questions. Hopefully someone knowlegeable can
 give guidelines or ask some more specific info]

From: "Tim Vanderhoek" <[EMAIL PROTECTED]>
To: "Igor B. Bykhalo" <[EMAIL PROTECTED]>
Sent: Saturday, November 01, 2003 8:23 AM
Subject: Re: A-DATA flash drive: some oddities and how to add USB quirks


> Were you able to get your A-DATA USB 2.0 SpeedDrive (256 MB flash drive)
> to work on FreeBSD?  What quirks (if any) did you need to use.

In short: no, it isn't functioning still, but read on...

> 
> I've got a Soyo 128MB drive here, but I suspect that the innards may
> be very similar.  I'm hoping that whatever you used to get yours working
> will also work for mine

Is this a "CigarDrive"? If yes, then probably your are in
the same boat...

Actually, i took a "second round" attempt to make the thing work.
A week or two after my postings there were commits to usb and CAM
systems, after which the line in dmesg

> umass0: A-DATA Technology Inc. USB Mass Storage Device, rev 2.00/0.01, addr 3

changed into

> umass0: A-DATA Technology Inc. USB Mass Storage Device, rev 2.00/0.01, addr 3, 8070i 
> (ATAPI) over Bulk-Only

See this "8070i (ATAPI) over Bulk-Only" part? I have a bad feeling
that ATAPI can be a key word for my problems.
(Before someone asks: yes, atapicam was also compiled into
the kernel.)

Anyway, i decided to try some quirks not only for scsi_da.c, but also
for umass.c. To do so for my particular hardware, i had to add HW identifiers
to src/sys/dev/usb/usbdevs and then to remake corresponding usbdevs* files
using makefile in this directory. The change was:

Index: /usr/src/sys/dev/usb/usbdevs
===
RCS file: /home/ncvs/src/sys/dev/usb/usbdevs,v
retrieving revision 1.11.2.48
diff -c -r1.11.2.48 usbdevs
*** /usr/src/sys/dev/usb/usbdevs 2 Sep 2003 14:35:17 - 1.11.2.48
--- /usr/src/sys/dev/usb/usbdevs 11 Sep 2003 13:50:54 -
***
*** 1002,1007 
--- 1002,1010 
  product PROLIFIC PL2303  0x2303  PL2303 Serial adapter (ATEN/IOGEAR UC232A)
  product PROLIFIC PL2305  0x2305 Parallel printer adapter
  product PROLIFIC ATAPI4  0x2307 ATAPI-4 Bridge Controller
+ product PROLIFIC PL2515  0x2515 PL2515 Embedded hub
+ product PROLIFIC PL2517  0x2517 PL2517 Mass Storage Device
+ 
  
  /* Putercom products */
  product PUTERCOM UPA100  0x047e USB-1284 BRIDGE 

Values initially were taken from the output of usbd -vv

Then i put some dummy quirk into umass.c - it only does
a printf() ("PL2517 quirk was applied"). It worked,
but something strange (to me) happened: message was
printed three times in a row! Well, possibly this
is not strange - i'm not a C person to read devices
probing code...

Then i tried some quirks mentioned here and there,
but to no avail... and here my "research" stopped
(lack of time).

So, until now the bottom line is:

If your device is made with PL-2515 chip - you'll probably
will have the same problems. Actually, i even opened mine,
and it really contains this Prolific chip.

Info on the chip:

http://www.prolific.com.tw/fr_pl2515.htm


Some technical info and Windows stuff is aviliable
via http://tech.prolific.com.tw

Sorry, this is all i have for now...

Device is still availiable, so in a week or two i'll
be able to put my hands on it again. Hints and suggestions
are welcome...

Igor

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: IPX problems

2003-08-19 Thread Igor B. Bykhalo
From: "Malcolm Kay" <[EMAIL PROTECTED]>
To: "Free BSD Questions list" <[EMAIL PROTECTED]>
Sent: Tuesday, August 19, 2003 4:53 PM
Subject: IPX problems


> I wiish to retire a rather aging Linux box which has been providing 
> (amongst other things) access to a Novell file server.
> 
> The new box has has FreeBSD 4.8 installed and I have recompiled 
> the kernel with:
>   options "IPX"
>   options "NCP"

Is NCP useful for IPX? Just asking, i'm not sure...

> 
> And appended to rc.conf
>   ifconfig_rl0_ipx="ipx 0x001B" 
>   ipxgateway_enable="YES" 
>   ipxrouted_enable="YES"

Well, i have IPX configured on lo0 also, but i'm running mars_nwe.
(See http://people.freebsd.org/~bp/ipxen.html. It's a bit outdated, but still useful.)

> 
> rl0 is also configured for an inet address and ifconfog reports
>  rl0: flags=8843 mtu 1500
> inet 192.1.3.230 netmask 0xff00 broadcast 192.1.3.255
> inet6 fe80::250:fcff:fea8:3e08%rl0 prefixlen 64 scopeid 0x1 
> ipx 1b.50fca83e08 
> ether 00:50:fc:a8:3e:08
> media: Ethernet autoselect (100baseTX )
> status: active

Is the Ethernet frame on Novell server ETHERNET_II?
If not, you need to add support for Ethernet frames via kernel config (see LINT)
or via kldload if_ef AND configure IPX for particular frame in rc.conf

I have:

goshik# ifconfig -a
sis0: flags=8843 mtu 1500
inet XXX.YYY.ZZZ.235 netmask 0xffc0 broadcast XXX.YYY.ZZZ.255
ether 00:a0:cc:a1:c3:71
media: Ethernet autoselect (100baseTX )
status: active
sis0f0: flags=8843 mtu 1500
ipx .a0cca1c371
ether 00:a0:cc:a1:c3:71
sis0f1: flags=8842 mtu 1500
ether 00:a0:cc:a1:c3:71
sis0f2: flags=8842 mtu 1500
ether 00:a0:cc:a1:c3:71
sis0f3: flags=8842 mtu 1500
ether 00:a0:cc:a1:c3:71
lo0: flags=8049 mtu 16384
inet 127.0.0.1 netmask 0xff00
ipx .1H
goshik#

Here sis0f* are clones of sis0 for particular frames,
so in your case these will be rl0f0, rl0f1, etc.

The corresponding settings in rc.conf:

network_interfaces="sis0 sis0f0 lo0"
ifconfig_sis0="inet XXX.YYY.ZZZ.235 netmask 255.255.255.192"
ifconfig_sis0f0_ipx="ipx 0x"
ifconfig_lo0_ipx="ipx 0x.1"

ipxgateway_enable="YES"# Set to YES to enable IPX routing.
ipxrouted_enable="YES" # Set to YES to run the IPX routing daemon.
ipxrouted_flags="-s"   # Flags for IPX routing daemon.

> 
> The problem is that I have not been able to get any of the utilities to find 
> the server:
> 
> central:202> ipxping PHILHEND
> ipxping: could not find server PHILHEND
> : syserr = Network is down
> 
> central:203> ncplist s
> Can't find any file server
> 
> Am I doing something stupid?
> Am I overlooking something?
> 
> Can anyone please help or suggest how I might proceed?

Check the above mentioned items... :-) BTW, why didn't you
just try mount_nwfs?

HTH,
Igor

> 
> Malcolm Kay

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: IPX problems

2003-08-20 Thread Igor B. Bykhalo
From: "Malcolm Kay" <[EMAIL PROTECTED]>
To: "Igor B. Bykhalo" <[EMAIL PROTECTED]>; "Free BSD Questions list" <[EMAIL 
PROTECTED]>
Sent: Wednesday, August 20, 2003 12:36 PM
Subject: Re: IPX problems


> Igor,
> Thanks for your thoughts. They correspond closely with what I discovered 
> today; but it all seems a bit vague. Nowhere have I found an overview
> of what needs to be done. In brief it is now working.

Good to hear...

[...]
> At present I'm loading if_ef via loader.conf but I'll probably change this and 
> include it in the kernel build. Discovering man ef(4) was the clue that got 
> me up.

Yes, i forgot to mention ef(4) manual page.

[...]
> > ifconfig_sis0f0_ipx="ipx 0x"
> > ifconfig_lo0_ipx="ipx 0x.1"
> >
> > ipxgateway_enable="YES"# Set to YES to enable IPX routing.
> 
> Does this really do anything in the circumstances?

Don't know. As you already found, there's very little
info about IPX under FreeBSD. Probably the key here is
that you can't manually setup static routes for IPX?

Regards,
Igor

[...]
> 
> Thanks again
> 
> Malcolm
> 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: codepages, koi-8 r - ? why only english?

2003-09-03 Thread Igor B. Bykhalo
From: "Alex Zivenko" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, September 03, 2003 6:33 PM
Subject: codepages, koi-8 r - ? why only english?


> Hi FreeBSD community. I have a question for you
> How can I add some other languages to my FreeBSD. I am russian, so how can I add 
> russian codepages? How can I use koi-8 r? 
> How I can configure my FreeBSD to support russian codepage?

1. Via sysinstall (system console settings):

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html

2. By hand, with good explanaition at

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/l10n.html

See, this is all Handbook, so do your homework please...

> What I should do in my KDE?

I think this is also in handbook.

HTH,
Igor

> Thank's.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Portupgrading ports with individual settings.

2003-09-26 Thread Igor B. Bykhalo
- Original Message - 
From: "Michael Vondung" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, September 25, 2003 5:05 PM
Subject: Portupgrading ports with individual settings.


> Very neophyte'ish question again, but:
> 
> I currently have Qt installed and now downloaded the distfile for a new
> version. I'd like to compile this new version with the WITHOUT_OPENGL
> option, which isn't the default. If I have portupgrade -ra do this, it will
> use the default settings, I believe. How would I go about this? Should I
> "make deinstall" the currently installed Qt version and then "make
> WITHOUT_OPENGL=yes install" the whole thing? (and then update the rest of
> the software with portupgrade -ra)

You are using portupgrade, so look at /usr/local/etc/pkgtools.conf,
section MAKE_ARGS, there are some examples.

HTH,
Igor
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


make release broken for -STABLE?

2003-01-23 Thread Igor B. Bykhalo
goshik# uname -a
FreeBSD goshik.binep.ac.ru 4.7-STABLE FreeBSD 4.7-STABLE #55: Wed Jan 22 13:20:00 MSK 
2003
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GO  i386

> goshik# make release CVSROOT=/home/ncvs CHROOTDIR=/home/release RELEASETAG=RELENG_4 
>DOCLANG=en_US.ISO8859-1 MAKE_ISOS=YES
[...]
> touch hack.c
> cc -shared -nostdlib hack.c -o hack.So
> rm -f hack.c
> sh /usr/src/sys/conf/newvers.sh BOOTMFS
>
cc -c -O -pipe  -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  
-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-q
ual  -fformat-extensions -ansi  -nostdinc -I- -I. -I/usr/src/sys 
-I/usr/src/sys/../include -I/usr/src/sys/contrib/ipfilter  -D_KERNE
L -include opt_global.h  -mpreferred-stack-boundary=2  vers.c
> linking BOOTMFS
>textdata bss dec hex filename
> 2669495  207576  209556 3086627  2f1923 BOOTMFS
> --
> >>> Kernel build for BOOTMFS completed on Wed Jan 22 18:19:12 GMT 2003
> --
> cd /usr/obj/usr/src/sys/BOOTMFS;  MAKEOBJDIRPREFIX=/usr/obj  MACHINE_ARCH=i386  
>MACHINE=i386
OBJFORMAT_PATH=/usr/obj/usr/src/i386/usr/libexec  
PERL5LIB=/usr/obj/usr/src/i386/usr/libdata/perl/5.00503
GROFF_BIN_PATH=/usr/obj/usr/src/i386/usr/bin  
GROFF_FONT_PATH=/usr/obj/usr/src/i386/usr/share/groff_font
GROFF_TMAC_PATH=/usr/obj/usr/src/i386/usr/share/tmac make KERNEL=BOOTMFS reinstall
> install -m 555 -o root -g wheel -fschg  BOOTMFS /R/stage/kernels/BOOTMFS
> mv /R/stage/kernels/BOOTMFS /R/stage/image.kern/kernel
> Setting up /boot directory for kern floppy
> dload=0x20 dsize=0x25000 isize=0x25000 entry=0x20 nsize=0x11afc
> /R/stage/image.kern/kernel:  53.7% -- replaced with /R/stage/image.kern/kernel.gz
> sh -e /usr/src/release/scripts/doFS.sh /R/stage/floppies/kern.flp  /R/stage /mnt  
>1440 /R/stage/image.kern  8 fd1440
> Warning: Block size restricts cylinders per group to 6.
> Warning: 1216 sector(s) in last cylinder unallocated
> /dev/rvnn0c:2880 sectors in 1 cylinders of 1 tracks, 4096 sectors
> 1.4MB in 1 cyl groups (6 c/g, 12.00MB/g, 32 i/g)
> super-block backups (for fsck -b #) at:
>  32
> cpio: write error: No space left on device
> *** Error code 1
>
> Stop in /usr/src/release.
> *** Error code 1
>
> Stop in /usr/src/release.
> *** Error code 1
>
> Stop in /usr/src/release.
> goshik#
>

I don't get it:

> goshik#cd /home/release/R/stages
>
> goshik#ls -l crunch
> total 3392
> -r-xr-xr-x  34 root  wheel  2180036 22 ÑÎ× 21:10 boot
> -rwxr-xr-x   1 root  wheel  1233892 22 ÑÎ× 21:11 fixit
>
> goshik# ls -l floppies
> total 2912
> -rw-r--r--  1 root  wheel  1474560 22 ÑÎ× 21:19 kern.flp
> -rw-r--r--  1 root  wheel  1474560 22 ÑÎ× 21:17 mfsroot.flp
>
> goshik# ls -l *kern*
> image.kern:
> total 1346
> drwxr-xr-x  2 root  wheel  512 22 ÑÎ× 21:19 boot
> -r-xr-xr-x  1 root  wheel  1344894 22 ÑÎ× 21:19 kernel.gz
>
> kernels:
> total 2864
> -r-xr-xr-x  1 root  wheel  2909648 22 ÑÎ× 21:19 BOOTMFS.kern

Looks like kernel.gz fits to floppy, but for some reason it doesn't...
Should i supply more info?

TIA,
Igor





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



slightly OT: official CD tree structure

2003-01-27 Thread Igor B. Bykhalo
I'm going to burn installation CDs after make release,
but i also want to put distfiles of my ports on it,
just for more convenient local work.

The question is: where should i place distfiles?
Should it be /distfiles or ports/distfiles?

TIA,
Igor


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



Re: mount_nwfs

2003-02-20 Thread Igor B. Bykhalo
> Hey,
> I would like to mount different netware volumes with mount_nwfs but I
> have "not" included ipx support in the kernel! I get the following error
> message when I use the command:
> nwfs: vgsload(nwfs): Exec format error
> 
> When I try to load the nwfs.ko module with kldload I get exactly the
> same error, and additionnaly in var/log/messages I have this:
> /kernel: link_elf: symbol ipxcksum undefined
> 
> Does the freebsd netware client only work with IPX?! Our netware servers
> are netware 5 server with "ONLY" the TCP/IP protocol, "no ipx"!? Am I
> still able to connect to it from freebsd?
> 

Maybe NCP?

ncplist(1)   displays various information about ncplib and NetWare servers 
ncplogin(1)  create permanent connection to a NetWare server 
ncplogout(1) schedule permanent connection to close 

HTH,
Igor

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

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



www/oops and print/teTeX don't build: new bison related?

2002-10-30 Thread Igor B. Bykhalo
Hi,
anyone tried to build www/oops or print/teTeX after update
of bison?

System:
goshik# uname -a
FreeBSD goshik.binep.ac.ru 4.7-STABLE FreeBSD 4.7-STABLE #10: Sun Oct 27 15:02:15 MSK 
2002
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GO  i386
goshik#


Both ports fail compilation when bison is invoked, e.g. teTeX:

gmake[3]: Entering directory `/usr/ports/print/teTeX/work/teTeX-1.0/texk/web2c/web2c'
Expect one shift/reduce conflict.
bison -y -d -v ./web2c.y
./web2c.y:139.18: parse error, unexpected ":", expecting ";" or "|"
gmake[3]: *** [y_tab.h] Error 1
gmake[3]: Leaving directory `/usr/ports/print/teTeX/work/teTeX-1.0/texk/web2c/web2c'
gmake[2]: *** [web2c/web2c] Error 2
gmake[2]: Leaving directory `/usr/ports/print/teTeX/work/teTeX-1.0/texk/web2c'
gmake[1]: *** [all] Error 1
gmake[1]: Leaving directory `/usr/ports/print/teTeX/work/teTeX-1.0/texk'
gmake: *** [all] Error 1
*** Error code 2

Stop in /usr/ports/print/teTeX.

oops fails in parser.y, but with more warnings:

cc -c -O -pipe   -pthread -D_REENTRANT -DFREEBSD -D_THREAD_SAFE -DFD_SETSIZE 48 
-DWITH_LARGE_FILES -DHAVE_CONFIG_H  acl.c
bison -y -d parser.y
parser.y:94.11: parse error, unexpected ":", expecting ";" or "|"
[...repeated many times with other lines numbers...]
parser.y:1375.43-1391.25: $3 from `statements' doesn't have predefined type
parser.y:1375.43-1392.25: wrong $ value
parser.y:1375.43-1392.25: $4 from `statements' doesn't have predefined type
[...repeated many times...]
parser.y:1559.23-1562.9: $1 from `statements' doesn't have predefined type
parser.y:1569.9-1593.12: types conflict (`DOMAIN' `') on default action
parser.y:1593.14: parse error, unexpected ":", expecting ";" or "|"
parser.y:1594.26-1595.5: $1 from `domain' doesn't have predefined type
parser.y:1594.26-1595.16: $2 from `domain' doesn't have predefined type
parser.y:1594.26-1595.25: $1 from `domain' doesn't have predefined type
*** Error code 1

Stop in /usr/ports/www/oops/work/oops-1.5.22/src.
*** Error code 1

Stop in /usr/ports/www/oops/work/oops-1.5.22.
*** Error code 1

Stop in /usr/ports/www/oops.
*** Error code 1

Stop in /usr/ports/www/oops.

(Note: I'm using oops with gigabase)

I can send full build logs an additional info if requested. Can some kind
soul look at this ports, please? Both are maintained by [EMAIL PROTECTED] :(
I see some other bison-using ports were fixed...


TIA,
Igor


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



Re: IPX Relay over eth adapters?

2002-11-18 Thread Igor B. Bykhalo
[I don't beleive this belongs to -isp, so forwarding to -questions]

- Original Message - 
From: "Anton Blajev" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 7:54 PM
Subject: IPX Relay over eth adapters?


> Hi guys,
> I have a problem , I think I've wrote before but I think I didn't wrote to
> he isp list,
> anyway,
> so this is the problem
> I have two network adaptrs(LAN - 3Com) xl0,xl1
> xl0 is assigned as 192.168.100.50
> xl1 is as 192.168.0.100
> 
> I have rule "allow all form any to any via xl1" and "allow all from any to any via 
>xl0"

IPFW has nothing to do with IPX, so...

> the problem is that when users in one lan (example 192.168.100.50) make an
> game with IPX network protocol the users from the other lan can't get in in
> this game I need to to an ipx relay between the two interfaces.
> can you help?

... you need to configure IPX on your interfaces
and run IPXrouted(8)

HTH,
Igor


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

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



Re: Ethernet card problem

2002-12-09 Thread Igor B. Bykhalo
> From: "D J Hawkey Jr" <[EMAIL PROTECTED]>
> To: "Thomas Connolly" <[EMAIL PROTECTED]>
> Cc: "Kevin D. Kinsey, DaleCo, S.P." <[EMAIL PROTECTED]>; "Jack L. Stone" 
><[EMAIL PROTECTED]>; "'Brian'" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
> Sent: Tuesday, December 10, 2002 8:35 AM
> Subject: Re: Ethernet card problem
>

> On Dec 09, at 08:47 PM, Thomas Connolly wrote:
> >
> > In another thread, Thomas wrote:
> > >  My NIC is a pci card.  Do I still have to mess with my BIOS?
[...]
> > pci1:  at 0.0 irq 9
> I'd say this is not very good ^

[...]
> > uhci0:  at device 4.2 on pci0
> > uhci0: Could not map ports
> > device_probe_and_attach: uhci0 attach returned 6
> > chip1:  port 0x2180-0x218f at device 
>4.3 on pci0
[...]
>
> > dc0:  at device 13.0 on pci0
> > dc0: couldn't map ports/memory
> > device_probe_and_attach: dc0 attach returned 6
[...]
Looks like there's still some conflict (irq?)

> In BIOS, you should be able to zero in on the PCI bus stuff easily enough.
> Within that, several slot options. I can't tell you specifically what to
> look for or change though; different BIOSes use different words and phrases
> to describe the same things. A shot in the dark: Disable Plug-n-Play.

One more shot-in-the-dark: In the BIOS near "PnP OS: Yes/No"
(Choose No, as others said)
you'll see the line something like "Reset configuration (data)"
Make it Yes, and exit from BIOS with "Save", then BIOS will be forced
to reassign PnP/PCI resources for your hardware.

This helped me a number of times.

Oh, and when you boot off CD first time, you can select "Visual
config". Delete here _everyting_ you are sure you don't need
(or have). This will simplify device probing a little.

HTH,
Igor

>
> Best I can offer. G'Luck, and don't give up yet.
> Dave


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



Re: A-DATA flash drive: "Attempt to query device size failed"

2003-08-09 Thread Igor B. Bykhalo
From: "Kevin Oberman" <[EMAIL PROTECTED]>
To: "Igor B. Bykhalo" <[EMAIL PROTECTED]>
Cc: "FreeBSD Questions" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursday, August 07, 2003 6:17 PM
Subject: Re: A-DATA flash drive: "Attempt to query device size failed" 


> > From: "Igor B. Bykhalo" <[EMAIL PROTECTED]>
> > Date: Wed, 6 Aug 2003 11:15:40 +0400
> 
> > > I'm not too sure how many of the fixes in 5.0 have been MFC'ed to
> > > STABLE. The 5.0 USB code has had a lot of work of late and most flash
> > 
> > The last commit to scsi_da.c was a week ago by njl, and looking to it
> > via cvsweb i don't see difference in quirks (well, by my untrained eyes).
> 
> Nate MFCed the latest USB stuff last night. Try updating your system
> and see if things are better.
> -- 
> R. Kevin Oberman, Network Engineer
> Energy Sciences Network (ESnet)
> Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab)
> E-mail: [EMAIL PROTECTED] Phone: +1 510 486-8634

I tested fresh updates... All the same :-(

But i noticed a couple of strange things. From the output of the usbd -v:


/kernel: usbd: device-attach event at 0.020285000, USB Embedded Hub, A-DATA Technology 
Inc.:
/kernel: vndr=0x067b prdct=0x2515 rlse=0x0001 clss=0x0009 subclss=0x prtcl=0x
/kernel: device names: uhub1
/kernel: usbd: Found action 'USB device' for USB Embedded Hub, A-DATA Technology Inc. 
at uhub1

/kernel: usbd: device-attach event at 0.023338000, USB Mass Storage Device, A-DATA 
Technology Inc.:
/kernel: vndr=0x067b prdct=0x2517 rlse=0x0001 clss=0x subclss=0x prtcl=0x
/kernel: device names: umass0
/kernel: usbd: Found action 'USB device' for USB Mass Storage Device, A-DATA 
Technology Inc. at umass0

Here we have:

vendor 0x067b - according to usbdevs.h this is Prolific Technology... hmmm

product 0x2515 (not in usbdevs.h) class 0x0009 (hub) - well, it is identified
as hub (UICLASS_HUB in usb.h)

product 0x2517 (not in usbdevs.h) class 0x - my understanding is that
this should be 0x0008 (UICLASS_MASS in usb.h)

So: usbd reports vndr=0x067b but prints A-DATA; probably this is harmless...
usbd reports clss=0x for mass-storage part - i think this is bad?
products identifiers are not in usbdevs, usbdevs.h - ?

How should i act in this situation?

Oh, and when using "options DA_OLD_QUIRKS", am i right i still
need to manually add quirk to scsi_da_c?

TIA,
Igor


> 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Mars NWE - need some help please

2003-03-10 Thread Igor B. Bykhalo
[...]
> 
> ***
> ** Added to kernel
> options IPX
> options NCP
> 
> ** rc.conf entries
> ifconfig_xl0f0_ipx="ipx 010A"
> ifconfig_xl0f1_ipx="ipx 020A"
> ifconfig_xl0f2_ipx="ipx 030A"
> ifconfig_xl0f3_ipx="ipx 040A"

You forgot lo0?

ifconfig_lo0_ipx="ipx 0x.1"

> ipxrouted_flags="/tmp/ipx.log"

I have also -s flag for IPXrouted:

ipxrouted_flags="-s"   # Flags for IPX routing daemon.

And i don't see lines

ipxgateway_enable="YES"# Set to YES to enable IPX routing.
ipxrouted_enable="YES" # Set to YES to run the IPX routing daemon.

in your rc.conf. Are they there?

> 
> ** loader.conf line
> if_ef_load="YES"
> 
> * nwserv.conf *
> 
> 1   SYS /vola/sys   kr  711 600
> 1   VOL01   /vola/vol01 k   775 775
> 2   MASSH
> 3   auto1

Why? Must match IPX network number on lo0

3   0x

> 4   0x0 *   AUTO 1

You don't need this line... Read /usr/local/share/doc/mars_nwe/README.FREEBSD
Look also at Boris Popov's pages at

http://people.freebsd.org/~bp/

HTH,
Igor

[...]


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


RELENG_7 build fails

2011-11-15 Thread Igor B. Bykhalo
Good day.

I have a couple of rather old amd64 boxes planned to upgrade from RELENG_7,
but for now we needed just to quickly rebuild them (because of
new tzdata).

gate# uname -a
FreeBSD gate.binep.ac.ru 7.3-STABLE FreeBSD 7.3-STABLE #50: Mon Jun  7 12:10:28 
MSD 2010 gos...@gate.binep.ac.ru:/usr/obj/usr/src/sys/GATE  amd64

But after csupping with RELENG_7 tag we got buildworld failure:

[...]
cc -O2 -fno-strict-aliasing -pipe -I. -DIN_GCC -DHAVE_CONFIG_H 
-DPREFIX=\"/usr\" -I/usr/obj/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/config 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcclibs/include 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcclibs/libcpp/include 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcclibs/libdecnumber -g 
-DGENERATOR_FILE -DHAVE_CONFIG_H  -I/usr/obj/usr/src/tmp/legacy/usr/include -c 
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/genconditions.c
cc -O2 -fno-strict-aliasing -pipe -I. -DIN_GCC -DHAVE_CONFIG_H 
-DPREFIX=\"/usr\" -I/usr/obj/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/config 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcclibs/include 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcclibs/libcpp/include 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcclibs/libdecnumber -g 
-DGENERATOR_FILE -DHAVE_CONFIG_H  -I/usr/obj/usr/src/tmp/legacy/usr/include  
-L/usr/obj/usr/src/tmp/legacy/usr/lib -o genconditions genconditions.o rtl.o 
read-rtl.o ggc-none.o vec.o min-insn-modes.o gensupport.o print-rtl.o errors.o 
libiberty.a -lm
./genconditions 
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/config/i386/i386.md > 
gencondmd.c
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/config/i386/sse.md:4448:
 invalid decimal constant "UNSPEC_PSHUFB"

/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/config/i386/sse.md:4448:
 following context is `))]'
*** Error code 1

Stop in /usr/src/gnu/usr.bin/cc/cc_tools.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.

Deleting /usr/obj before build doesn't help.

Any thoughts? I have a feeling I'm missing something almost obvious... 8-)

Igor

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: can't zip large files 2gb >

2007-05-02 Thread Igor B. Bykhalo
Hello David,

Wednesday, May 2, 2007, 8:46:56 AM, you wrote:

> On Tue, May 01, 2007 at 11:53:55PM -0400, Kris Kennaway wrote:
>> On Tue, May 01, 2007 at 11:22:28PM -0400, David Banning wrote:
>> > Another piece of info - I just complied rzip and it seems I 
>> > have the same problem there! There must be something in common,
>> > that these programs are using...
>> 
>> Is your filesystem full? :)
>
> Not at all;

Just guessing:

> Filesystem1K-blocks Used Avail Capacity  Mounted on
> /dev/ad0s1a  503966   11072835292224%/
> /dev/ad0s1f  2579982952820783212%/tmp
   ^^
   Your /tmp is about 250 MB

> /dev/ad0s1g75407576 51862570  1751240075%/usr
> /dev/ad0s1e  503966   26056020309056%/var
   ^^
Your /var (with /var/tmp) is about 500MB

Can't it be that zip just don't have enough space for temporary storage?


> procfs44 0   100%/proc
> linprocfs 44 0   100%
> /usr/compat/linux/proc
> 70.52.121.240:/usr/backup  75331512 15213578  5409141422%/usr/optex
> /dev/ad1s1e   307684276 73248808 20982072626%/tusr
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"



-- 
Best regards,
 Igor B. Bykhalomailto:[EMAIL PROTECTED]

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Strange breakage on amd64 RELENG_6

2007-05-18 Thread Igor B. Bykhalo
Greetings all,

A few days ago i got very strange problem with my amd64 system.

It is with ASUS A8V motherboard with AMD 64 3200+ and 1G memory.

Last update was on April 17, and now buildworld fails with ICE:

> --
 Rebuilding the temporary build tree
> --
> rm -rf /usr/obj/usr/src/tmp
> rm -rf /usr/obj/usr/src/lib32
> mkdir -p /usr/obj/usr/src/tmp/legacy/usr/bin
[...]
> mtree -deU -f /usr/src/etc/mtree/BSD.include.dist  -p 
> /usr/obj/usr/src/tmp/usr/include >/dev/null
> ln -sf /usr/src/sys /usr/obj/usr/src/tmp
> 
> --
 stage 1.1: legacy release compatibility shims
> --
> cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj/usr/src/tmp  INSTALL="sh 
> /usr/src/tools/install.sh"  
> PATH=/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/legacy/usr/bin:/usr/obj/usr/src/tmp/legacy/usr/games:/sbin:/bin:/usr/sbin:/usr/bin
>   WORLDTMP=/usr/obj/usr/src/tmp  MAKEFLAGS="-m /usr/src/tools/build/mk  -m 
> /usr/src/share/mk" make -f Makefile.inc1  DESTDIR=  BOOTSTRAPPING=602109  
> -DNO_HTML -DNO_INFO -DNO_LINT -DNO_MAN -DNO_NLS -DNO_PIC  -DNO_PROFILE 
> -DNO_SHARED -DNO_CPU_CFLAGS -DNO_WARNS legacy
> ===>> tools/build (obj,includes,depend,all,install)
> /usr/obj/usr/src/tmp/usr/src/tools/build created for /usr/src/tools/build
> cd /usr/src/tools/build; make buildincludes; make installincludes
> rm -f .depend
> mkdep -f .depend -a-I/usr/obj/usr/src/tmp/legacy/usr/include 
> /usr/src/tools/build/dummy.c
> cc -O2 -fno-strict-aliasing -pipe  -I/usr/obj/usr/src/tmp/legacy/usr/include 
> -c /usr/src/tools/build/dummy.c
> building static egacy library
> ranlib libegacy.a
> sh /usr/src/tools/install.sh -C -o root -g wheel -m 444   libegacy.a 
> /usr/obj/usr/src/tmp/legacy/usr/lib
> 
> --
 stage 1.2: bootstrap tools
> --
> cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj/usr/src/tmp  INSTALL="sh 
> /usr/src/tools/install.sh"  
> PATH=/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/legacy/usr/bin:/usr/obj/usr/src/tmp/legacy/usr/games:/sbin:/bin:/usr/sbin:/usr/bin
>   WORLDTMP=/usr/obj/usr/src/tmp  MAKEFLAGS="-m /usr/src/tools/build/mk  -m 
> /usr/src/share/mk" make -f Makefile.inc1  DESTDIR=  BOOTSTRAPPING=602109  
> -DNO_HTML -DNO_INFO -DNO_LINT -DNO_MAN -DNO_NLS -DNO_PIC  -DNO_PROFILE 
> -DNO_SHARED -DNO_CPU_CFLAGS -DNO_WARNS bootstrap-tools
===>> games/fortune/strfile (obj,depend,all,install)
> /usr/obj/usr/src/tmp/usr/src/games/fortune/strfile created for 
> /usr/src/games/fortune/strfile
> rm -f .depend
> mkdep -f .depend -a-I/usr/obj/usr/src/tmp/legacy/usr/include 
> /usr/src/games/fortune/strfile/strfile.c
> echo strfile: /usr/lib/libc.a /usr/obj/usr/src/tmp/legacy/usr/lib/libegacy.a 
> >> .depend
> cc -O2 -fno-strict-aliasing -pipe  -I/usr/obj/usr/src/tmp/legacy/usr/include 
> -c /usr/src/games/fortune/strfile/strfile.c
> /usr/src/games/fortune/strfile/strfile.c: In function `cmp_str':
> /usr/src/games/fortune/strfile/strfile.c:417: internal compiler error: 
> Segmentation fault: 11
> Please submit a full bug report,
> with preprocessed source if appropriate.
> See http://gcc.gnu.org/bugs.html> for instructions.
> *** Error code 1
> 
> Stop in /usr/src/games/fortune/strfile.
> *** Error code 1
> 
> Stop in /usr/src.
> *** Error code 1
> 
> Stop in /usr/src.
> *** Error code 1
> 
> Stop in /usr/src.

I tried cleaning /usr/obj, make cleandepend to no avail.
Today i took out Samsung DIMMS an inserted Kingston's.
The same behaviour. Processor and chipset are not overheated.

Any hints?

Igor


> tech00# dmesg
> Copyright (c) 1992-2007 The FreeBSD Project.
> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
> The Regents of the University of California. All rights reserved.
> FreeBSD is a registered trademark of The FreeBSD Foundation.
> FreeBSD 6.2-STABLE #3: Tue Apr 17 14:42:56 MSD 2007
> [EMAIL PROTECTED]:/usr/obj/usr/src/sys/NWE
> Preloaded elf kernel "/boot/kernel/kernel" at 0x806b8000.
> Calibrating clock(s) ... i8254 clock: 1193209 Hz
> CLK_USE_I8254_CALIBRATION not specified - using default frequency
> Timecounter "i8254" frequency 1193182 Hz quality 0
> Calibrating TSC clock ... TSC clock: 2002570778 Hz
> CPU: AMD Athlon(tm) 64 Processor 3200+ (2002.57-MHz K8-class CPU)
>   Origin = "AuthenticAMD"  Id = 0x20ff0  Stepping = 0
>   
> Features=0x78bfbff
>   Features2=0x1
>   AMD Features=0xe2500800
>   AMD Features2=0x1
> L1 2MB data TLB: 8 entries, fully associative
> L1 2MB instruction TLB: 8 entries, fully associative
> L1 4KB data TLB: 32 entries, fully associative
> L1 4KB instruction TLB: 32 entries, fully associative
> L1 data cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative
> L1 ins