Re: ld necessary? (was Re: help on compile/link flags)

2010-08-12 Thread Edwin Eyan Moragas
Hi Patrick,

On Thu, Aug 12, 2010 at 6:59 AM, patrick keshishian pkesh...@gmail.com
wrote:
 i am stupid. the buffer used for the param to dlopen() was truncated.
 expanding it and passing the full absolute path, dlerror() returns
 Cannot load specified object.

 clues, pointers?

 You can help us by posting the code that does the dlopen()

  if (!(h = dlopen(/home/eyan/src/lib/ht, RTLD_LAZY |
 RTLD_GLOBAL))  ||  !(h = dlsym(h,p))) {
 printf(%s\n, dlerror());
 printf(%s\n, buf);
 return NO;
  }

 That error indicates that dependent libs of that lib aren't able to get
loaded.

 Try setting LD_DEBUG and see if that helps trace down the problem.

 --patrick


after setting LD_DEBUG, here's the output. (still learning how to read
the following but if not too busy eyes can look at it and point me
nearer to the goal, then it would be great):


e...@obsddev $ ./dbg wiki/main.l lib/too.l -main -go
rtld loading: './bin/picolisp'
exe load offset:  0x0
head ./bin/picolisp
obj ./bin/picolisp has ./bin/picolisp as head
examining: './bin/picolisp'
loading: libc.so.53.1 required by ./bin/picolisp
obj /usr/lib/libc.so.53.1 has ./bin/picolisp as head
loading: libm.so.5.2 required by ./bin/picolisp
obj /usr/lib/libm.so.5.2 has ./bin/picolisp as head
linking dep /usr/lib/libc.so.53.1 as child of ./bin/picolisp
linking dep /usr/lib/libm.so.5.2 as child of ./bin/picolisp
examining: '/usr/lib/libc.so.53.1'
examining: '/usr/lib/libm.so.5.2'
obj /usr/libexec/ld.so has ./bin/picolisp as head
relocation took 0.008299
StartEnd  Type Open Ref GrpRef Name
1c00 3c043000 exe  10   0  ./bin/picolisp
047b9000 247f2000 rlib 01   0  /usr/lib/libc.so.53.1
07968000 27972000 rlib 01   0  /usr/lib/libm.so.5.2
0c40a000 0c40a000 rtld 01   0  /usr/libexec/ld.so
symcache lookups 231 hits 38 ratio 16% hits
dynamic loading done, success.
doing ctors obj 0x7f9462e4 @0x47cb740: [/usr/lib/libc.so.53.1]
doing ctors obj 0x7f9464a4 @0x796a550: [/usr/lib/libm.so.5.2]
entry point: 0x1c0018b8
rtld loading: 'tput'
exe load offset:  0x0
head tput
obj tput has tput as head
examining: 'tput'
loading: libc.so.53.1 required by tput
obj /usr/lib/libc.so.53.1 has tput as head
loading: libcurses.so.11.0 required by tput
obj /usr/lib/libcurses.so.11.0 has tput as head
linking dep /usr/lib/libcurses.so.11.0 as child of tput
linking dep /usr/lib/libc.so.53.1 as child of tput
examining: '/usr/lib/libcurses.so.11.0'
examining: '/usr/lib/libc.so.53.1'
obj /usr/libexec/ld.so has tput as head
relocation took 0.001220
StartEnd  Type Open Ref GrpRef Name
1c00 3c004000 exe  10   0  tput
0f175000 2f186000 rlib 01   0  /usr/lib/libcurses.so.11.0
04c49000 24c82000 rlib 01   0  /usr/lib/libc.so.53.1
0c647000 0c647000 rtld 01   0  /usr/libexec/ld.so
symcache lookups 269 hits 39 ratio 14% hits
dynamic loading done, success.
doing ctors obj 0x879ef49c @0xf17dd10: [/usr/lib/libcurses.so.11.0]
doing ctors obj 0x879ef2dc @0x4c5b740: [/usr/lib/libc.so.53.1]
entry point: 0x1c000c38
doing dtors
doing dtors obj 0x879ef49c @0xf1a28b0: [/usr/lib/libcurses.so.11.0]
doing dtors obj 0x879ef2dc @0x4cd5ae0: [/usr/lib/libc.so.53.1]
rtld loading: 'tput'
exe load offset:  0x0
head tput
obj tput has tput as head
examining: 'tput'
loading: libc.so.53.1 required by tput
obj /usr/lib/libc.so.53.1 has tput as head
loading: libcurses.so.11.0 required by tput
obj /usr/lib/libcurses.so.11.0 has tput as head
linking dep /usr/lib/libcurses.so.11.0 as child of tput
linking dep /usr/lib/libc.so.53.1 as child of tput
examining: '/usr/lib/libcurses.so.11.0'
examining: '/usr/lib/libc.so.53.1'
obj /usr/libexec/ld.so has tput as head
relocation took 0.001263
StartEnd  Type Open Ref GrpRef Name
1c00 3c004000 exe  10   0  tput
08c3a000 28c4b000 rlib 01   0  /usr/lib/libcurses.so.11.0
0e0da000 2e113000 rlib 01   0  /usr/lib/libc.so.53.1
074ca000 074ca000 rtld 01   0  /usr/libexec/ld.so
symcache lookups 269 hits 39 ratio 14% hits
dynamic loading done, success.
doing ctors obj 0x83fb249c @0x8c42d10: [/usr/lib/libcurses.so.11.0]
doing ctors obj 0x83fb22dc @0xe0ec740: [/usr/lib/libc.so.53.1]
entry point: 0x1c000c38
doing dtors
doing dtors obj 0x83fb249c @0x8c678b0: [/usr/lib/libcurses.so.11.0]
doing dtors obj 0x83fb22dc @0xe166ae0: [/usr/lib/libc.so.53.1]
dlopen: loading: lib/ht
head lib/ht
obj lib/ht has lib/ht as head
linking lib/ht as dlopen()ed
head [lib/ht]
examining: 'lib/ht'
loading: libc.so.53.1 required by lib/ht
linking dep /usr/lib/libc.so.53.1 as child of lib/ht
tail lib/ht
./bin/picolisp:lib/ht: undefined symbol 'Nil'
./bin/picolisp:lib/ht: undefined symbol 'Nil'
./bin/picolisp:lib/ht: undefined symbol 'Nil'
./bin/picolisp:lib/ht: undefined symbol 'Nil'
./bin/picolisp:lib/ht: undefined symbol 'Nil'
./bin/picolisp:lib/ht: undefined 

solved (was Re: ld necessary? (was Re: help on compile/link flags))

2010-08-12 Thread Edwin Eyan Moragas
Hi misc,

got picoLisp behaving normally in openbsd. thanks for all who helped.
here's the lowdown:

partial diff follows:

 ifeq ($(shell uname), OpenBSD)
OS = OpenBSD
-   PICOLISP-FLAGS = -m32 -rdynamic
+   PICOLISP-FLAGS = -m32 -rdynamic -Wl,-E
LIB-FLAGS = -lc -lm
-   DYNAMIC-LIB-FLAGS = -m32 -shared -export-dynamic
+   DYNAMIC-LIB-FLAGS = -Wl,-E -Wl,-shared
STRIP = strip
 else




On Thu, Aug 12, 2010 at 2:41 PM, Edwin Eyan Moragas e...@yndy.org wrote:
 Hi Patrick,

 On Thu, Aug 12, 2010 at 6:59 AM, patrick keshishian pkesh...@gmail.com
wrote:
 i am stupid. the buffer used for the param to dlopen() was truncated.
 expanding it and passing the full absolute path, dlerror() returns
 Cannot load specified object.

 clues, pointers?

 You can help us by posting the code that does the dlopen()

  if (!(h = dlopen(/home/eyan/src/lib/ht, RTLD_LAZY |
 RTLD_GLOBAL))  ||  !(h = dlsym(h,p))) {
 printf(%s\n, dlerror());
 printf(%s\n, buf);
 return NO;
  }

 That error indicates that dependent libs of that lib aren't able to get
loaded.

 Try setting LD_DEBUG and see if that helps trace down the problem.

 --patrick



Re: ld necessary? (was Re: help on compile/link flags)

2010-08-12 Thread Edwin Eyan Moragas
On Thu, Aug 12, 2010 at 3:26 PM, patrick keshishian pkesh...@gmail.com wrote:

 It looks like your lib/ht has undefined references to all above
 symbols. You need to figure out where these are defined. Are they part
 of picolist or some other library built?

the undefined symbols are part of the main picoLisp functions.

i was able to build successfully by tweaking the compiler flags (see
other email).

thank you much!

/e



Re: OpenBSD Vim Programming FAQ

2010-08-12 Thread Tomas Vavrys
A lot of people has sent me their opinions or questions. Let's make it
clear. I don't want to do it Wiki-like, rather plain html page. It can
become manual page who knows... You can still help just by sending an
e-mail.

My goals are:

