Re: how to get create/compile time of vmlinux

2012-04-30 Thread brooks
Building time has already been statically compiled into the kernel image
file, you can use ' strings vmlinux | grep Linux version ' to get it back.

2012/4/20 卜弋天 bu...@live.cn

  Hi All:

i have a vmlinux file, how can i know when it is created/compiled?
thanks.


 Best Regards

 ___
 Kernelnewbies mailing list
 Kernelnewbies@kernelnewbies.org
 http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


tty driver

2012-04-30 Thread Sri Ram Vemulpali
Hello All,

I am working on paging feature on tty, pty outputting. Is there anyway
I can do paging output at tty drivers by way of setting some options
using ioctl or 
Please let me know, to give you some idea

if you type

ls -l | more on command prompt you see the output in paging fashion.
This is the kind of feature I want it on tty fds. Please let me know
if anyone has any better idea. thanks.


-- 
Regards,
Sri.

___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


Re: tty driver

2012-04-30 Thread Alan Cox
On Mon, 30 Apr 2012 14:17:30 -0400
Sri Ram Vemulpali sri.ram.gm...@gmail.com wrote:

 Hello All,
 
 I am working on paging feature on tty, pty outputting. Is there anyway
 I can do paging output at tty drivers by way of setting some options
 using ioctl or 

Things like page dimensions and escape code management are userspace
handled in Linux. If you must fake it via a tty then I'd suggest you
write a pty/tty using app, if not then pipe it through more.

For the former case a simple expect script should do it.

___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies