XFree86-4-libraries build problem on -current

2002-06-21 Thread Ilya Naumov

i can't install XFree86-4-libraries using -current cvsupped and copmiled a day ago. it 
builds fine, but the installations fails with the following diags:

LD_LIBRARY_PATH=../../../../../exports/lib cc -c -ansi -pedantic -Dasm=__asm -Wall 
-Wpointer-arith  -I../../../../../exports/include/X11 
-I../../../../../include/extensions -I../../../../../extras/Mesa/src/OSmesa 
-I../../../../../extras/Mesa/src   -I../../../../../extras/Mesa/include   
-I../../../../.. -I../../../../../exports/include   -DCSRG_BASED  -DFUNCPROTO=15 
-DNARROWPROTO -DXTHREADS   -DXUSE_MTSAFE_API -DXNO_MTSAFE_PWDAPI
-DMALLOC_0_RETURNS_NULL  ../../../../../lib/GL/mesa/src/translate.c -o 
unshared/../../../../../lib/GL/mesa/src/translate.o
*** Error code 1

Stop in /garbage/ports/x11/XFree86-4-libraries/work/xc/lib/GL/mesa/src/OSmesa.
*** Error code 1

Stop in /garbage/ports/x11/XFree86-4-libraries/work/xc/lib/GL.
*** Error code 1

Stop in /garbage/ports/x11/XFree86-4-libraries/work/xc/lib.
*** Error code 1

Stop in /garbage/ports/x11/XFree86-4-libraries/work/xc.
*** Error code 1

Stop in /garbage/ports/x11/XFree86-4-libraries/work/xc.
*** Error code 1

Stop in /garbage/ports/x11/XFree86-4-libraries.
*** Error code 1

i have seen an 'unofficial' patch announce 
(http://docs.freebsd.org/cgi/getmsg.cgi?fetch=7709+0+current/freebsd-current), but i 
couldn't find the exact fix. could you please re-post it or commit necessary changes 
right into the port?

thanks in advance.

-- 

sincerely,
ilya naumov (at work)

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



Re: ACPI hangs on boot

2001-11-22 Thread Ilya Naumov

On Thu, 22 Nov 2001, Emiel Kollof wrote:

 The build and all goes well, but after a reboot. the kernel boots and
 just hangs on the acpi_cpu and refuses to go further.
 deleting the acpi.ko in /boot/kernel solves the problem for me. Is there
 any way to _disable_ acpi all together?

add hint.acpi.0.disable=1 into loader.conf.


sincerely,
ilya naumov (at work)



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



problem report: optimization

2001-04-25 Thread Ilya Naumov

Hello,

i've discovered that now the world cannot be built without any
optimization options (-Oxx) due to a 'dirty' code in some places. one of
good examples is usr.sbin/rpc.lockd. without -Oxx options kern.c fails
compilation:

cc -pipe -march=k6 -I. -I/usr/include/rpcsvc -g-o rpc.lockd kern.o nlm_prot_svc.o 
lockd.o lock_proc.o lockd_lock.o  -lrpcsvc -lutil
kern.o: In function `test_request':
/garbage/src/usr.sbin/rpc.lockd/kern.c(.text+0x504): undefined reference to `from_addr'
kern.o: In function `lock_request':
/garbage/src/usr.sbin/rpc.lockd/kern.c(.text+0x743): undefined reference to `from_addr'
kern.o: In function `unlock_request':
/garbage/src/usr.sbin/rpc.lockd/kern.c:387: undefined reference to `from_addr'
kern.o: In function `lock_answer':
/garbage/src/usr.sbin/rpc.lockd/kern.c:454: undefined reference to `show_4state'
/garbage/src/usr.sbin/rpc.lockd/kern.c:454: undefined reference to `show_state'
*** Error code 1

Stop in /garbage/src/usr.sbin/rpc.lockd.

but with optimizations turned on it compiles well. the problem is in
the pieces of code like below:

#define d_calls 0
.
.
if (d_calls)
.
.
from_addr((struct sockaddr_in *)msg-lm_addr));


obvious, that the code inside 'if' statement can't be ever
executed, and 'cc' with optimizations enabled doesn't even process it.
but without optimizations, all the code is being included into the
object file, which, of course, can't be linked because 'from_addr'
is really undefined.

i understand that -O option is used by default, but i think that
unnecesary code should be commented out or deleted from sources
because such tricks decrease readability and create problems described
above.


-- 
Best regards,
 Ilya  mailto:[EMAIL PROTECTED]



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



Re[2]: world is broken?

2001-04-23 Thread Ilya Naumov

Hello Kris,

Monday, April 23, 2001, 2:50:48 AM, you wrote:

 'make buildworld' fails with the following symptoms:
 === usr.sbin/rpc.lockd

[skipped]

 Stop in /garbage/src/usr.sbin/rpc.lockd.
 *** Error code 1

KK Looks like you're building with -j,

no, i read about potential problems with -j in a mailing list, so i
built my 'world' without this option.

KK and haven't actually included the command which gave the error (which may be some 
way back in the
KK make(1) output).  Rebuild without -j and post the real error :-)

/usr/src # cd /usr/src/usr.sbin/rpc.lockd/
/usr/src/usr.sbin/rpc.lockd # make
cc -pipe -march=k6 -I. -I/usr/include/rpcsvc -g-o rpc.lockd kern.o nlm_prot_svc.o 
lockd.o lock_proc.o lockd_lock.o  -lrpcsvc -lutil
kern.o: In function `test_request':
/garbage/src/usr.sbin/rpc.lockd/kern.c(.text+0x504): undefined reference to `from_addr'
kern.o: In function `lock_request':
/garbage/src/usr.sbin/rpc.lockd/kern.c(.text+0x743): undefined reference to `from_addr'
kern.o: In function `unlock_request':
/garbage/src/usr.sbin/rpc.lockd/kern.c:387: undefined reference to `from_addr'
kern.o: In function `lock_answer':
/garbage/src/usr.sbin/rpc.lockd/kern.c:454: undefined reference to `show_4state'
/garbage/src/usr.sbin/rpc.lockd/kern.c:454: undefined reference to `show_state'
*** Error code 1

Stop in /garbage/src/usr.sbin/rpc.lockd.

of course, the source tree is up to date.


-- 
Best regards,
 Ilyamailto:[EMAIL PROTECTED]



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



world is broken?

2001-04-22 Thread Ilya Naumov

Hello,

'make buildworld' fails with the following symptoms:

=== usr.sbin/rpc.lockd
cc -pipe -march=k6 -I. -I/usr/obj/garbage/src/i386/usr/include/rpcsvc -g   
-I/usr/obj/garbage/src/i386/usr/include -c /garbage/src/usr.sbin/rpc.lockd/kern.c
cc -pipe -march=k6 -I. -I/usr/obj/garbage/src/i386/usr/include/rpcsvc -g   
-I/usr/obj/garbage/src/i386/usr/include -c nlm_prot_svc.c
cc -pipe -march=k6 -I. -I/usr/obj/garbage/src/i386/usr/include/rpcsvc -g   
-I/usr/obj/garbage/src/i386/usr/include -c /garbage/src/usr.sbin/rpc.lockd/lockd.c
cc -pipe -march=k6 -I. -I/usr/obj/garbage/src/i386/usr/include/rpcsvc -g   
-I/usr/obj/garbage/src/i386/usr/include -c /garbage/src/usr.sbin/rpc.lockd/lock_proc.c
cc -pipe -march=k6 -I. -I/usr/obj/garbage/src/i386/usr/include/rpcsvc -g   
-I/usr/obj/garbage/src/i386/usr/include -c /garbage/src/usr.sbin/rpc.lockd/lockd_lock.c
cc -pipe -march=k6 -I. -I/usr/obj/garbage/src/i386/usr/include/rpcsvc -g   
-I/usr/obj/garbage/src/i386/usr/include  -o rpc.lockd kern.o nlm_prot_svc.o lockd.o 
lock_proc.o lockd_lock.o  -lrpcsvc -lutil
*** Error code 1

Stop in /garbage/src/usr.sbin/rpc.lockd.
*** Error code 1

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

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

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

Stop in /garbage/src.


-- 
Best regards,
 Ilya  mailto:[EMAIL PROTECTED]



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



Re: d.net client + today's kernel

2001-02-28 Thread Ilya Naumov

On Tue, 27 Feb 2001, Jake Burkholder wrote:

  a distributed.net client (ports/misc/dnetc) being run on -current with
  today's kernel just hangs my box. the system _dramatically_ slows
  down and stops to respond on any external events (keyboard, network,
  etc).
 Sorry, this should be fixed.  I'm running it now and it seems fine.

what's the date of your kernel?


sincerely,
ilya naumov (at work)



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



d.net client + today's kernel

2001-02-27 Thread Ilya Naumov

Hello,

a distributed.net client (ports/misc/dnetc) being run on -current with
today's kernel just hangs my box. the system _dramatically_ slows
down and stops to respond on any external events (keyboard, network,
etc).

d.net client is a daemon, that uses cpu idle (and only idle) time to do some
background mathematical calculations (www.distributed.net). it seems that with
latest kernel snapshots a dnet client takes highest priority instead
of lowest one.


-- 
Best regards,
 Ilya  mailto:[EMAIL PROTECTED]



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



Re: name resolution problems

2001-02-23 Thread Ilya Naumov

Hello Wesley,

Tuesday, February 20, 2001, 1:26:29 AM, you wrote:

WM Since the big shake-up with -current, I find that mozilla and galeon can
WM no longer function (both up to date), but lynx has no problems. Mozilla
WM seems stuck resolving hostnames, yet tcpdump shows no traffic and truss
WM indicates that it is simply looping around a poll(). The biggest
WM difference between lynx and mozilla in terms of name resolution is that
WM mozilla is linked against libc_r... Could there be some problem here?
WM Is anyone else seeing this?

yes, i see that too. but i experience the problem even with statically
linked linux-opera from ports. very strange..



-- 
Best regards,
 Ilyamailto:[EMAIL PROTECTED]



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



problems with today's world

2001-02-16 Thread Ilya Naumov


i have installed today's world and now cannot compile almost anyting (incuding the 
same world) because as (gnu assembler) coredumps every time.

it could be because of the older kernel (built yesterday), but i cannot recomile it 
due to the problem described above. any ideas?

sincerely,
ilya naumov (at work)


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



Re: problems with playback via pcm device

2001-02-09 Thread Ilya Naumov

On Fri, 9 Feb 2001, John Baldwin wrote:

  i have Ensoniq ES1371-based soundcard supported by pcm driver and
  experience some problems. the sound played is interruped by clicks and
  distorsions, and they appear more often when the disk activity is high.
  during playback the kernel generates messages like 'pcm0: hwptr went
  backwards 64 - 32'. any ideas?

 This could be related to the entropy gathering by the random kthread.  Have you
 tried removing the random device from your kernel?

yes, i've tried. no effect.


sincerely,
ilya naumov (at work)




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



problems with playback via pcm device

2001-02-08 Thread Ilya Naumov


i have Ensoniq ES1371-based soundcard supported by pcm driver and
experience some problems. the sound played is interruped by clicks and
distorsions, and they appear more often when the disk activity is high.
during playback the kernel generates messages like 'pcm0: hwptr went
backwards 64 - 32'. any ideas?

here is my dmesg:

Copyright (c) 1992-2001 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 5.0-CURRENT #2: Thu Feb  8 18:19:26 MSK 2001
[EMAIL PROTECTED]:/garbage/src/sys/compile/CAMEL
Timecounter "i8254"  frequency 1193182 Hz
Timecounter "TSC"  frequency 550023689 Hz
CPU: AMD Athlon(tm) Processor (550.02-MHz 686-class CPU)
  Origin = "AuthenticAMD"  Id = 0x621  Stepping = 1
  
Features=0x183f9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR
  AMD Features=0xc040AMIE,DSP,3DNow!