1) Make everything as simple as possible, but not simpler.
- Plain HTML page, easy to manage plugins, be able to get to work
almost immediately and become instantly efficient

2) STYLE(9) will be our bible

3) Standardization
I would like to discuss hotkey's and abbreviation's names, settings
which prefer more people and I also want to make basic settings as a
standard for OpenBSD programmers. (It'll be a very hard task.)

4) SnipMate snippets
SnipMate offers code snippets not only for C language, but I am going
to focus on C programming. SnipMate is easy to handle and I can create
some snippets according to STYLE(9) for start. Time will show what is
missing etc.

5) Other plugins
- C reference Manual, Cscope



ospf6ctl reload - ospf6d disapear

2010-08-12 Thread Xavier Beaudouin
Hi there,

I am using OpenBSD 4.7 (OpenBSD core-3.kazar.net 4.7 GENERIC.MP#449 i386).

I have a simple setup :


router-id 193.43.214.7
fib-update yes

redistribute 2001:67c:ec::5 # lo0
redistribute 2001:67c:ec:fffc::/64  # vlan56

# areas
area 0.0.0.0 {
interface lo0 {
passive
metric 1000
}

interface vlan722 { metric 100 }
}

When I add a redistribute subnet and interface xx { metric 100 }

the ospf6ctl reload... give me a :

Aug 12 12:15:46 core-4 ospf6d[31683]: fatal in rde: interface lost in rde
Aug 12 12:15:46 core-4 ospf6d[1609]: lost child: route decision engine exited

So I have to restart ospf6d manualy...

Maybe there is some issue inside the code ?

Sincerly,
Xavier



Re: OpenBSD Vim Programming FAQ

2010-08-12 Thread Ingo Schwarze
Tomas Vavrys wrote on Thu, Aug 12, 2010 at 09:52:57AM +0200:

 I don't want to do it

Don't talk about what you want to do, just do it.
When it's done, tell people to look at the *result*
and decide whether it is useful or useless.

Shut up and hack.

 2) STYLE(9) will be our bible

The style(9) manual is not a bible.  Sometimes, it is not followed
for good reasons.  You still need common sense.  Besides, it is
rarely updated.


Oh, and also note that OpenBSD and vim is a weird topic.
OpenBSD and nvi or OpenBSD and mg would seem more natural.
On the other hand, some people (including Marco) apparently
like the topic, so it may be useful.  But don't feel
disappointed if many people completely ignore your effort
because you are focussing on a non-standard combination.



Re: OBSD 4.7 and Via C7 motherboards problem

2010-08-12 Thread Toni Mueller
Hi,

On Sun, 01.08.2010 at 13:49:07 -0700, Peter Merritt pwmerr...@weirdwater.org 
wrote:
 I have a firewall that has been running several versions of OpenBSD
 successfully, the last being 4.6. After installing 4.7, I could not get
 the firewall to pass any traffic from the lan side.

I'm experiencing a very similar problem. My machines have trouble
running 4.7. No matter what I tried, I arrive at

memory address conflict 0xfb 0x100 or similar - it
scrolls by too fast before the screen goes blank, and I can only make
the machine responsive again by hitting the power button.

The miracle is: On some machines, there is absolutely no problem, but
on others, everything breaks. The machines themselves should be all of
exactly the same make, although different batches of it. On the
machines where the problem occurs, it even occurs with the bsd.rd
kernel. :/

Below you find a dmesg of one of the working machines (naturally, since
I couldn't get one out of the broken ones).


Kind regards,
--Toni++


OpenBSD 4.7 (GENERIC) #1: Sun May 30 16:44:59 CEST 2010
r...@w3.oeko.net:/usr/S/src.47/sys/arch/i386/compile/GENERIC
cpu0: VIA Eden Processor 1200MHz (CentaurHauls 686-class) 1.20 GHz
cpu0: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,CMOV,PAT,CFLUSH,ACPI,MMX,FXSR,SSE,SSE2,TM,SBF,SSE3,EST,TM2,xTPR
real mem  = 1005940736 (959MB)
avail mem = 965959680 (921MB)
mainbus0 at root
bios0 at mainbus0: AT/286+ BIOS, date 10/15/08, BIOS32 rev. 0 @ 0xf0010, SMBIOS 
rev. 2.5 @ 0xfc0c0 (47 entries)
bios0: vendor American Megatrends Inc. version 080014 date 10/15/2008
acpi0 at bios0: rev 0
acpi0: tables DSDT FACP APIC MCFG OEMB HPET SSDT
acpi0: wakeup devices PS2K(S3) PS2M(S3) USB1(S3) USB2(S3) USB3(S3) LAN1(S4) 
PCI1(S4) PCI2(S4) PCI3(S4) SLPB(S4) PWRB(S3)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee0: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: RNG AES AES-CTR SHA1 SHA256 RSA
cpu0: apic clock running at 99MHz
ioapic0 at mainbus0: apid 1 pa 0xfec0, version 3, 24 pins
acpihpet0 at acpi0: 14318179 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 1 (P0P1)
acpiprt2 at acpi0: bus 2 (P0P2)
acpicpu0 at acpi0: PSS
acpibtn0 at acpi0: SLPB
acpibtn1 at acpi0: PWRB
bios0: ROM list: 0xc/0xe600 0xce800/0x1000 0xcf800/0x1000 0xd0800/0x1000 
0xe7000/0x800!
cpu0: Enhanced SpeedStep 1198 MHz: speeds: 1200, 400 MHz
pci0 at mainbus0 bus 0: configuration mode 1 (bios)
pchb0 at pci0 dev 0 function 0 VIA CX700 Host rev 0x10
viaagp0 at pchb0: v3
agp0 at viaagp0: aperture at 0xf000, size 0x1000
pchb1 at pci0 dev 0 function 1 VIA CX700 Host rev 0x00
pchb2 at pci0 dev 0 function 2 VIA CX700 Host rev 0x00
pchb3 at pci0 dev 0 function 3 VIA CX700 Host rev 0x00
pchb4 at pci0 dev 0 function 4 VIA CX700 Host rev 0x00
pchb5 at pci0 dev 0 function 7 VIA CX700 Host rev 0x00
ppb0 at pci0 dev 1 function 0 VIA VT8377 AGP rev 0x00
pci1 at ppb0 bus 1
vga1 at pci1 dev 0 function 0 VIA S3 UniChrome Pro II IGP rev 0x03
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
rl0 at pci0 dev 8 function 0 Realtek 8139 rev 0x10: apic 1 int 16 (irq 10), 
address 44:4d:50:03:0e:d6
rlphy0 at rl0 phy 0: RTL internal PHY
rl1 at pci0 dev 11 function 0 Realtek 8139 rev 0x10: apic 1 int 19 (irq 11), 
address 44:4d:50:32:08:19
rlphy1 at rl1 phy 0: RTL internal PHY
pciide0 at pci0 dev 15 function 0 VIA CX700 IDE rev 0x00: ATA133, channel 0 
configured to compatibility, channel 1 configured to compatibility
pciide0: channel 0 disabled (no drives)
wd0 at pciide0 channel 1 drive 0: WDC WD800BEVE-00A0HT0
wd0: 16-sector PIO, LBA48, 76319MB, 156301488 sectors
wd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 5
uhci0 at pci0 dev 16 function 0 VIA VT83C572 USB rev 0x90: apic 1 int 20 (irq 
10)
ehci0 at pci0 dev 16 function 4 VIA VT6202 USB rev 0x90: apic 1 int 23 (irq 
11)
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 VIA EHCI root hub rev 2.00/1.00 addr 1
viapm0 at pci0 dev 17 function 0 VIA CX700 ISA rev 0x00
iic0 at viapm0
pchb6 at pci0 dev 17 function 7 VIA VX700 Host rev 0x00
ppb1 at pci0 dev 19 function 0 VIA CX700 Host rev 0x00
pci2 at ppb1 bus 2
azalia0 at pci2 dev 1 function 0 VIA HD Audio rev 0x10: apic 1 int 17 (irq 5)
azalia0: codecs: VIA/0x1708
audio0 at azalia0
usb1 at uhci0: USB revision 1.0
uhub1 at usb1 VIA UHCI root hub rev 1.00/1.00 addr 1
isa0 at mainbus0
isadma0 at isa0
com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
com1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo
pckbc0 at isa0 port 0x60/5
pcppi0 at isa0 port 0x61
midi0 at pcppi0: PC speaker
spkr0 at pcppi0
lpt0 at isa0 port 0x378/4 irq 7
wbsio0 at isa0 port 0x4e/2: W83697HF rev 0x12
wbsio0 port 0xa60/2 not configured
npx0 at isa0 port 0xf0/16: reported by CPUID; using exception 16
mtrr: Pentium Pro MTRR support
vscsi0 at root
scsibus0 at vscsi0: 256 targets
softraid0 at root
root on wd0a swap on wd0b dump on wd0b



Conquiste Novos Clientes - 62 Listas segmentadas de e-mails com 7.318.573 e-mails

2010-08-12 Thread Divulgue seus negocios de forma facil
 Caso nco esteja visualizando esse e-mail, veja na versco online
62 Tipos de listas diferentes contendo mais de 7.318.573 e-mails.
Divulgue seus produtos e Servigos pela Internet de modo FACIL e
ECONTMICO.
TODAS AS LISTAS EM ATE 12 X NO CARTCO DE CRIDITO !

Promogco Exclusiva:
Compre qualquer lista acima de R$ 140,00 e
ganhe a lista segmentada E-mail Marketing Empresarial 2010

Conhega os nossos produtos e as nossas Promogues

Conheca nossos produtos, Acesse nossa Loja Virtual
Conheca nossos produtos, Acesse nossa Loja Virtual
Conheca nossos produtos, Acesse nossa Loja Virtual
Conheca nossos produtos, Acesse nossa Loja Virtual



Nco apoiamos e somos contra a pratica de SPAM.
Agradecemos muito por ter visualizado nossa mensagem.

Este e-mail i enviado de acordo com o Guia de Boas Maneiras para e-mail
marketing da ABEMD -
Associagco Brasileira de Marketing Direto.

Esse e-mail foi enviado para: m...@openbsd.org.
Caso nco queira mais receber nossos e-mails com a divulgagco de produtos
e servigos, por gentileza, clique no link ao lado para ser removido da
nossa base de dados. Eu desejo sair da lista.



[IMAGE]



Re: OpenBSD Vim Programming FAQ

2010-08-12 Thread Tomas Vavrys
Thank you for your point. Unfortunately there is at least 7 people who
would like to see some tutorial. I am not a developer so I didn't know
about the style(9). Anyways, it's not about style(9). It's about people,
being more productive during programming, collecting habbits and tips
from OpenBSD programmers. It won't be perfect but I enjoy it.

2010/8/12 Ingo Schwarze schwa...@usta.de:
 Tomas Vavrys wrote on Thu, Aug 12, 2010 at 09:52:57AM +0200:

 I don't want to do it

 Don't talk about what you want to do, just do it.
 When it's done, tell people to look at the *result*
 and decide whether it is useful or useless.

 Shut up and hack.

 2) STYLE(9) will be our bible

 The style(9) manual is not a bible. B Sometimes, it is not followed
 for good reasons. B You still need common sense. B Besides, it is
 rarely updated.


 Oh, and also note that OpenBSD and vim is a weird topic.
 OpenBSD and nvi or OpenBSD and mg would seem more natural.
 On the other hand, some people (including Marco) apparently
 like the topic, so it may be useful. B But don't feel
 disappointed if many people completely ignore your effort
 because you are focussing on a non-standard combination.



