home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / os / linux / 20224 < prev    next >
Encoding:
Text File  |  1992-12-13  |  2.4 KB  |  59 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: [ANNOUNCE]: linux version 0.99
  5. Message-ID: <1992Dec13.233202.5198@klaava.Helsinki.FI>
  6. Keywords: kernel linux 0.99
  7. Organization: University of Helsinki
  8. References: <1992Dec13.193812.6958@tc.cornell.edu>
  9. Date: Sun, 13 Dec 1992 23:32:02 GMT
  10. Lines: 47
  11.  
  12. In article <1992Dec13.193812.6958@tc.cornell.edu> torvalds@cc.helsinki.fi (Linus Torvalds) writes:
  13. >Linux version 0.99 is now available at nic.funet.fi, in the directory
  14. >pub/OS/Linux/PEOPLE/Linus as both full source and patches against
  15. >0.98.6.  It will probably show up on the other major sites soon. 
  16. [ rest deleted ]
  17.  
  18. Ok, there seem to be a couple of problems with the configuration stuff:
  19. they are minor, but they can get a new user pretty confused. Here is how
  20. to fix them:
  21.  
  22.  1) fs/isofs/inode.c tells you that it needs CDROM support when you
  23.     pre-process it during running "make dep". 
  24.  
  25.     this one has two different solutions:
  26.  
  27.     - remove the '#ifndef CONFIG_BLK_DEV_SR ...  #error ...  #endif'
  28.       test in fs/isofs/inode.c
  29. or
  30.     - use "make config" to include all the SCSI support: you can remove
  31.       it later by doing another "make config" after you have your
  32.       dependencies up-to-date. It's a problem only for "make dep", as
  33.       a real make won't even enter the isofs subdirectory unless you
  34.       have asked for the isofs filesystem (and then you do indeed need
  35.       the CDROM support, so the error is valid)
  36.  
  37.  2) linking the net/ subdirectory gives a "tcp/tcpip.a: no such file or
  38.     directory" if you don't include the networking stuff in the config.
  39.  
  40.     simple solutions:
  41.  
  42.     - do a "ar cvs net/tcp/tcpip.a" to create an empty archive to get
  43.       the linker happy (alternatively you can once more reconfigure with
  44.       the tcp/ip support to get the archive created, and then configure
  45.       it out again and re-making the kernel. That's essentially how I
  46.       never saw this error when I tested the configs out..)
  47. or
  48.     - edit the net/Makefile and just dike out the 'tcp/tcpip.a' (or put
  49.       it behind a "ifdef" like the NET_SUBDIRECTORY..)
  50.  
  51. Also, if you get the "unable to make cdefs.h" or similar, it probably
  52. means you haven't done a "make dep".  Alternatively your installation
  53. has some problems. 
  54.  
  55. Sorry for the silly problems with the config stuff and hope that's the
  56. biggest problem with this release,
  57.  
  58.         Linus
  59.