Re: gpart is junk

2012-09-29 Thread Marc Balmer
Am 28.09.12 11:31, schrieb Steffen Daode Nurpmeso: > Wojciech Puchar wrote: > > |>> but still not anywhere as readable as bsdlabel. > |>> > |> > |> I did specifically say 'machine readable'. The XML is well-formed, > |XML is stupid. everything you can do with XML can be better described >

Re: Providing a default graphical environment on FreeBSD

2012-09-17 Thread Marc Balmer
Am 17.09.12 17:42, schrieb Poul-Henning Kamp: > In message , Lorenzo Cogotti > writ > es: >> Hi, >> I was wondering about the possibility of FreeBSD to provide an official >> supported graphical environment. > > We already do: It's called "X11" :-) and for the fun of it: CDE has been opensourc

Re: tree doesnt compile

2009-08-25 Thread Marc Balmer
Am 25.08.2009 um 13:23 schrieb Marc Balmer: /usr/src/sys/modules/vesa/../../i386/isa/vesa.c: In function 'vesa_set_mode': /usr/src/sys/modules/vesa/../../i386/isa/vesa.c:1117: error: duplicate case value anyone seeing this as well or is this a local f***up ? fwiw, problem is s

tree doesnt compile

2009-08-25 Thread Marc Balmer
/usr/src/sys/modules/vesa/../../i386/isa/vesa.c: In function 'vesa_set_mode': /usr/src/sys/modules/vesa/../../i386/isa/vesa.c:1117: error: duplicate case value anyone seeing this as well or is this a local f***up ? ___ freebsd-hackers@freebsd.org m

Re: is there any chance to get HP blade servers supported again?

2009-08-24 Thread Marc Balmer
s ago, but got no information). We just installed FreeBSD 8.0BETA3 (i386) on two HP BL460C, quad Xeon, with HP smart Array200i and QLogic QMH2462 4Gb FC HBA and networking works. At least that's what my colleague, who is onsite, just told me on the phone. - M

Re: Common interface for sensors/health monitoring

2009-08-23 Thread Marc Balmer
Am 23.08.2009 um 18:24 schrieb Alexander Leidinger: On Sun, 23 Aug 2009 17:13:42 +0200 Marc Balmer wrote: Am 23.08.2009 um 17:08 schrieb Alexander Leidinger: On Sat, 22 Aug 2009 21:02:32 +0200 "Aurélien Méré" wrote: I'm just afraid by reading your email that the si

Re: Common interface for sensors/health monitoring

2009-08-23 Thread Marc Balmer
Am 23.08.2009 um 17:08 schrieb Alexander Leidinger: On Sat, 22 Aug 2009 21:02:32 +0200 "Aurélien Méré" wrote: I'm just afraid by reading your email that the situation doesn't seem to have evolved since the discussion regarding the SoC, maybe even more taboo, and that I'll have to keep wri

Re: Common interface for sensors/health monitoring

2009-08-22 Thread Marc Balmer
Am 22.08.2009 um 18:29 schrieb Alexander Leidinger: On Sat, 22 Aug 2009 08:50:23 +0200 Marc Balmer wrote: The OpenBSD sensors framework lacks some desireable features, e.g. event capabilities like getting an event if a certain threshold is exceeded. And it propbably was used for things

Re: Common interface for sensors/health monitoring

2009-08-22 Thread Marc Balmer
ulprit for on of these (ab)uses...). I am sure these features could be added if only the code was in the tree to hack on... - Marc Balmer ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubsc

Re: syslog() reentrant when compiling with -pthread?

2004-10-06 Thread Marc Balmer
Am 06.10.2004 um 16:48 schrieb Dan Nelson: The only unsafe part is openlog(), so set that up before you start any threads and you'll be okay. Once the log fd is opened, the syslog() call looks to be thread-safe. Everything in there is done with local variables and atomic writes. At least on OpenB

syslog() reentrant when compiling with -pthread?

2004-10-06 Thread Marc Balmer
compiling with "-pthread" links in the thread safe libc_r library instead of libc. As syslog() seems to part of libc on FreeBSD, is it safe to assume that syslog() is indeed thread safe on FreeBSD when compiling with the -pthread switch? Thanks, M