dmesg of Dell Optiplex 780 + problem with xlock(1)

2010-08-12 Thread Tomas Bodzar
Hi all,

bellow is dmesg of OpenBSD running on corporate desktop. Everything is
running fine including web camera or USB headphones. There is just one
small issue. I can't use xlock(1) for locking of screen. After I use
xlock(1) it's not able to wake up anymore. I will investigate later.

OpenBSD 5.8 (GENERIC.MP) #356: Mon Aug  9 00:28:02 MDT 2010
dera...@i386.openbsd.org:/usr/src/sys/arch/i386/compile/GENERIC.MP
RTC BIOS diagnostic error 11memory_size
cpu0: Intel(R) Core(TM)2 Duo CPU E7500 @ 2.93GHz (GenuineIntel
686-class) 2.93 GHz
cpu0:
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUS
H,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3
,CX16,xTPR,PDCM,SSE4.1,XSAVE
real mem  = 3487125504 (3325MB)
avail mem = 3420106752 (3261MB)
mainbus0 at root
bios0 at mainbus0: AT/286+ BIOS, date 02/13/10, BIOS32 rev. 0 @
0xffea0, SMBIOS rev. 2.5 @ 0xf0450 (82 entries)
bios0: vendor Dell Inc. version A03 date 02/13/2010
bios0: Dell Inc. OptiPlex 780
acpi0 at bios0: rev 2
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP SSDT APIC BOOT ASF! MCFG HPET DMAR SLIC SSDT SSDT
SSDT
acpi0: wakeup devices VBTN(S4) PCI0(S5) PCI4(S5) PCI3(S5) PCI1(S5)
PCI5(S5) PCI6(S5) MOU_(S3) USB0(S3) USB1(S3) USB2(S3) USB3(S3)
USB4(S3) USB5(S3)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee0: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: apic clock running at 265MHz
cpu1 at mainbus0: apid 1 (application processor)
cpu1: Intel(R) Core(TM)2 Duo CPU E7500 @ 2.93GHz (GenuineIntel
686-class) 2.93 GHz
cpu1:
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUS
H,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3
,CX16,xTPR,PDCM,SSE4.1,XSAVE
ioapic0 at mainbus0: apid 8 pa 0xfec0, version 20, 24 pins
ioapic0: misconfigured as apic 0, remapped to apid 8
acpihpet0 at acpi0: 14318179 Hz
acpiprt0 at acpi0: bus 4 (PCI4)
acpiprt1 at acpi0: bus 2 (PCI2)
acpiprt2 at acpi0: bus 3 (PCI3)
acpiprt3 at acpi0: bus 1 (PCI1)
acpiprt4 at acpi0: bus -1 (PCI5)
acpiprt5 at acpi0: bus -1 (PCI6)
acpiprt6 at acpi0: bus 0 (PCI0)
acpicpu0 at acpi0: C1, PSS
acpicpu1 at acpi0: C1, PSS
acpibtn0 at acpi0: VBTN
bios0: ROM list: 0xc/0x1 0xd/0x2000! 0xd2000/0x2800!
0xd4800/0x3800
cpu0: Enhanced SpeedStep 2926 MHz: speeds: 2933, 2667, 2400, 2133,
1867, 1600 MHz
pci0 at mainbus0 bus 0: configuration mode 1 (bios)
pchb0 at pci0 dev 0 function 0 Intel Q45 Host rev 0x03
ppb0 at pci0 dev 1 function 0 Intel Q45 PCIE rev 0x03: apic 8 int 16 (irq
11)
pci1 at ppb0 bus 1
vga1 at pci1 dev 0 function 0 ATI Radeon HD 3470 rev 0x00
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
radeondrm0 at vga1: apic 8 int 16 (irq 11)
drm0 at radeondrm0
em0 at pci0 dev 25 function 0 Intel ICH10 D BM LM rev 0x02: apic 8
int 21 (irq 10), address XX:XX:XX:XX:XX:XX
uhci0 at pci0 dev 26 function 0 Intel 82801JD USB rev 0x02: apic 8
int 16 (irq 11)
uhci1 at pci0 dev 26 function 1 Intel 82801JD USB rev 0x02: apic 8
int 17 (irq 9)
uhci2 at pci0 dev 26 function 2 Intel 82801JD USB rev 0x02: apic 8
int 22 (irq 3)
ehci0 at pci0 dev 26 function 7 Intel 82801JD USB rev 0x02: apic 8
int 22 (irq 3)
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 Intel EHCI root hub rev 2.00/1.00 addr 1
azalia0 at pci0 dev 27 function 0 Intel 82801JD HD Audio rev 0x02:
apic 8 int 16 (irq 11)
azalia0: codecs: Analog Devices AD1984A
audio0 at azalia0
ppb1 at pci0 dev 28 function 0 Intel 82801JD PCIE rev 0x02: apic 8
int 16 (irq 11)
pci2 at ppb1 bus 2
ppb2 at pci0 dev 28 function 1 Intel 82801JD PCIE rev 0x02: apic 8
int 17 (irq 9)
pci3 at ppb2 bus 3
uhci3 at pci0 dev 29 function 0 Intel 82801JD USB rev 0x02: apic 8
int 23 (irq 10)
uhci4 at pci0 dev 29 function 1 Intel 82801JD USB rev 0x02: apic 8
int 17 (irq 9)
uhci5 at pci0 dev 29 function 2 Intel 82801JD USB rev 0x02: apic 8
int 18 (irq 10)
ehci1 at pci0 dev 29 function 7 Intel 82801JD USB rev 0x02: apic 8
int 23 (irq 10)
usb1 at ehci1: USB revision 2.0
uhub1 at usb1 Intel EHCI root hub rev 2.00/1.00 addr 1
ppb3 at pci0 dev 30 function 0 Intel 82801BA Hub-to-PCI rev 0xa2
pci4 at ppb3 bus 4
pcib0 at pci0 dev 31 function 0 Intel 82801JDO LPC rev 0x02
ahci0 at pci0 dev 31 function 2 Intel 82801JD AHCI rev 0x02: apic 8
int 18 (irq 10), AHCI 1.2
ahci0: PHY offline on port 2
ahci0: PHY offline on port 3
scsibus0 at ahci0: 32 targets
sd0 at scsibus0 targ 0 lun 0: ATA, WDC WD2500AAJS-7, 02.0 SCSI3 0/direct
fixed
sd0: 238418MB, 512 bytes/sec, 488281250 sec total
cd0 at scsibus0 targ 1 lun 0: TSSTcorp, DVD+-RW TS-H653G, DW10 ATAPI
5/cdrom removable
ichiic0 at pci0 dev 31 function 3 Intel 82801JD SMBus rev 0x02: apic
8 int 18 (irq 10)
iic0 at ichiic0
spdmem0 at iic0 addr 0x50: 2GB DDR3 SDRAM PC3-10600
spdmem1 at iic0 addr 0x52: 2GB DDR3 SDRAM PC3-10600
usb2 at uhci0: USB revision 1.0
uhub2 at usb2 Intel UHCI root hub rev 1.00/1.00 addr 1
usb3 at uhci1: USB revision 1.0