real memory  = 134135808 (130992K bytes)
avail memory = 125829120 (122880K bytes)
Preloaded elf kernel "kernel" at 0xc03de000.
Pentium Pro MTRR support enabled
Using $PIR table, 8 entries at 0xc00f15e0
npx0: math processor on motherboard
npx0: INT 16 interface
pcib0: Host to PCI bridge at pcibus 0 on motherboard
pci0: PCI bus on pcib0
pcib1: PCI-PCI bridge at device 1.0 on pci0
pci1: PCI bus on pcib1
pci1: display, VGA at 0.0 (no driver attached)
isab0: PCI-ISA bridge at device 4.0 on pci0
isa0: ISA bus on isab0
atapci0: VIA 82C686 ATA66 controller port 0xd800-0xd80f at device 4.1 on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata1: at 0x170 irq 15 on atapci0
pci0: serial bus, USB at 4.2 (no driver attached)
pci0: serial bus, USB at 4.3 (no driver attached)
pcm0: AudioPCI ES1371 port 0xa400-0xa43f irq 9 at device 9.0 on pci0
ahc0: Adaptec aic7850 SCSI adapter port 0xa000-0xa0ff mem 0xe180-0xe1800fff irq 
5 at device 10.0 on pci0
aic7850: Single Channel A, SCSI Id=7, 3/255 SCBs
xl0: 3Com 3c905B-TX Fast Etherlink XL port 0x9800-0x987f mem 0xe100-0xe17f 
irq 10 at device 11.0 on pci0
xl0: Ethernet address: 00:10:5a:74:c4:6c
miibus0: MII bus on xl0
xlphy0: 3Com internal media interface on miibus0
xlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
fdc0: NEC 72065B or clone at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0
fdc0: FIFO enabled, 8 bytes threshold
fd0: 1440-KB 3.5" drive on fdc0 drive 0
atkbdc0: Keyboard controller (i8042) at port 0x60,0x64 on isa0
atkbd0: AT Keyboard flags 0x1 irq 1 on atkbdc0
psm0: PS/2 Mouse flags 0x8000 irq 12 on atkbdc0
psm0: model NetMouse/NetScroll Optical, device ID 0
vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0
sc0: System console at flags 0x100 on isa0
sc0: VGA 16 virtual consoles, flags=0x300
sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
sio0: type 16550A
sio1 at port 0x2f8-0x2ff irq 3 on isa0
sio1: type 16550A
ppc0: Parallel port at port 0x378-0x37f irq 7 on isa0
ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/8 bytes threshold
lpt0: Printer on ppbus0
lpt0: Interrupt-driven port
ppi0: Parallel I/O on ppbus0
unknown: PNP0401 can't assign resources
unknown: PNP0501 can't assign resources
unknown: PNP0501 can't assign resources
unknown: PNP0700 can't assign resources
unknown: PNP0f13 can't assign resources
unknown: PNP0303 can't assign resources
atspeaker0: AT speaker at port 0x61 on isa0
IP packet filtering initialized, divert enabled, rule-based forwarding disabled, 
default to deny, logging limited to 200 packets/entry by default
ncp_load: [210-213]
ad0: 8223MB ST38410A [16708/16/63] at ata0-master UDMA66
acd0: CDROM CREATIVE CD5220 at ata1-master using WDMA2
Waiting 5 seconds for SCSI devices to settle
Mounting root from ufs:/dev/ad0s1a
xl0: promiscuous mode enabled
/dev/vmmon: Module vmmon: registered with major=200 minor=0 tag=$Name: build-570 $
/dev/vmmon: Module vmmon: initialized


sincerely,
ilya naumov (at work)



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



ps/2 mouse freezes in X

2000-12-01 Thread Ilya Naumov


when i switch from X Window screen to text console and back, my ps/2 mouse 
cursor often freezes with "psmintr: out of sync ( != 0008)" message 
from kernel. the problem doesn't depend on moused running or not, as well 
as on FreeBSD version (4.x or 5.0). lots of my colleagues also report about it.

my configuration:

* Genius NewScroll PS/2 Mouse
* ASUS K7V-T motherboard (VIA KX133 chipset)
* XFree4.0.1_4

dmesg related to mouse:

psm0: PS/2 Mouse irq 12 on atkbdc0
psm0: model NetMouse/NetScroll Optical, device ID 0


sincerely,
ilya naumov (at work)



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



Re: Re[2]: if_tap and linprocfs modules are broken in -current

2000-11-15 Thread Ilya Naumov

On Wed, 15 Nov 2000, Harti Brandt wrote:

  i do not use devfs. anyway, the patch by Maksim Yevmenkin doesn't
  help. kernel still reports "link_elf: symbol lminor undefined".
  
  and what's wrong with linprocfs? it seems to be broken too.
 
 Are you sure, that you don't have a stale linprocfs or if_tap in /modules
 or elsewhere? 

sorry, i forgot to remove obsolete /modules. everything's fine now. thank
you.


sincerely,
ilya naumov (at work)




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



Re[2]: if_tap and linprocfs modules are broken in -current

2000-11-14 Thread Ilya Naumov

Hello Harti,

Tuesday, November 14, 2000, 3:55:01 PM, you wrote:

 when i try to kldload if_tap module, the kernel says "symbol lminor
 undefined" and fails to load the module. for linprocfs module the
 message is "symbol tsleep undefined". these modules are necessary for
 VMWare 2.0 port.
 
 How-To-Repeat:
 
 kldload if_tap
 kldstat linprocfs

HB No problems here with source from today 6.00 MET. if_tap was
HB fixed on 09/19.

it's ok, i'm expiriencing them right now, with today's kernel/modules
(built on 13:07 MSK).

HB NB: there is a commit request pending for if_tap. It is currently unusable
HB with devfs. Would be REALLY nice if a committer could look at the patch.

i do not use devfs. anyway, the patch by Maksim Yevmenkin doesn't
help. kernel still reports "link_elf: symbol lminor undefined".

and what's wrong with linprocfs? it seems to be broken too.


-- 
Best regards,
 Ilyamailto:[EMAIL PROTECTED]




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



vmware2 new kernel

2000-07-07 Thread Ilya Naumov


i'm experiencing a problem with vmware2 build 570 (installed from
ports) and latest kernels. vmware runs perfectly with kernel built on
July, 3, but crashes my box with later kernel versions (July, 6 and
7). any ideas?


sincerely,
ilya naumov (at work)



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



make release breakage

2000-04-27 Thread Ilya Naumov

Hello,

make release fails with the following diagnosis:

=== bin/csh/nls
=== bin/csh/nls/finnish
install -c -o root -g wheel -m 444  tcsh.cat 
/R/stage/trees/bin/../usr/share/nls/fi_FI.ISO_8859-1/tcsh.cat
*** Error code 71
  

-- 
Best regards,
 Ilya  mailto:[EMAIL PROTECTED]




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



XFree86 under -current - a bug report

2000-03-20 Thread Ilya Naumov

Hello,

i've tried to build XFree86 4.0 on my 5.0-CURRENT and 4.0-RELEASE box, and encountered
a problem.

"make all" finishes successfully, but "make install" fails with the
following error message:

making all in programs/Xserver/hw/xfree86/os-support/bsd...
rm -f bsd_mouse.o
cc -c -O -pipe  -ansi -pedantic -Dasm=__asm -Wall -Wpointer-arith   -I../../../.
./../../programs/Xserver/hw/xfree86/common -I../../../../../../programs/Xserver/
hw/xfree86/os-support -I. -I../../../../../../programs/Xserver/include
  -I../../../../../../exports/include/X11 -I../../../../../../include/extensions
 -I../../../../../../programs/Xserver/mi -I   -I../../../../../.. -I../.
./../../../../exports/include  -DCSRG_BASED -DSHAPE  -DXKB -DLBX -DXAPPGROUP -DX
CSECURITY -DTOGCUP  -DXF86BIGFONT -DDPMSExtension  -DPIXPRIV -DPANORAMIX  -DGCCU
SESGAS -DAVOID_GLYPHBLT -DPIXPRIV -DSINGLEDEPTH -DXFreeXDGA -DXvExtension -DXFre
e86LOADER  -DXFree86Server -DXF86VIDMODE  -DX_BYTE_ORDER=X_LITTLE_ENDIAN -DSMART
_SCHEDULE -DNDEBUG   -DFUNCPROTO=15 -DNARROWPROTO   -DPCCONS_SUPPORT -DSYSCONS_S
UPPORT -DPCVT_SUPPORT  -DUSE_DEV_IO -DUSESTDRES   -DHAS_MTRR_SUPPORT   b
sd_mouse.c
In file included from bsd_mouse.c:11:
../../../../../../programs/Xserver/hw/xfree86/common/xf86Xinput.h:99: syntax err
or before `xDeviceCtl'
*** Error code 1

Stop in /usr/ports/x11/XFree86-4/work/xc/programs/Xserver/hw/xfree86/os-support/
bsd.
*** Error code 1

Stop in /usr/ports/x11/XFree86-4/work/xc/programs/Xserver/hw/xfree86/os-support.
*** Error code 1

ports were cvsupped today, and kernel/world were built on Mar 15.

what should i try to do to cope with this?


-- 
Best regards,
 Ilya  mailto:[EMAIL PROTECTED]




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



ps/2 mouse and new 6btm bios - bug report

2000-01-19 Thread Ilya Naumov

dear sirs,

i have uploaded a new bios (6btm0c23.bin, 1999/12/23) into Chaintech 6BTM
motherboard and faced with a problem. my Genius NewScroll PS/2 mouse is
not functioning under FreeBSD 4.0 OS anymore. the kernel just ignores a
mouse or detects it as Generic PS/2 mouse (instead of 
NetMouse) accompanying this by the messages: 

psm0: cannot get data
psm0: cannot get status

anyway, the mouse does not work.

the "mouse" string in kernel config is:

device psm0 at atkbdc? irq 12

everything is ok with older bios (1999/05/13), but new bios is necessary
for me due to coppermine support.

both bios versions are suitable for Windows 2000 and NT4.


sincerely,
ilya naumov (at work)



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



Re: the nist port

1999-12-28 Thread Ilya Naumov

On Tue, 28 Dec 1999, Kenneth Wayne Culver wrote:

 I can't get the nist port to compile:

the same thing. css-auth builds fine.


sincerely,
ilya naumov (at work)




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



SB Live! driver

1999-11-06 Thread Ilya Naumov

Hello,

good news.

Creative Labs has decided to make the drivers for their Soundblaster
Live open source (see http://opensource.creative.com/). so, are there any
plans to port it for FreeBSD?


Best regards,
 Ilya  mailto:[EMAIL PROTECTED]




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



proftpd problem

1999-10-22 Thread Ilya Naumov

Hello,

recently i've got the following problem with proftpd.

this daemon (pre8) worked ok until one of recent "make world"s. after
that it started to deny any non-anonymous logins with the following
diags:

Oct 23 00:18:11 camel proftpd[76540]: PAM(camel): Authentication failure 
Oct 23 00:18:11 camel proftpd[76540]: USER camel: incorrect password
from 192.168.2.2 [192.168.2.2] to xxx.xxx.xxx.xxx:21
Oct 23 00:18:00 camel proftpd[76540]: FTP session closed.

entries in pam.conf related to ftp are correct and proftpd.conf is
ok too (i guess :).

so, is it a problem connected to changes in PAM or anything else?
thank you.


Best regards,
 Ilya  mailto:[EMAIL PROTECTED]




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



hooray! aic driver works!

1999-10-21 Thread Ilya Naumov


i have just tried the latest version of aic cam driver by Luoqi, and it
seems that all significant problems were solved.

aic0 at port 0x340-0x35f irq 9 on isa0
...
Waiting 15 seconds for SCSI devices to settle
(probe0:aic0:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0
(probe0:aic0:0:0:0): UNIT ATTENTION info?:1 asc:29,0
(probe0:aic0:0:0:0): Power on, reset, or bus device reset occurred
(probe0:aic0:0:0:1): INQUIRY. CDB: 12 20 0 0 24 0
(probe0:aic0:0:0:1): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:1): Logical unit not supported
(probe0:aic0:0:0:2): INQUIRY. CDB: 12 40 0 0 24 0
(probe0:aic0:0:0:2): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:2): Logical unit not supported
(probe0:aic0:0:0:3): INQUIRY. CDB: 12 60 0 0 24 0
(probe0:aic0:0:0:3): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:3): Logical unit not supported
(probe0:aic0:0:0:4): INQUIRY. CDB: 12 80 0 0 24 0
(probe0:aic0:0:0:4): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:4): Logical unit not supported
(probe0:aic0:0:0:5): INQUIRY. CDB: 12 a0 0 0 24 0
(probe0:aic0:0:0:5): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:5): Logical unit not supported
(probe0:aic0:0:0:6): INQUIRY. CDB: 12 c0 0 0 24 0
(probe0:aic0:0:0:6): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:6): Logical unit not supported
(probe0:aic0:0:0:7): INQUIRY. CDB: 12 e0 0 0 24 0
(probe0:aic0:0:0:7): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:7): Logical unit not supported
...
Creating DISK cd0
cd0 at aic0 bus 0 target 0 lun 0
cd0: PINNACLE RCD-1000 2.35 Removable Worm SCSI-2 device
cd0: 3.300MB/s transfers
cd0: cd present [261890 x 2048 byte records] 

drive mounts without any problems and correctly reads data from CD-ROMS.

great work, Luoqi! thank you very much!
 

sincerely,
ilya naumov (at work)



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



Re: luoqi's aic driver problem

1999-10-20 Thread Ilya Naumov


On Tue, 19 Oct 1999, Luoqi Chen wrote:

  i've tried new "camfied" aic driver today and failed. here is a brief
  report.
  
  results:
  
  aic controller was successfully found by the kernel, but after "Waiting 15
  seconds for SCSI devices to settle" message it said the following:
 
 The request sense command clobbered the original command, I've changed the
 code from doing that, please download a new copy of aic.c file.

i have just tried it. the kernel boots successfully:

aic0 at port 0x340-0x35f irq 9 on isa0
...
Waiting 15 seconds for SCSI devices to settle
[here the CD-ROM drive flashes with its busy LED]
(probe0:aic0:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0
(probe0:aic0:0:0:0): UNIT ATTENTION info?:1 asc:29,0
(probe0:aic0:0:0:0): Power on, reset, or bus device reset occurred
(probe0:aic0:0:0:1): INQUIRY. CDB: 12 20 0 0 24 0
(probe0:aic0:0:0:1): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:1): Logical unit not supported
(probe0:aic0:0:0:2): INQUIRY. CDB: 12 40 0 0 24 0
(probe0:aic0:0:0:2): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:2): Logical unit not supported
(probe0:aic0:0:0:3): INQUIRY. CDB: 12 60 0 0 24 0
(probe0:aic0:0:0:3): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:3): Logical unit not supported
(probe0:aic0:0:0:4): INQUIRY. CDB: 12 80 0 0 24 0
(probe0:aic0:0:0:4): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:4): Logical unit not supported
(probe0:aic0:0:0:5): INQUIRY. CDB: 12 a0 0 0 24 0
(probe0:aic0:0:0:5): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:5): Logical unit not supported
(probe0:aic0:0:0:6): INQUIRY. CDB: 12 c0 0 0 24 0
(probe0:aic0:0:0:6): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:6): Logical unit not supported
(probe0:aic0:0:0:7): INQUIRY. CDB: 12 e0 0 0 24 0
(probe0:aic0:0:0:7): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:7): Logical unit not supported
...
cd0 at aic0 bus 0 target 0 lun 0
cd0: PINNACLE RCD-1000 2.35 Removable Worm SCSI-2 device
cd0: 3.300MB/s transfers
cd0: cd present [1 x 77747 byte records]

but, unfortunately, scsi probe precedure seems to be relatively
unstable. _sometimes_ (often enough) the kernel doesn't boot with the
following diagnostics:

(probe0:aic0:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0
(probe0:aic0:0:0:0): UNIT ATTENTION info?:1 asc:29,0
(probe0:aic0:0:0:0): Power on, reset, or bus device reset occured
(probe0:aic0:0:0:1): INQURY. CDB: 12 20 0 0 24 0
(probe0:aic0:0:0:1): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:1): Logical unit not supported
(probe0:aic0:0:0:2): INQURY. CDB: 12 40 0 0 24 0
(probe0:aic0:0:0:2): ILLEGAL REQUEST asc:25,0
(probe0:aic0:0:0:2): Logical unit not supported
ccb 0xc0a23400 - timed out
ccb 0xc0a23400 - timed out

however, even after successful boot, the kernel traps after attempts to
mount CD-ROM (mount_cd9660 /dev/cd0c /mnt). here is debug diags:

(cd0:aic0:0:0:0): Vendor Specific Command. CDB: 43 0 0 0 0 0 b5 0 64 0
(cd0:aic0:0:0:0): ILLEGAL REQUEST asc:25,0
(cd0:aic0:0:0:0): Logical unit not supported
(cd0:aic0:0:0:0): Vendor Specific Command. CDB: 43 0 0 0 0 0 b5 0 64 0
(cd0:aic0:0:0:0): ILLEGAL REQUEST asc:25,0
(cd0:aic0:0:0:0): Logical unit not supported
(cd0:aic0:0:0:0): ccb 0xc0a23400 - timed out
(cd0:aic0:0:0:0): ccb 0xc0a23400 - timed out

then mount_cd9660 dies (cannot be killed with kill -9).

  (probe0:aic0:0:0:2): ccb 0xc09c3000 - timed out
  (probe0:aic0:0:0:2): ccb 0xc09c3000 - timed out
 
 Was there a long period between these two messages and the previous ones?

yes, it was.

  what is possible reason of such behaviour and what should i try to do to
  make my aic/cdrom combination working?
  
 For now you could add a quirk entry for this drive to prevent multi-lun
 probing, 

ok, but how? :)


sincerely,
ilya naumov (at work)




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



Re[2]: luoqi's aic driver problem

1999-10-20 Thread Ilya Naumov

Hello Oliver,

Wednesday, October 20, 1999, 4:12:37 AM, you wrote:

OF   Chaintech 6BTM mainboard with Celeron 416A processor and 128 Mb of memory

it is just Celeron 333A overclocked up to 416 MHz (5 x 83.5).


Best regards,
 Ilyamailto:[EMAIL PROTECTED]




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



luoqi's aic driver problem

1999-10-19 Thread Ilya Naumov


i've tried new "camfied" aic driver today and failed. here is a brief
report.

my configuration:

Chaintech 6BTM mainboard with Celeron 416A processor and 128 Mb of memory
Adaptec AIC-6360 SCSI controller (port 0x340 irq 9), irq 9 is reserved for
Legacy/ISA card in bios setup
Pinnacle 1000 CD writer (with SCSI device ID set to 0)

kernel settings:

options "CD9660"
options "CD9660_ROOT"
options SCSI_DELAY=15000
controller  scbus0
controller  aic0 at isa? port 0x340 irq 9
device  cd0  at aic?

results:

aic controller was successfully found by the kernel, but after "Waiting 15
seconds for SCSI devices to settle" message it said the following:

(probe0:aic0:0:0:0): REQUEST SENSE. CDB: 3 0 0 0 20 0
(probe0:aic0:0:0:0): UNIT ATTENTION info?:1 asc:29,0
(probe0:aic0:0:0:0): Power on, reset, or bus device reset occured
(probe0:aic0:0:0:1): REQUEST SENSE. CDB: 3 4 0 0 12 0
(probe0:aic0:0:0:1): ILLEGAL REQEST asc:25,0
(probe0:aic0:0:0:1): Logical unit not supported
(probe0:aic0:0:0:2): ccb 0xc09c3000 - timed out
(probe0:aic0:0:0:2): ccb 0xc09c3000 - timed out

after that my system just hangs.

what is possible reason of such behaviour and what should i try to do to
make my aic/cdrom combination working?

thank you in advance.


sincerely,
ilya naumov (at work)



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



Re: C++ compiler not working in yesterdays current.

1999-09-29 Thread Ilya Naumov



On Wed, 29 Sep 1999, Martin Nilsson wrote:

 mysql-3.23.3 cc1plus reports out of swap space and exits when 
 compiling sql_yacc.cc

add mode swap space using swapfile parameter in /etc/rc.conf or manually,
with vnconfig/swapon commands. mysql will normally compile. 

sincerely,
ilya naumov (at work)



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



Re: Experimental ACPI driver.

1999-09-28 Thread Ilya Naumov

$BWT(B , 28 $BSE(B1999, $BwY(B $BNAPISALI(B:

 Apply this patch.

thanks, it works:

ACPI: Found ACPI BIOS data at 0xc00f6c10 (123456, RSDT@7ff3000)
acpi0: 123456 on motherboard
acpi0: ADDR RANGE 7ff3000 d000 (mapped 0xc779c000)
acpi0: ADDR RANGE 7ff 3000 (mapped 0xc77a9000)
acpi0: RSDT have 2 entries
acpi0: RSDT entry0 FACP
acpi0:  FACP found
acpi0:  DSDT found Size=8812 bytes
acpi0:  FACS Found Size=64 bytes
acpi0: RSDT entry1 BOOT
acpi0: at 0xb2 irq 9

so, what does mean? :) 

-- 

sincerely,
ilya naumov (at work)


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



ports/net/kicq problem

1999-09-20 Thread Ilya Naumov

Hello ppl,

i have installed latest (1.1.2) kde11-i18n based on qt-i18-1.44a library.
kde itself works fine but, now i'm experiencing another problem: old
binaries that were built with older qt do not run. but the worst thing is 
impossibility to re-build that
binaries with new qt using ports (kicq is good example). configure just
fails while trying to find qt library:

checking for QT-1.4x... configure: error: QT-1.4x (libraries) not found. Please check 
your installation!

could anybody fix this?


Best regards,
 Ilya  mailto:[EMAIL PROTECTED]




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



Re: cvs commit: src/sys/i386/i386 identcpu.c

1999-07-05 Thread Ilya Naumov

ÐÎ , 05 ÉÀÌ 1999, ÷Ù ÎÁÐÉÓÁÌÉ:
 On Sun, 4 Jul 1999, Brian Feldman wrote:
 
CPU: AMD-K6(tm) 3D processor (350.81-MHz 586-class CPU)
  Origin = "AuthenticAMD"  Id = 0x58c  Stepping=12
  Features=0x8021bfFPU,VME,DE,PSE,TSC,MSR,MCE,CX8,PGE,MMX
 AMD Features=0x808029bfFPU,VME,DE,PSE,TSC,MSR,MCE,CX8,SYSCALL,PGE,MMX,3DNow!
 
 I thought the K6-* only did 3DNow, and not MMX?

no, K6-* supports MMX instruction set as well as 3DNow.

--

sincerely,
ilya naumov (at work)


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



Re: Boot Manager says F1 ?? for WINNT

1999-06-30 Thread Ilya Naumov

ÓÒ , 30 ÉÀÎ 1999, Thomas Dean ÎÁÐÉÓÁÌ:
 I installed -current on a notebook with WINNT on the disk.  The
 notebook has the ide disk limitation.  So, I chopped the disk do get
 around it.  Maybe I should buy a new notebook, but, this one works.
 
 Everything worked OK, except the boot manager.  I get:
 
   F1 ??
   F2 FreeBSD
   F3 ??
   F4 FreeBSD

 How do I get something other than ?? for F1 and lose F3 and F4?

try to install boot.bin (with bootinst.exe) from /tools directory of
FreeBSD distribution package. it will call NTFS partition as HPFS :)

--

sincerely,
ilya naumov (at work)


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



sane-1.00 port

1999-05-18 Thread Ilya Naumov

i cannot build  sane -1.00 ports (ports/graphics/sane-1.00) for a long time
under FreeBSD. i've tried to contact with maintainer of this
port (g...@hotlava.com), but he doesn't respont. could anyone fix it?

--

sincerely,
ilya naumov (at work)


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



[no subject]

1999-05-12 Thread Ilya Naumov

running FreeBSD 4.0-CURRENT i have encountered the following
problems:

1.  something is wrong with psm0 driver. my Genius NewScroll PS/2 mouse works
well, but in random moment when i touch the mouse kernel starts to write to the
system log the following. 

Apr 29 11:55:58 camel /kernel: psmintr: out of sync (00c8 != 0008).
Apr 29 11:55:58 camel /kernel: psmintr: out of sync (00c0 != 0008).  

when it happens, mouse cursor moves, but buttons do not work. only
reboot solves this problem. this bug doesn't appear with Microsoft and 
Hewlett-Packard mice.

my string in my kernel config related to mouse is
device  psm0  at atkbdc? irq 12

and kernel detects the mouse as

psm0: PS/2 Mouse on atkbdc0
psm0: model NetMouse, device ID 0
psm0: interrupting at irq 12

2. i cannot start X Window + KDE wirh new kernel. the system just reboots when
i start X. everything is ok with older (Tue May 11 16:17:50 MSD 1999) kernel.

3. i don't think that it is really a bug, but it's just interesting for me.
during bootup process my kernel writes the following message:

Bad SMBIOS table checksum!

so, what is SMBIOS table and why its checksum is bad? :)

--

sincerely,
ilya naumov (at work)


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



RE: problem with NewScroll Mouse, etc

1999-05-12 Thread Ilya Naumov
We , 12 may 1999, Steve O'Hara-Smith wrote:

  1.  something is wrong with psm0 driver. my Genius NewScroll PS/2
  mouse works
  well, but in random moment when i touch the mouse kernel starts to
  write to the
  system log the following. 
  
  Apr 29 11:55:58 camel /kernel: psmintr: out of sync (00c8 != 0008).
  Apr 29 11:55:58 camel /kernel: psmintr: out of sync (00c0 != 0008).  
  
  when it happens, mouse cursor moves, but buttons do not work. only
  reboot solves this problem. 

even full restart of moused doesn't help. very strange bug. NewScroll seems to
be fully compatible with Microsoft PS/2 mouse protocol, and a problem with it
appears under FreeBSD only.

--

sincerely,
ilya naumov (at work)


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Today's kernel crashes on starting X

1999-05-12 Thread Ilya Naumov
Hello Geoff,

Wednesday, May 12, 1999, 4:35:54 PM, you wrote:

GR I'm currently running into a problem, that when I start my system,
GR it spontaneously reboots when starting X.  Has anyone else run into
GR this?

yes, i'm experiencing the same problem with today's (May, 12) kernels.


Best regards,
 Ilyamailto:ca...@avias.com




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



some bug reports...

1999-04-29 Thread Ilya Naumov

running FreeBSD 4.0-CURRENT last 4 days i have encountered the following
problems:

1.  something is wrong with psm0 driver. my Genius NewScroll PS/2 mouse works
well, but in random moment when i touch the mouse kernel begins to write to the
systemn log the following. 

Apr 29 11:55:58 camel /kernel: psmintr: out of sync (00c8 != 0008).
Apr 29 11:55:58 camel /kernel: psmintr: out of sync (00c0 != 0008).  

when it happens, mouse cursor moves, but buttons do not work. only
reboot solves this problem. this bug doesn't appear with Microsoft and 
Hewlett-Packard mice.

my string in my kernel config related to mouse is
device  psm0at atkbdc? irq 12

and kernel detects the mouse as

psm0: PS/2 Mouse on atkbdc0
psm0: model NetMouse, device ID 0
psm0: interrupting at irq 12

2. i cannot run MySQL daemon since yesterday's make world. here is a piece of
MySQL's error log:

mysqld started on  ÞÔ 29 ÁÐÒ 1999 13:59:16 MSD
/usr/libexec/ld-elf.so.1: /usr/lib/libstdc++.so.3: Undefined symbol 
__vt_7filebuf
mysqld ended on  ÞÔ 29 ÁÐÒ 1999 13:59:16 MSD

3. my ESS1868-based sound card (Luigi's pcm driver) do not work since one of
kernel snapshots. the kernel says the follofing:

Probing for PnP devices:
CSN 1 Vendor ID: ESS1868 [0x68187316] Serial 0x Comp ID: PNPb02f 
[0x2fb0d041]
This is an ESS1868, but LDN 1 is disabled
..
..
pcm0: not probed (disabled)

the strings for pcm driver in kernel config are

controller  pnp0
device pcm0 at isa? disable port 0x220 irq 10 drq 1 flags 0x0

4. i don't think that it is really a bug, but it's just interesting for me.
during bootup process my kernel writes the following message:

Bad SMBIOS table checksum!

so, what is SMBIOS table and why its checksum is bad? :)

--

sincerely,
ilya naumov (at work)


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: some bug reports...

1999-04-29 Thread Ilya Naumov
th, 29 apr 1999, Florian Uhl wrote:

 3. my ESS1868-based sound card (Luigi's pcm driver) do not work since one of
 kernel snapshots. the kernel says the follofing:
 
 CSN 1 Vendor ID: ESS1868 [0x68187316] Serial 0x Comp ID: PNPb02f
 [0x2fb0d041]
 This is an ESS1868, but LDN 1 is disabled
 pcm0: not probed (disabled)

 Delete disable or change it in boot -c mode.

thanks for good idea :) the last string don't appear anymore and... that's
all. ESS still can't be detected. :(

--

sincerely,
ilya naumov (at work)


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



new kernel and IPDIVERT

1999-04-19 Thread Ilya Naumov

i have compiled the latest kernel and encountered a problem with IPDIVERT. even
with options IPDIVERT string in kernel config, kernel says the following:

IP packet filtering initialized, divert disabled, rule-based forwarding 
disabled, logging disabled

of course, firewall rules like add divert natd ... do not work. everything is
ok with old kernel (~5 days old). could anyone comment this?

--

sincerely,
ilya naumov (at work)


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re[2]: ftp hangs on -current

1999-04-17 Thread Ilya Naumov
Hello Matthew,

Saturday, April 17, 1999, 9:07:51 PM, you wrote:

 I am getting problems similar to those outlined above.  I don't run 
 natd, either, but I do
 have a firewall enabled. (open rule)  I've had to 'put' files rather than 
 'get'  them, since my
 last build/installworld.  (Yesterday's -current source)

MT How many of you are using RealTek network cards ?
MT They are crap in my experience (under any OS).

hmm... i'm really using Realtek 8029 card. i'm in doubt that this network
card is real reason of a problem with ftp, but i will try to replace it
with 3Com 509 on Monday and report about results.


Best regards,
 Ilyamailto:ca...@avias.com




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Re[2]: ftp hangs on -current

1999-04-16 Thread Ilya Naumov
ÐÔ , 16 ÁÐÒ 1999, Brian Somers ÎÁÐÉÓÁÌ:

  I CAN'T FTP OUT FROM MY -CURRENT SYSTEM.  I CAN FTP IN.  SOMETHING
  IS PROBABLY WRONG.  I CAN LIST DIRECTORIES, USUALLY.  'GET' COMMANDS
  HANG.  I AM RUNNING -CURRENT FROM MORNING APR 13.

 Generally, if you don't get a response, it usually indicates one of 
 three things:

when _one_ person reports about a problem, it is usually not a bug. but when 5
men experience the same problem after cvsup, it is a reason for developers to
note that fact, isn't it?

 1.  Nobody understands the question.

ftp sessions began to hang after one of cvsup/make world. login
sequence passes ok, but when i try to get a list of files, the ftp session
hangs and after several minutes it fails with error 421. in my case it depends
on natd (when i disable this daemon, everything work quite well), but some
people experience the same problem even without natd.

 2.  The answer is well documented either because the question has been 
 asked many times before or the info's in the man page/FAQ/handbook.

i'm in doubt :)

--

sincerely,
ilya naumov (at work)


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



some news about ftp hangs

1999-04-16 Thread Ilya Naumov

trying different configurations i have encountered the following

1. ftp in passive mode (pftp or ftp with -p options) DOES NOT hang;
2. ncftp3 from ports DOES NOT hang;
3. netscape communicator 4 DOES NOT hang.

so it seems that the problem is in native FreeBSD's ftp or a library
(libedit.so.2, libtermcap.so.2 or libc.so.3).

--

sincerely,
ilya naumov (at work)


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re[2]: ftp hangs on -current

1999-04-15 Thread Ilya Naumov
Hello Tim,

Wednesday, April 14, 1999, 10:25:11 AM, you wrote:

I am getting problems similar to those outlined above.  I don't run natd, 
 either, but I do
 have a firewall enabled. (open rule)  I've had to 'put' files rather than 
 'get'  them, since my
 last build/installworld.  (Yesterday's -current source)

TP I am not running any firewall but my last cvsup which is also current was 
the same day as yours.

i'm still experiencing this strange problem too. developers, where are you? :)


Best regards,
 Ilyamailto:ca...@avias.com




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: ftp hangs on -current

1999-04-13 Thread Ilya Naumov
Hello Gianmarco,

Thursday, April 08, 1999, 7:49:52 AM, you wrote:

GG ftp on 4.0-very-current (post egcs make world) randomly hangs during
GG sessions...
GG I never succeded in finishing a session lately.
GG To transfer some files from my home to my isp server I had to do an ftp
GG from the server and a get to them...

GG The ftp server works normally and fetch is ok ...
GG Probably it is a fault of my system, if no other experiences it.

you're not alone with this problem here - i have the same one. and it
seems that it is somehow related to natd, because ftp works quite
well when i disable this daemon. any ideas?

by the way, i have a question to natd gurus. i have faced with a
strange trouble - natd alters _all_ packets passing through the
interface (and it is clearly visible when i start natd with -v option)
completely ignoring -u option. but i would like to alter packets
for unregistered source addresses (192.168.0.0/16) only. what should i do?

i run natd with -u -n ed1 options and firewall rule for natd is:
00100 divert 8668 ip from any to any via ed1


Best regards,
 Ilyamailto:ca...@avias.com




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Looks broken to me...

1999-04-04 Thread Ilya Naumov
Hello Bob,

Monday, April 05, 1999, 12:03:48 AM, you wrote:

BB --
 Rebuilding tools needed to build libraries
BB --
BB [...]
=== cc_int
BB make: don't know how to make insn-attrtab.c. Stop
BB *** Error code 2
BB 1 error
BB *** Error code 2
BB 1 error
BB *** Error code 2
BB 1 error
BB *** Error code 2
BB 1 error
BB *** Error code 2
BB 1 error

try make clean before building world. but it is seems to be
broken anyway:

c++ -I/usr/obj/usr/src/tmp/usr/include/g++ -nostdinc -O -pipe -fno-for-scope 
-I/usr/src/gnu/usr.bin/groff/libgroff/../include -DHAVE_UNISTD_H=1 
-DHAVE_DIRENT_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_DIR_H=1 -DHAVE_STDLIB_H=1 
-DUNISTD_H_DECLARES_GETOPT=1 -DSTDLIB_H_DECLARES_PUTENV=1 
-DSTDIO_H_DECLARES_POPEN=1 -DSTDIO_H_DECLARE_PCLOSE=1 -DHAVE_CC_OSFCN_H=1 
-DHAVE_CC_LIMITS_H=1 -DRETSIGTYPE=void -DHAVE_STRUCT_EXCEPTION=1 
-DHAVE_RENAME=1 -DHAVE_MKSTEMP=1 -DSYS_SIGLIST_DECLARED=1 
-I/usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/include 
-fno-for-scope -I/usr/obj/usr/src/tmp/usr/include -fno-rtti -fno-exceptions -c 
/usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/new.cc 
-o new.o
*** Error code 1

Stop.
*** Error code 1

Stop.
*** Error code 1

Stop.
*** Error code 1

Stop.
*** Error code 1

Stop.
*** Error code 1

Stop.
*** Error code 1

Stop.
*** Error code 1

Stop.


Best regards,
 Ilyamailto:ca...@avias.com




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: AIC

1999-04-02 Thread Ilya Naumov
th , 01 ÁÐÒ 1999, Daniel C. Sobral wrote:

  Granted, we don't have a driver for that controller either, but the
  programming manual is readily available from LSI Logic.  Seems to me that
  NetBSD has a driver for it, based on a Linux driver.  (Been a while since
  I looked into it, so I may be misremembering.)
 
 It seems programming manuals for the AIC 6[23]60 are also available,
 and there is even a FreeBSD driver for it... :-)

and it is too popular controller to ignore it at all. how ironic - older 2.2.x
do support it, but newer 3.1/4.0 does not. i guess that many people have to use
2.2.8 on their old hardware instead of much more progressive 3.1 due to this
problem only. and it's a pity :(


sincerely,
ilya naumov (at work)


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



[no subject]

1999-03-30 Thread Ilya Naumov
hello

i wonder what is the situation with AIC driver now? we're suffering without it
:)

--

sincerely,
ilya naumov (at work)


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message