[RFC] prototype of top(1)'s CPU current frequency display

2006-08-20 Thread Norikatsu Shigemura
I want to see CPU current frequency on top(1), because I want to see relation of process status (CPU usage) and cpu current frequency using powerd(8) on the fly. In recently, many CPUs for servers like Xeon support frequency changing like Speed Step

Re: [PATCH] adding two new options to 'cp'

2006-08-20 Thread Mike Silbersack
On Wed, 26 Jul 2006, Eric Anderson wrote: I'm tired of trying to use rsync or gcp (which doesn't like symlinks often) to copy trees of files/directories using hard links, so I added the gcp-ish options -a and -l. ... Comments? Flames? Committers willing to commit? Eric Having just read

uplcom and getty

2006-08-20 Thread Yoichi NAKAYAMA
Can't we use ttyU0 with getty? I have USB to serial converter ELECOM UC-SGT # usbdevs -v | grep Prolific port 2 addr 4: full speed, power 500 mA, config 1, USB-Serial Controller(0x5004), Prolific Technology Inc.(0x056e), rev 3.00 I linked two machine with RS232C reverse cable and UC-SGT. I

global date via module howto

2006-08-20 Thread Roman Kurakin
Hi, I have the following problem: module A int x; module B extern int x; Module A is loaded, module B can't be loaded cause of unknow 'x'. What should I do to make x global? PS. I am working on porting irda support for USB devices from NetBSD. The current model consists of two

About loader(8) forth

2006-08-20 Thread Matteo Riondato
Hi folks, I'm trying to understand how the loader forth works to see if it's possible to develop something similar to knoppix boot menu and use it for FreeSBIE. Just to have a try, I replaced /boot/beastie.4th with file a containing only: . Welcome to FreeSBIE exit then I deleted the

PCI express support?

2006-08-20 Thread David Gilbert
I got a PCI express version of the Intel gigabit adaptor to try. Heh. Comes with a big-ass heatsink on the card. I found that a bit amusing. But it doesn't probe up. Is this because PCI Express is not supported (1x in this case --- the little slot), or because I need to put in the constants

Re: Adding remove file option to BSD tar?

2006-08-20 Thread Tim Kientzle
What do people think about adding an equivalent to gtars --remove-files? Shouldn't be too tricky. If you think you know how to implement it, send me the diffs. Doing this safely is nearly impossible, of course. In the compressed case, the compression pipeline buffers a LOT of data ...

Aqcuiring full path to running process from outside the kernel

2006-08-20 Thread Reko Turja
I've been playing with Open Watcom for a bit in FreeBSD and for a while there's been one stumblim block for further advancement. Watcom uses a method for storing program messages etc. where these messages are stored as a resource file inside the executable itself. As the commands are usually

Re: Aqcuiring full path to running process from outside the kernel

2006-08-20 Thread Mike Meyer
In [EMAIL PROTECTED], Reko Turja [EMAIL PROTECTED] typed: I've been playing with Open Watcom for a bit in FreeBSD and for a while there's been one stumblim block for further advancement. Watcom uses a method for storing program messages etc. where these messages are stored as a resource

Re: Aqcuiring full path to running process from outside the kernel

2006-08-20 Thread Reko Turja
Of course I did find about the CTL_KERN.KERN_PROC.KERN_PROC_PATHNAME sysctl method of grabbing the path just about the same time Mike replied to my query... Seems that either of the ways suggested by Mike could be used as fallback. Sorry about the noise. -Reko

Re: PCI express support?

2006-08-20 Thread Antony Mawer
On 21/08/2006 3:09 AM, David Gilbert wrote: I got a PCI express version of the Intel gigabit adaptor to try. Heh. Comes with a big-ass heatsink on the card. I found that a bit amusing. But it doesn't probe up. Is this because PCI Express is not supported (1x in this case --- the little

Re: PCI express support?

2006-08-20 Thread Mike Tancsa
On Sun, 20 Aug 2006 13:09:28 -0400, in sentex.lists.freebsd.hackers you wrote: I got a PCI express version of the Intel gigabit adaptor to try. Heh. Comes with a big-ass heatsink on the card. I found that a bit amusing. But it doesn't probe up. Is this because PCI Express is not supported (1x

Re: PCI express support?

2006-08-20 Thread AlanBAKA
Search for Pro/1000 PT Server Adapter Drive on their web site It works for any Pro/1000 chip from intel on from 4.x to 6.x FreeBSD Mike Tancsa wrote: On Sun, 20 Aug 2006 13:09:28 -0400, in sentex.lists.freebsd.hackers you wrote: I got a PCI express version of the Intel gigabit adaptor to

Re: global date via module howto

2006-08-20 Thread M. Warner Losh
In message: [EMAIL PROTECTED] Roman Kurakin [EMAIL PROTECTED] writes: : I have the following problem: : module A : int x; : : module B : extern int x; : : Module A is loaded, module B can't be loaded cause of unknow 'x'. : What should I do to make x global? Better to