Re: Random core dumped with gtk+2 packages

2010-08-12 Thread Ulrich Kahl
Am Wed, 11 Aug 2010 20:00:28 + (UTC)
schrieb Daniel B. dan...@bolgh.eng.br :
 On Wed, 11 Aug 2010, Ulrich Kahl wrote:
 Am Wed, 11 Aug 2010 02:21:44 + (UTC)
 schrieb Daniel B. dan...@bolgh.eng.br :

[...]
 Do you use the utf-8 locale (en_US.UTF-8)?
 
 Yes. But actually it doesn't matter. The dumps occur while reading
 the mp3 files at start in the case of audio/easytag, and when trying
 to work with multiple files in the case of audio/tagtool.
 
 This is why I think it's a common issue.

Does it still happen, when you don't use UTF-8, but 
ISO8859-something?

Ulrich



Re: OBSD 4.7 and Via C7 motherboards problem

2010-08-12 Thread Stuart Henderson
Guessing based on very little information, but they probably have
different BIOSes.


On 2010-08-12, Toni Mueller openbsd-m...@oeko.net wrote:
 Hi,

 On Sun, 01.08.2010 at 13:49:07 -0700, Peter Merritt 
 pwmerr...@weirdwater.org wrote:
 I have a firewall that has been running several versions of OpenBSD
 successfully, the last being 4.6. After installing 4.7, I could not get
 the firewall to pass any traffic from the lan side.

 I'm experiencing a very similar problem. My machines have trouble
 running 4.7. No matter what I tried, I arrive at

 memory address conflict 0xfb 0x100 or similar - it
 scrolls by too fast before the screen goes blank, and I can only make
 the machine responsive again by hitting the power button.

 The miracle is: On some machines, there is absolutely no problem, but
 on others, everything breaks. The machines themselves should be all of
 exactly the same make, although different batches of it. On the
 machines where the problem occurs, it even occurs with the bsd.rd
 kernel. :/

 Below you find a dmesg of one of the working machines (naturally, since
 I couldn't get one out of the broken ones).


 Kind regards,
 --Toni++


 OpenBSD 4.7 (GENERIC) #1: Sun May 30 16:44:59 CEST 2010
 r...@w3.oeko.net:/usr/S/src.47/sys/arch/i386/compile/GENERIC
 cpu0: VIA Eden Processor 1200MHz (CentaurHauls 686-class) 1.20 GHz
 cpu0: 
 FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,CMOV,PAT,CFLUSH,ACPI,MMX,FXSR,SSE,SSE2,TM,SBF,SSE3,EST,TM2,xTPR
 real mem  = 1005940736 (959MB)
 avail mem = 965959680 (921MB)
 mainbus0 at root
 bios0 at mainbus0: AT/286+ BIOS, date 10/15/08, BIOS32 rev. 0 @ 0xf0010, 
 SMBIOS rev. 2.5 @ 0xfc0c0 (47 entries)
 bios0: vendor American Megatrends Inc. version 080014 date 10/15/2008
 acpi0 at bios0: rev 0
 acpi0: tables DSDT FACP APIC MCFG OEMB HPET SSDT
 acpi0: wakeup devices PS2K(S3) PS2M(S3) USB1(S3) USB2(S3) USB3(S3) LAN1(S4) 
 PCI1(S4) PCI2(S4) PCI3(S4) SLPB(S4) PWRB(S3)
 acpitimer0 at acpi0: 3579545 Hz, 24 bits
 acpimadt0 at acpi0 addr 0xfee0: PC-AT compat
 cpu0 at mainbus0: apid 0 (boot processor)
 cpu0: RNG AES AES-CTR SHA1 SHA256 RSA
 cpu0: apic clock running at 99MHz
 ioapic0 at mainbus0: apid 1 pa 0xfec0, version 3, 24 pins
 acpihpet0 at acpi0: 14318179 Hz
 acpiprt0 at acpi0: bus 0 (PCI0)
 acpiprt1 at acpi0: bus 1 (P0P1)
 acpiprt2 at acpi0: bus 2 (P0P2)
 acpicpu0 at acpi0: PSS
 acpibtn0 at acpi0: SLPB
 acpibtn1 at acpi0: PWRB
 bios0: ROM list: 0xc/0xe600 0xce800/0x1000 0xcf800/0x1000 0xd0800/0x1000 
 0xe7000/0x800!
 cpu0: Enhanced SpeedStep 1198 MHz: speeds: 1200, 400 MHz
 pci0 at mainbus0 bus 0: configuration mode 1 (bios)
 pchb0 at pci0 dev 0 function 0 VIA CX700 Host rev 0x10
 viaagp0 at pchb0: v3
 agp0 at viaagp0: aperture at 0xf000, size 0x1000
 pchb1 at pci0 dev 0 function 1 VIA CX700 Host rev 0x00
 pchb2 at pci0 dev 0 function 2 VIA CX700 Host rev 0x00
 pchb3 at pci0 dev 0 function 3 VIA CX700 Host rev 0x00
 pchb4 at pci0 dev 0 function 4 VIA CX700 Host rev 0x00
 pchb5 at pci0 dev 0 function 7 VIA CX700 Host rev 0x00
 ppb0 at pci0 dev 1 function 0 VIA VT8377 AGP rev 0x00
 pci1 at ppb0 bus 1
 vga1 at pci1 dev 0 function 0 VIA S3 UniChrome Pro II IGP rev 0x03
 wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
 wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
 rl0 at pci0 dev 8 function 0 Realtek 8139 rev 0x10: apic 1 int 16 (irq 10), 
 address 44:4d:50:03:0e:d6
 rlphy0 at rl0 phy 0: RTL internal PHY
 rl1 at pci0 dev 11 function 0 Realtek 8139 rev 0x10: apic 1 int 19 (irq 
 11), address 44:4d:50:32:08:19
 rlphy1 at rl1 phy 0: RTL internal PHY
 pciide0 at pci0 dev 15 function 0 VIA CX700 IDE rev 0x00: ATA133, channel 0 
 configured to compatibility, channel 1 configured to compatibility
 pciide0: channel 0 disabled (no drives)
 wd0 at pciide0 channel 1 drive 0: WDC WD800BEVE-00A0HT0
 wd0: 16-sector PIO, LBA48, 76319MB, 156301488 sectors
 wd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 5
 uhci0 at pci0 dev 16 function 0 VIA VT83C572 USB rev 0x90: apic 1 int 20 
 (irq 10)
 ehci0 at pci0 dev 16 function 4 VIA VT6202 USB rev 0x90: apic 1 int 23 (irq 
 11)
 usb0 at ehci0: USB revision 2.0
 uhub0 at usb0 VIA EHCI root hub rev 2.00/1.00 addr 1
 viapm0 at pci0 dev 17 function 0 VIA CX700 ISA rev 0x00
 iic0 at viapm0
 pchb6 at pci0 dev 17 function 7 VIA VX700 Host rev 0x00
 ppb1 at pci0 dev 19 function 0 VIA CX700 Host rev 0x00
 pci2 at ppb1 bus 2
 azalia0 at pci2 dev 1 function 0 VIA HD Audio rev 0x10: apic 1 int 17 (irq 
 5)
 azalia0: codecs: VIA/0x1708
 audio0 at azalia0
 usb1 at uhci0: USB revision 1.0
 uhub1 at usb1 VIA UHCI root hub rev 1.00/1.00 addr 1
 isa0 at mainbus0
 isadma0 at isa0
 com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
 com1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo
 pckbc0 at isa0 port 0x60/5
 pcppi0 at isa0 port 0x61
 midi0 at pcppi0: PC speaker
 spkr0 at pcppi0
 lpt0 at isa0 port 0x378/4 irq 7
 wbsio0 at isa0 port 0x4e/2: W83697HF rev 0x12
 wbsio0 port 0xa60/2 not 

Re: ospf6ctl reload - ospf6d disapear

2010-08-12 Thread Stuart Henderson
You should upgrade to more recent code if you're using ospf6d,
there have been loads of ospf6d fixes since 4.7,


On 2010-08-12, Xavier Beaudouin k...@oav.net wrote:
 Hi there,

 I am using OpenBSD 4.7 (OpenBSD core-3.kazar.net 4.7 GENERIC.MP#449 i386).

 I have a simple setup :


 router-id 193.43.214.7
 fib-update yes

 redistribute 2001:67c:ec::5 # lo0
 redistribute 2001:67c:ec:fffc::/64  # vlan56

 # areas
 area 0.0.0.0 {
 interface lo0 {
 passive
 metric 1000
 }

 interface vlan722 { metric 100 }
 }

 When I add a redistribute subnet and interface xx { metric 100 }

 the ospf6ctl reload... give me a :

 Aug 12 12:15:46 core-4 ospf6d[31683]: fatal in rde: interface lost in rde
 Aug 12 12:15:46 core-4 ospf6d[1609]: lost child: route decision engine exited

 So I have to restart ospf6d manualy...

 Maybe there is some issue inside the code ?

 Sincerly,
 Xavier



atactl and SATA HDD in ACHI mode

2010-08-12 Thread Allan Liblik

Hei!

I can't get SATA disks smart status using atactl command. atactl with 
identify command shows disk model, serial correctly, but readattr 
command don't get nothing and smartstatus returns always No SMART 
threshold exceeded, irrespective of real SMART values.


NetBSD shows, that disk sd2 have exceeded SMART id5, reallocated sector 
count, value and computer BIOS shows, that SMART is bad, too.


Thanks

Allan Liblik



# /sbin/atactl sd2 readattr

# /sbin/atactl sd2 smartstatus
No SMART threshold exceeded

# /sbin/atactl sd2 smartread
Off-line data collection:
status: completed ok
activity completion time: 600 seconds
capabilities:
execute immediate
read scanning
self-test routines
Self-test execution:
status: completed ok or not started
recommended polling time:
short routine: 1 minutes
extended routine: 175 minutes
SMART capabilities:
saving SMART data
enable/disable attribute autosave
Error logging: supported

# /sbin/atactl sd2 identify
Model: ST31000528AS, Rev: CC38, Serial #: 5VP2JJFC
Device type: ATA, fixed
Cylinders: 16383, heads: 16, sec/track: 63, total sectors: 1953525168
Device capabilities:
ATA standby timer values
IORDY operation
IORDY disabling
Device supports the following standards:
ATA-4 ATA-5 ATA-6 ATA-7 ATA-8
Master password revision code 0xfffe
Device supports the following command sets:
READ BUFFER command
WRITE BUFFER command
Host Protected Area feature set
Read look-ahead
Write cache
Power Management feature set
Security Mode feature set
SMART feature set
Flush Cache Ext command
Flush Cache command
Device Configuration Overlay feature set
48bit address feature set
Automatic Acoustic Management feature set
Set Max security extension commands
DOWNLOAD MICROCODE command
SMART self-test
SMART error logging
Device has enabled the following command sets/features:
READ BUFFER command
WRITE BUFFER command
Host Protected Area feature set
Read look-ahead
Write cache
Power Management feature set
SMART feature set
Flush Cache Ext command
Flush Cache command
Device Configuration Overlay feature set
48bit address feature set
Automatic Acoustic Management feature set
DOWNLOAD MICROCODE command

dmesg:
OpenBSD 4.7 (GENERIC) #558: Wed Mar 17 20:46:15 MDT 2010
dera...@i386.openbsd.org:/usr/src/sys/arch/i386/compile/GENERIC
cpu0: Intel(R) Celeron(R) CPU 420 @ 1.60GHz (GenuineIntel 686-class) 
1.61 GHz
cpu0: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,TM,SBF,SSE3,MWAIT,DS-CPL,TM2,CX16,xTPR

real mem  = 536236032 (511MB)
avail mem = 510861312 (487MB)
mainbus0 at root
bios0 at mainbus0: AT/286+ BIOS, date 12/19/07, BIOS32 rev. 0 @ 0xf0010, 
SMBIOS rev. 2.5 @ 0xfc410 (27 entries)

bios0: vendor American Megatrends Inc. version V090L date 12/19/2007
bios0: Intel SS4200-E
acpi0 at bios0: rev 2
acpi0: tables DSDT FACP APIC MCFG OEMB
acpi0: wakeup devices P0P2(S4) P0P1(S4) PS2K(S4) PS2M(S4) MC97(S4) 
P0P4(S4) P0P5(S4) P0P6(S4) P0P7(S4) P0P8(S4) P0P9(S4) USB0(S3) USB1(S3) 
USB2(S3) USB3(S3) EUSB

(S3)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee0: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: apic clock running at 200MHz
ioapic0 at mainbus0: apid 1 pa 0xfec0, version 20, 24 pins
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 1 (P0P4)
acpiprt2 at acpi0: bus 2 (P0P5)
acpiprt3 at acpi0: bus 3 (P0P6)
acpiprt4 at acpi0: bus -1 (P0P7)
acpicpu0 at acpi0
acpibtn0 at acpi0: PWRB
bios0: ROM list: 0xc/0xf000
pci0 at mainbus0 bus 0: configuration mode 1 (bios)
pchb0 at pci0 dev 0 function 0 Intel 82945G Host rev 0x02
ppb0 at pci0 dev 28 function 0 Intel 82801GB PCIE rev 0x01: apic 1 int 
16 (irq 10)

pci1 at ppb0 bus 1
em0 at pci1 dev 0 function 0 Intel PRO/1000MT (82573E) rev 0x03: apic 
1 int 16 (irq 10), address 00:15:17:32:1a:73
ppb1 at pci0 dev 28 function 1 Intel 82801GB PCIE rev 0x01: apic 1 int 
17 (irq 11)

pci2 at ppb1 bus 2
vga1 at pci2 dev 0 function 0 ATI Radeon HD 4350 rev 0x00
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
azalia0 at pci2 dev 0 function 1 ATI Radeon HD 4000 HD Audio rev 0x00: 
apic 1 int 18 (irq 5)

azalia0: no supported codecs
azalia0: initialization failure, detaching
ppb2 at pci0 dev 28 function 2 Intel 82801GB PCIE rev 0x01: apic 1 int 
18 (irq 5)

pci3 at ppb2 bus 3
sili0 at pci3 dev 0 function 0 CMD Technology SiI3132 SATA rev 0x01: 
apic 1 int 18 (irq 5)

scsibus0 at sili0: 2 targets
uhci0 at pci0 dev 29 function 0 Intel 82801GB USB rev 0x01: apic 1 int 
23 (irq 7)
uhci1 at pci0 dev 29 function 1 Intel 82801GB USB rev 0x01: apic 1 int 
19 

Re: OpenBSD Vim Programming FAQ

2010-08-12 Thread Jiri B.

 Date: Thu, 12 Aug 2010 13:07:47 +0200
 Subject: Re: OpenBSD Vim Programming FAQ
 From: vav...@cleancode.cz
 To: misc@openbsd.org

 Thank you for your point. Unfortunately there is at least 7 people who
 would like to see some tutorial. I am not a developer so I didn't know
 about the style(9). Anyways, it's not about style(9). It's about people,
 being more productive during programming, collecting habbits and tips
 from OpenBSD programmers. It won't be perfect but I enjoy it.

So first learn not to top post, it's about style :P

jirib



Re: dmesg of Dell Optiplex 780 + problem with xlock(1)

2010-08-12 Thread SJP Lists
On 12 August 2010 21:15, Tomas Bodzar tomas.bod...@gmail.com wrote:
 Hi all,

 bellow is dmesg of OpenBSD running on corporate desktop. Everything is
 running fine including web camera or USB headphones. There is just one
 small issue. I can't use xlock(1) for locking of screen. After I use
 xlock(1) it's not able to wake up anymore. I will investigate later.

 OpenBSD 5.8 (GENERIC.MP) #356: Mon Aug  9 00:28:02 MDT 2010

Wow OpenBSD 5.8.  Man that REALLY must have been one hell of a bender
I had last Friday night.



Re: atactl and SATA HDD in ACHI mode

2010-08-12 Thread Stuart Henderson
On 2010-08-12, Allan Liblik al...@tarivara.ee wrote:
 Hei!

 I can't get SATA disks smart status using atactl command. atactl with 
 identify command shows disk model, serial correctly, but readattr 
 command don't get nothing and smartstatus returns always No SMART 
 threshold exceeded, irrespective of real SMART values.

 NetBSD shows, that disk sd2 have exceeded SMART id5, reallocated sector 
 count, value and computer BIOS shows, that SMART is bad, too.

hmm. I _am_ getting status from drives on an SS4200-E:

st...@hutch:~:11$ sudo atactl sd1 readattr 
Attributes table revision: 16
ID  Attribute name  Threshold   Value   Raw
  1 Raw Read Error Rate   51100 0x
  3 Spin Up Time  11 80 0x1a72
  4 Start/Stop Count   0100 0x000c
  5 Reallocated Sector Count  10100 0x
  7 Seek Error Rate   51253 0x
  8 Seek Time Performance 15100 0x
  9 Power-On Hours Count   0 98 0x2053
 10 Spin Retry Count  51100 0x
 11 Calibration Retry Count0100 0x
 12 Device Power Cycle Count   0100 0x000c
 13 Soft Read Error Rate   0100 0x
183 Unknown0100 0x
184 Unknown0100 0x
187 Unknown0100 0x
188 Unknown0100 0x
190 Airflow Temperature0 74 0x1a0c001a
194 Temperature0 73 0x250c001b
195 Hardware ECC Recovered 0100 0x0018c1a7
196 Reallocation Event Count   0100 0x
197 Current Pending Sector Count   0100 0x
198 Off-Line Scan Uncorrectable Sect   0100 0x
199 Ultra DMA CRC Error Count  0100 0x
200 Write Error Rate   0100 0x
201 Soft Read Error Rate   0253 0x

I'm running a newer OS version, I don't recall changes in this area
but may have missed something..

Note that smartstatus does not look at the *values*, it asks the drive
if it thinks it is bad. This can come back ok while values are still above
threshold. I'm not sure what the bios looks at. Though the lack of response
from your readattr command definitely indicates something not right.

I suspect it's related to your disks rather than the machine/controller.



OpenBSD 4.7-current (GENERIC) #91: Thu Jul 15 03:04:22 MDT 2010
dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC
real mem = 2146238464 (2046MB)
avail mem = 2075283456 (1979MB)
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.5 @ 0xfc410 (27 entries)
bios0: vendor American Megatrends Inc. version V090L date 12/19/2007
bios0: Intel SS4200-E
acpi0 at bios0: rev 2
acpi0: tables DSDT FACP APIC MCFG OEMB
acpi0: wakeup devices P0P2(S4) P0P1(S4) PS2K(S4) PS2M(S4) MC97(S4) P0P4(S4) 
P0P5(S4) P0P6(S4) P0P7(S4) P0P8(S4) P0P9(S4) USB0(S3) USB1(S3) USB2(S3) 
USB3(S3) EUSB(S3)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee0: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Celeron(R) CPU 420 @ 1.60GHz, 1600.20 MHz
cpu0: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,TM,SBF,SSE3,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,NXE,LONG
cpu0: 512KB 64b/line 2-way L2 cache
cpu0: apic clock running at 200MHz
ioapic0 at mainbus0: apid 1 pa 0xfec0, version 20, 24 pins
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 1 (P0P4)
acpiprt2 at acpi0: bus -1 (P0P5)
acpiprt3 at acpi0: bus 2 (P0P6)
acpiprt4 at acpi0: bus -1 (P0P7)
acpicpu0 at acpi0
acpibtn0 at acpi0: PWRB
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 Intel 82945G Host rev 0x02
ppb0 at pci0 dev 28 function 0 Intel 82801GB PCIE rev 0x01: apic 1 int 16 
(irq 10)
pci1 at ppb0 bus 1
em0 at pci1 dev 0 function 0 Intel PRO/1000MT (82573E) rev 0x03: apic 1 int 
16 (irq 10), address 00:15:17:31:e4:d5
ppb1 at pci0 dev 28 function 2 Intel 82801GB PCIE rev 0x01: apic 1 int 18 
(irq 11)
pci2 at ppb1 bus 2
sili0 at pci2 dev 0 function 0 CMD Technology SiI3132 SATA rev 0x01: apic 1 
int 18 (irq 11)
scsibus0 at sili0: 2 targets
uhci0 at pci0 dev 29 function 0 Intel 82801GB USB rev 0x01: apic 1 int 23 
(irq 5)
uhci1 at pci0 dev 29 function 1 Intel 82801GB USB rev 0x01: apic 1 int 

Re: dmesg of Dell Optiplex 780 + problem with xlock(1)

2010-08-12 Thread Tomas Bodzar
On Thu, Aug 12, 2010 at 3:25 PM, SJP Lists sjp.li...@flashbsd.net wrote:
 On 12 August 2010 21:15, Tomas Bodzar tomas.bod...@gmail.com wrote:
 Hi all,

 bellow is dmesg of OpenBSD running on corporate desktop. Everything is
 running fine including web camera or USB headphones. There is just one
 small issue. I can't use xlock(1) for locking of screen. After I use
 xlock(1) it's not able to wake up anymore. I will investigate later.

 OpenBSD 5.8 (GENERIC.MP) #356: Mon Aug B 9 00:28:02 MDT 2010

 Wow OpenBSD 5.8. B Man that REALLY must have been one hell of a bender
 I had last Friday night.


Ups. Some bug during copy/paste :-)





--
bIf youbre good at something, never do it for free.bB bThe Joker



Spamd traplist.gz

2010-08-12 Thread Gaby Vanhegan
Are there any problems at the moment with the spamd data files that are hosted
in various locations?  I'm getting lots of FTP errors:

On 12 Aug 2010, at 16:01, Cron Daemon wrote:

 ftp: connect: Connection timed out
 ftp: connect: Connection timed out
 ftp: connect: Connection timed out
 ftp: connect: Connection timed out

From machines at various sites, pointing to an error somewhere with the master
servers.  Running spamd-setup in debug mode:

# /usr/libexec/spamd-setup -d
Getting http://www.openbsd.org/spamd/traplist.gz
ftp: connect: Connection timed out
blacklist uatraps 0 entries
Getting http://www.openbsd.org/spamd/nixspam.gz
ftp: connect: Connection timed out
blacklist nixspam 0 entries
Getting http://www.openbsd.org/spamd/chinacidr.txt.gz
...

So something somewhere is amiss.  A firewall upgrade that blocked ports 20/21
in error perhaps?

G.

--
Junkets for bunterish lickspittles since 1998!
http://www.playr.co.uk/



Re: dmesg of Dell Optiplex 780 + problem with xlock(1)

2010-08-12 Thread Daniel Ouellet

OpenBSD 5.8 (GENERIC.MP) #356: Mon Aug  9 00:28:02 MDT 2010

  ^^^

 dera...@i386.openbsd.org:/usr/src/sys/arch/i386/compile/GENERIC.MP


Really?

Unless I am mistaken, that should be in 5 years from now. Can I get a 
turn in your time machine and get the next winning loto numbers so that 
I can just do OpenBSD and not have to work anymore...


I would even share the winning with you and give a big chunk to the 
project as well so that a bunch of other guys can do what they love too!




Re: Spamd traplist.gz

2010-08-12 Thread Janusz Gumkowski
On Thu, Aug 12, 2010 at 04:14:25PM +0100, Gaby Vanhegan wrote:
 Are there any problems at the moment with the spamd data files that are hosted
 in various locations?  I'm getting lots of FTP errors:
 
 On 12 Aug 2010, at 16:01, Cron Daemon wrote:
 
  ftp: connect: Connection timed out
  ftp: connect: Connection timed out
  ftp: connect: Connection timed out
  ftp: connect: Connection timed out
 
 From machines at various sites, pointing to an error somewhere with the master
 servers.  Running spamd-setup in debug mode:
 
 # /usr/libexec/spamd-setup -d
 Getting http://www.openbsd.org/spamd/traplist.gz
 ftp: connect: Connection timed out
 blacklist uatraps 0 entries
 Getting http://www.openbsd.org/spamd/nixspam.gz
 ftp: connect: Connection timed out
 blacklist nixspam 0 entries
 Getting http://www.openbsd.org/spamd/chinacidr.txt.gz
 ...
 
 So something somewhere is amiss.  A firewall upgrade that blocked ports 20/21
 in error perhaps?
 

It's a http:// address, so no FTP there.  Just www.openbsd.org being unreachable
on port 80, also for me for few hours now.
I can ping it, though.


-- 
Janusz Gumkowski
http://www.am.torun.pl/~ja



Re: dmesg of Dell Optiplex 780 + problem with xlock(1)

2010-08-12 Thread Tomas Bodzar
On Thu, Aug 12, 2010 at 4:11 PM, Daniel Ouellet dan...@presscom.net wrote:
 OpenBSD 5.8 (GENERIC.MP) #356: Mon Aug B 9 00:28:02 MDT 2010

 B  B  B  B  B ^^^

 B  B  dera...@i386.openbsd.org:/usr/src/sys/arch/i386/compile/GENERIC.MP

 Really?

 Unless I am mistaken, that should be in 5 years from now. Can I get a turn
 in your time machine and get the next winning loto numbers so that I can
 just do OpenBSD and not have to work anymore...

Really sorry to all. I uncovered black secret of this project and
showed near future with flash/skype/zfs/dtrace/whatever enabled
version :-P :D



 I would even share the winning with you and give a big chunk to the project
 as well so that a bunch of other guys can do what they love too!





--
bIf youbre good at something, never do it for free.bB bThe Joker



Newsletter Agosto

2010-08-12 Thread Novart
  A Novart esta no Facebook. Acompanhe aqui todas as novidades...


Download Software NOVART


  A Novart esta presente tambim em

  Esta mensagem i enviada sob a nova legislagco sobre correio Electrsnico,
Secgco 301, Paragrafo (a) (2) (c) Decreto S 1618,
  Titulo Terceiro aprovado pelo 105: Congresso Base
das Normativas Internacionais sobre o SPAM.
 Um e-mail nco podera ser considerado SPAM
quando inclui uma forma de ser removido.
   Para remover o seu e-mail, devolva-nos uma mensagem para
nov...@novart.pt com a palavra 'REMOVER' na linha de assunto.
  In you want to be removed from the list please send us amessage
to nov...@novart.pt with the word 'REMOVE' in subject.

[demime 1.01d removed an attachment of type image/png which had a name of 
image[2].png]

[demime 1.01d removed an attachment of type image/png which had a name of 
image[8].png]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
Facebook_1[3].jpg]

