home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / os / linux / 22148 < prev    next >
Encoding:
Text File  |  1992-12-30  |  1.7 KB  |  48 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!mcsun!news.funet.fi!hydra!klaava!torvalds
  3. From: torvalds@klaava.Helsinki.FI (Linus Torvalds)
  4. Subject: Re: compiling the kernel...cool : )
  5. Message-ID: <1992Dec30.122824.23500@klaava.Helsinki.FI>
  6. Organization: University of Helsinki
  7. References: <marcf.725692606@yorku.ca>
  8. Date: Wed, 30 Dec 1992 12:28:24 GMT
  9. Lines: 37
  10.  
  11. In article <marcf.725692606@yorku.ca> marcf@nexus.yorku.ca (Marc G Fournier) writes:
  12. >
  13. >    First of all, I would like to congratulate he would
  14. >wrote the config script for compiling the kernel...it is excellent.
  15.  
  16. Heh.  It's a fast hack, but it seems people like it a lot more than
  17. editing Makefiles..  Strange.
  18.  
  19. >    What is:
  20. >        kernel math emulation (co-processor emulation?)
  21.  
  22. Yes, it's the co-processor emulation code.  If you have a co-processor,
  23. you can answer 'n' (or just press enter: the default is set up according
  24. to my system, which has a copro).  Without a coprocessor, you should
  25. answer 'y' to this question. 
  26.  
  27. >        kernel profiling support?
  28.  
  29. Answering 'y' to this adds some small code to do limited kernel
  30. profiling: to actually get the information you'll have to use a special
  31. program that reads kmem to find out the results.  This is not something
  32. people generally need to do: it's meant only for kernel hackers who want
  33. to see where the kernel spends most of its time. 
  34.  
  35. >        /proc filesystem support?
  36.  
  37. If you answer 'y' (or blank) to this, the proc-fs filesystem code is
  38. linked in. Do a
  39.  
  40.     mkdir /proc
  41.     mount -t proc /proc /proc
  42.  
  43. to find out more about it: it essentially gives some general linux
  44. process information (so that you can write 'ps' as a shell script or
  45. whatever instead of messing around with kmem). 
  46.  
  47.         Linus
  48.