[demime 1.01d removed an attachment of type image/png which had a name of 
image[10].png]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
newsletter9[9].jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
TWITER[4].jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
myspace[5].jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
Hi5[5].jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
netlog[5].jpg]



Re: Random core dumped with gtk+2 packages

2010-08-12 Thread Daniel B.
On Thu, 12 Aug 2010, Ulrich Kahl wrote:

 Am Wed, 11 Aug 2010 20:00:28 + (UTC)
 schrieb Daniel B. dan...@bolgh.eng.br :
  On Wed, 11 Aug 2010, Ulrich Kahl wrote:
  Am Wed, 11 Aug 2010 02:21:44 + (UTC)
  schrieb Daniel B. dan...@bolgh.eng.br :
 
 [...]
  Do you use the utf-8 locale (en_US.UTF-8)?
  
  Yes. But actually it doesn't matter. The dumps occur while reading
  the mp3 files at start in the case of audio/easytag, and when trying
  to work with multiple files in the case of audio/tagtool.
  
  This is why I think it's a common issue.
 
 Does it still happen, when you don't use UTF-8, but 
 ISO8859-something?

Same thing. But that was not the problem. UTF-8 is working fine here.

As Tobias Ulmer said, that was because crap tag libraries. Running with 
gdb, I saw that was always core dumping when these packages were reading 
a specific directory, maybe because corrupted files.

Both were stopping with a kill() from libc.so.56.0, but I don't have the 
corrupted files anymore to reproduce the issue again.

But anyway, thank you for helping.

--
Daniel Bolgheroni dan...@bolgh.eng.br
FEI - Faculdade de Engenharia Industrial
http://www.fei.edu.br

ASCII ribbon campaign ( )
 against HTML e-mail   X
  / \



install of Aug 11 snapshot hangs

2010-08-12 Thread Mark Bucciarelli
hi,

i downloaded a 4.8 snapshot this morning
and am trying to install via pxeboot on
an x30.

 boot disable acpi
 boot boot bsd.rd

ran fine until

 Which one is the root disk? [wd0]

I pressed enter, and sometime after fifteen
minutes had elapsed the system responded
with a series of Segmentation fault messages
and returned to the (I) install, ... prompt.

I've been using the x30 heavily for years,
most recently this morning with Ubuntu.

hand-typed dmesg below.

any suggestions?

thanks,

m

OpenBSD 4.8 (RAMDISK_CD) #88: Wed Aug 11 10:26:02 MDT 2010
dera...@i386.openbsd.org:/usr/src/sys/arch/i386/compile/RAMDISK_CD
cp0: Mobile Intel(R) Pentium(R) III CPU - M 1200MHz (GenuineIntel
686-class) 1.20 GHz
cp0: FPU,V86,DE,PSE,
TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PSE36,MMX,FXSR,SSE
real mem = 527306752 (502MB)
avail mem = 511774720 (488MB)
mainbus0 a t root
bios0 at mainbus0: AT/286+ BIO, date 09/13/02, BIO32 rev. 0 @ 0xfd7f0,
SMBIOS, rev. 2.31 @ 0x1f77c000 (46 entries)
bios0: vendor IBM version 1KET41WW (1.02 ) date 09/13/2002
bios0: IBM 26724BU
apm0 at bios0: Power Management spec V1.2
acpi at bios0 function 0x0 not configured
pcibios0 at bios0: rev 2.1 @ 0xfd780/0x880
pcibios0: PCI IRQ Routing Table rev. 1.0 @ 0xfdec0/240 (13 entries)
pcibios0: PCI Interrupt Router at 000:341:0 (Intel 82371FB ISA rev 0x00)
pcibios0: PCI bus #5 is the last bus
bios0: ROM list: 0xc/0xe000! 0xce000/0x1000 0xcf000/0x1000
0xdc000/0x4000! 0xe/0x1
cpu0 at mainbus0: (uniprocessor)
pci0 at mainbus 0 bus0: configuration mode 1 (bios)
mem address conflict 0x1f80/0x400
pchb0 at pci0 dev 0 function 0 Intel 82830M Host rev 0x04
vga1 at pci0 dev 2 function 0 Intel 82830M video rev 0x04
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
Intel 82830M Video rev 0x00 at pci0 dev 2 function 1 not configured
uhci0 at pci0 dev 29 function 0 Intel 82801CA/CAM USB rev 0x02: irq 11
uhci1 at pci0 dev 29 function 1 Intel 82801CA/CAM USB rev 0x02: irq 11
uhci2 at pci0 dev 29 function 2 Intel 82801CA/CAM USB rev 0x02: irq 11
ppb0 at pci0 dev 30 function 0 Intel 82801BAM Hub-to-PCI rev 0x42
pci1 at ppb0 bus 1
mem address conflict 0x5000/0x1000
mem address conflict 0x5010/0x1000
cbb0 at pci1 dev 0 function 0 Ricoh 5C476 CardBus rev 0xa8: irq 11
cbb1 at pci1 dev 0 function 1 Ricoh 5C476 CardBus rev 0xa8: irq 11
RIcoh 5C552 Firewire rev 0x00 at pci1 dev 0 function 2 not configured
iwi0 at pci1 dev 2 function 0 Intel PRO/Wireless 2915ABG rev 0x05:
irq 11, address 00:13:ce:66:14:3c
fxp0 at pci1 dev 8 function 0 Intel PRO/100 VE rev 0x42, i82562: irq
11, address 00:09:6b:a0:02:0c
inphy0 at fxp0 phy 1: i82562ET 10/100 PHY, rev. 0
cardslot0 at cbb0 slot 0 flags 0
cardbus0 at cardslot0: bus 2 device 0 cacheline 0x0, lattimer 0xb0
pcmcia0 at cardslot0
cardslot1 at ccb1 slot 1 flags 0
cardbus1 at cardslot1: bus 5 device 0 cacheline 0x0, lattimer 0xb0
pcmcia1 at cardslot1
ichpcib0 at pci0 dev 31 function 0 Intel 82801CAM LPC rev 0x02:
24-bit timer at 3579545Hz
pciide0 at pci0 dev 31 function 1 Intel 82801CAM IDE rev 0x02: DMA,
channel 0 configured to compatibility, channel 1 configured to
compatibility
wd0 at pciide0 channel 0 drive 0: IC25N040ATMR04-0
wd0: 16-sector PIO, LBA, 34899MB, 71474162 sectors
wd0(pciide0:0:0) using PIO mode4, Ultra-DMA mode 5
pciide0: channel 1 disabled (no drives)
Intel 82801CA/CAM SMBus rev 0x02 at pci0 dev 31 function 3 not configured
Intel 82801CA/CAM AC97 rev 0x02 at pci0 dev 31 function 5 not configured
Intel 82801CA/CAM Modem rev 0x02 at pci0 dev 31 function 6 configured
usb0 at uhci0: USB revision 1.0
uhub0 at usb0 Intel UHCI root hub rev 1.00/1.00 addr 1
usb1 at uhci1: USB revision 1.0
uhub1 at usb1 Intel UHCI root hub rev 1.00/1.00 addr 1
usb2 at uhci2: USB revision 1.0
uhub2 at usb2 Intel UHCI root hub rev 1.00/1.00 addr 1
isa0 at ichpcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5
pckbc0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
npx0 at isa0 port 0xf0/16: reported by CPUID; using exception 16
fdc0 at isa0 port 0x3f0/6 irq 6 drq 2
biomask fffd netmask fffd ttymask 
rd0: fixed, 3800 blocks
softraid0 at root
PXE boot MAC address 00:09:6b:a0:02:0c, interface fxp0
root on rd0a swap on rd0b dump on rd0b



Re: OpenBSD Vim Programming FAQ

2010-08-12 Thread Darrin Chandler
On Thu, Aug 12, 2010 at 01:07:47PM +0200, Tomas Vavrys wrote:
 2010/8/12 Ingo Schwarze schwa...@usta.de:
  Oh, and also note that OpenBSD and vim is a weird topic.  OpenBSD
  and nvi or OpenBSD and mg would seem more natural.  On the other
  hand, some people (including Marco) apparently like the topic, so it
  may be useful. B But don't feel disappointed if many people
  completely ignore your effort because you are focussing on a
  non-standard combination.
  
 Unfortunately there is at least 7 people who would like to see some
 tutorial.

I do not think it's a weird topic, and I know of developers aside from
Marco who use Vim (who have kindly shared some settings with me).

-- 
Darrin Chandler|  Phoenix BSD User Group  |  MetaBUG
dwchand...@stilyagin.com   |  http://phxbug.org/  |  http://metabug.org/
http://www.stilyagin.com/  |  Daemons in the Desert   |  Global BUG Federation



Re: install of Aug 11 snapshot hangs

2010-08-12 Thread Matthew Dempsky
On Thu, Aug 12, 2010 at 10:27 AM, Mark Bucciarelli mkb...@gmail.com wrote:
 i downloaded a 4.8 snapshot this morning
 and am trying to install via pxeboot on
 an x30.

 boot disable acpi
 boot boot bsd.rd

 ran fine until

 Which one is the root disk? [wd0]

 I pressed enter, and sometime after fifteen
 minutes had elapsed the system responded
 with a series of Segmentation fault messages
 and returned to the (I) install, ... prompt.

I'm unable to reproduce this under vmware (using either i386 or amd64
snapshopts, and using either i386 or amd64 pxeboot).  I'll try again
tonight with my x40.



Curso: Pruebas Psicologicas en R.H.

2010-08-12 Thread Capacitacion Empresarial
  SERVIC IOS VISISN HUMANA ; 

Visisn Humana (Consultorma en Recursos Humanos) tiene el agrado de
invitarlo al CURSO DE PRUEBAS PSICOLSGICAS que se llevara a cabo en el
mes de Agosto de 2010.

OBJETIVO: Que al finalizar el curso, el participante se capaz de realizar
evaluacisn basandose en factores psicolsgicos tales como personalidad,
inteligencia y valores, adecuando una baterma de pruebas al perfil del
puesto buscado.

TEMARIO:

X Conceptos generales de pruebas psicolsgicas

X Test de Zavic

X Barsit

X Ticnica de Cleaver

X Dominos

X Novis

X Jackson

X Escala de Moss

GRUPO 2

  * 

Viernes 20 de Agosto de 2010

9:00 a 17:00 horas

Costo $2,000 mas IVA

PROMOCISN con pronto pago al dma 18 de Agosto

$1,500 mas IVA

GRUPOS REDUCIDOS

Incluye:

X Manual del curso con ejercicios practicos y asesoria continua despuis
del curso

X Constancia emitida por agente capacitador registrado ante la STPS

X Coffee Break

X CD con pruebas psicolsgicas

BENEFICIOS:

X Podra tener mas herramientas para una adecuada seleccisn de personal

X Podra evaluar a candidatos o a personal de nivel operativo, medio y
gerencial

X Le sera ztil para realizar Deteccisn de Necesidades de Capacitacisn

X Podra reducir la rotacisn de personal

SEDE:

Visisn Humana

Dr. Barragan N: 560 Despacho 5 Col. Narvarte, Mixico D.F.

Tels. 3548 4737, 8502 2187 (llamada local en el D.F.)

Fax: 3548 1624 (llamada local en el D.F.)

REVISA NUESTRO CALENDARIO DE CURSOS

CONTACTO

Tels: 5538 0071

Tels: 3548 4737

Tels: 8502 2187

Fax: 3548 1624

Bajo el decreto S.1618 TITULO III aprobado por el 105 Congreso base de
las normativas internacionales sobre SPAM. Este correo no puede ser
considerado SPAM mientras incluya una forma de ser removido. Para darse
de baja responder con el tmtulo BORRAR.



anyone tried the freebsd version of teamspeak3 with the freebsd emulation?

2010-08-12 Thread Paul Pruett
Was wondering if anyone else has recently tried the teamspeak3 server 
using the freesbsd (x86) beta server

for download on an openbsd with freebsd kernel emulation?

-tia.



Re: install of Aug 11 snapshot hangs

2010-08-12 Thread Ted Unangst
On Thu, Aug 12, 2010 at 1:27 PM, Mark Bucciarelli mkb...@gmail.com wrote:
 i downloaded a 4.8 snapshot this morning
 and am trying to install via pxeboot on
 an x30.

 boot disable acpi
 boot boot bsd.rd

 ran fine until

 Which one is the root disk? [wd0]

 I pressed enter, and sometime after fifteen
 minutes had elapsed the system responded
 with a series of Segmentation fault messages
 and returned to the (I) install, ... prompt.

The closest I have to that is an X20, which I just did a full PXE
booted install on, and it works fine.



Desarrollo para Asistentes Ejecutivas, Puerto Vallarta, 3 Septiembre, Reserve Ya!

2010-08-12 Thread Adriana Gonzalez
[IMAGE]

!Promociones Especiales para Grupos!
Mayores informes responda este correo electrsnico con los siguientes
datos.
Empresa:
Nombre:
Telifono:
Email:
Nzmero de Interesados:
Y en breve le haremos llegar la informacisn completa del evento.
O bien comunmquense a nuestros telifonos un ejecutivo con gusto le
atendera
Tels. (33) 8851-2365, (33)8851-2741.

Copyright (C) 2010, PMS Capacitacisn Efectiva de Mixico S.C. Derechos
Reservados. PMS de Mixico, El logo de PMS de Mixico son marcas
registradas.

ADVERTENCIA PMS de Mixico no cuenta con alianzas estratigicas de ningzn
tipo dentro de la Republica Mexicana. NO SE DEJE ENGAQAR - DIGA NO A LA
PIRATERIA. Todos los logotipos, marcas comerciales e imagenes son
propiedad de sus respectivas corporaciones y se utilizan con fines
informativos solamente.

Este Mensaje ha sido enviado a misc@openbsd.org como usuario de Pms de
Mixico o bien un usuario le refiris para recibir este boletmn.

Como usuario de Pms de Mixico, en este acto autoriza de manera expresa
que Pms de Mixico le puede contactar vma correo electrsnico u otros
medios.

Si usted ha recibido este mensaje por error, haga caso omiso de el y
reporte su cuenta respondiendo este correo con el subject BAJAASISTENTES
Unsubscribe to this mailing list, reply a blank message with the subject
UNSUBSCRIBE BAJAASISTENTES Tenga en cuenta que la gestisn de nuestras
bases de datos es de suma importancia y no es intencisn de la empresa la
inconformidad del receptor.

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
secretarias.jpg]



Re: install of Aug 11 snapshot hangs

2010-08-12 Thread Nick Holland
On 08/12/10 13:26, Mark Bucciarelli wrote:
 hi,
 
 i downloaded a 4.8 snapshot this morning
 and am trying to install via pxeboot on
 an x30.
 
  boot disable acpi

What's this about?
That's not a valid command at that point.  Granted no error message, but
disable asdf and l;jk ;lkj don't produce an error message either
(which is odd...)

And... I really suspect disabling ACPI is not something you want to do
with this machine.  You may want to disable apm to force it to use acpi
(as I have to do with my T23, otherwise it gets really hot...)

  boot boot bsd.rd
 
 ran fine until
 
  Which one is the root disk? [wd0]
 
 I pressed enter, and sometime after fifteen
 minutes had elapsed the system responded
 with a series of Segmentation fault messages
 and returned to the (I) install, ... prompt.
 
 I've been using the x30 heavily for years,
 most recently this morning with Ubuntu.
 
 hand-typed dmesg below.
 
 any suggestions?

I take it you are PXE booting because you don't have the lower thingie
which has the floppy and CD for this machine...(if you DO have the lower
thingie, could you try a cd or floppy?)

Because of your message, I did a couple more pxeboot installs, on my IBM
A21p (upgrade, actually) and on my IBM T23.  Both worked fine, as did a
desktop system I pxebooted yesterday.

Can you tftpboot another machine from your same tftp server so we can
check to see if it is delivering bsd.rd intact?

If you can't do that, could you do an sha256 against your tftp-delivered
bsd.rd and see if it matches that on the FTP server?

Have you successfully used your tftp server for anything else?

I'm wondering if you got either a corrupted bsd.rd on the tftp server,
or a tftp server which mangles stuff on the way to its destination...

Failing that, how about booting with a boot bsd.rd -c at the boot
prompt, then doing a disable apm then quit and see if your machine
is like my T23 and likes acpi much more than apm (though, admittedly, my
T23 doesn't crash..just runs really hot).  The thought here is that my
T23 obviously liked ACPI, had a not-good APM implementation, and your
X30 is newer..but still provides enough APM for OpenBSD to glomb into it
and ignore ACPI, but I bet your ACPI is pretty developed on that thing.

(dmesg snipped, thanks for providing it!)

Nick.



Re: install of Aug 11 snapshot hangs

2010-08-12 Thread Matthew Dempsky
On Thu, Aug 12, 2010 at 5:12 PM, Ted Unangst ted.unan...@gmail.com wrote:
 The closest I have to that is an X20, which I just did a full PXE
 booted install on, and it works fine.

I just did a pxeboot upgrade on my X40, and it went fine as well.  I
also went as far as fsck'ing my disk with acpi disabled in UKC, to
double check that didn't have any weird side effects.