1. 23 Nov, 2007 8 commits
    • Linus Torvalds's avatar
      [PATCH] Linux-0.96b (June 21, 1992) · 0b098c16
      Linus Torvalds authored
      First cut at core-dumping.  Also, do more dynamic boottime memory
      allocation, rather than allocating data structures statically.
      
      Allocate task structures at run-time rather than having a big array of
      them.
      
      First "obsolete" system call.  The old "stat()" system call was too
      limited, due to "struct stat" having various 16-bit fields etc (notably
      inode numbers).  We make a new stat() function, and keep the old one
      around as "old_stat()" for binary compatibility.
      
      We also need a bigger "utsname" to hold real node names.
      
      Whoo! NR_OPEN is now 32 rather than 20.
      
      itimer() support driven by X11 adoption (Darren Senn).
      
      gcc starts using fsqrt, so that gets added to the FP emulation.  We're
      still basing that on my trivial code.
      
      [Original changelog below]
      
      0.96b is not a new major release: it's pretty close to 0.96a with all my
      patches (1-4).  However, as there has been 4 patches already, I decided
      it would be time for a full kernel release along with a bootimage, so
      that people who don't feel confident with patching can use the new
      features.
      
      If you already have 0.96a patchlevel 4, 0.96b will offer you these new
      features:
      
       - the math-emulation now handles fsqrt, as gcc-2.2.2 generates that
         inline.  I haven't tested the kernel code at all: I tested the
         algorithm in user space, but I'm lazy, so I never turned off my 387
         to do real testing.  I hope it works.
       - better vt100 terminal emulation thanks to Mika Liljeberg.
       - I removed a possible race-condition in the buffer-cache code.
       - minor fixes
      
      The vt100 emulation should now be complete enough for almost everything
      (including vt100 test suites): as a result the setterm utility had to be
      changed (as the old setterm codes aren't compatible with the full vt100
      codes).  setterm-0.96b.tar.Z contains the new setterm.
      
      The soon-to-be-released gcc-2.2.2 will need the 0.96b kernel: (a) due to
      the fsqrt emulation and (b) it uses the new stat() system call.  So
      upgrading is a good idea.  (If you have a co-processor, (a) isn't used,
      but (b) still stands)
      
      If you have an unpatched 0.96a, the differences to 0.96b are roughly
      (not counting the above-mentioned new things):
      
       - corrected the disk-buffer-list bug with read/write-errors
       - fixed read-ahead warning messages at end of disk
       - better support for text-mode restoration after running MGR and X
       - full core-dumping, attach/detach etc debugging features
       - 16550A support
       - less low 1MB memory used for kernel structures
       - various minor fixes
      
      Note that the fact that new versions (pl4 and above) use more memory in
      the 1M+ area means that linux will report less free memory (it's used
      for buffer-cache instead).  This could concievably be a problem on 2MB
      machines.  The standard kernel comes with only 4 pty's though, and if
      you use the standard 80x25 text modes instead of svga modes, the VC
      buffers will be smaller.  Please contact me if there are problems even
      with this minimal setup.
      
      0.96b does /not/ contain: the new scsi drivers, new filesystems or some
      other patches I have gotten (ibm character set mode, loop-devices etc).
      If you have sent me any other patch, you might want to remind me about
      it.
      
                      Linus
      0b098c16
    • Linus Torvalds's avatar
      Second patch to 0.96a · 24c9da66
      Linus Torvalds authored
      I have just sent off the second patch to 0.96a: it should be on the
      normal ftp-sites (nic, tsx-11 and banjo), although the only site which I
      can make it directly readable on is banjo, so on the other sites it will
      take the site-managers to make the patch available.
      
      Patch 2 implements:
      
      - itimers (by Darren Senn), which are now also used to implement the
        alarm() system call.
      
      - ultrastor scsi driver patches (by gentzel)
      
      - [f]statfs() system call is implemented (so df can be made fs-
        independent). Also some other minor fs-changes for the upcoming new
        filesystem. Patches by Remy Card.
      
      - preliminary core-file dumping code (linux creates a core-file, but
        it's not in the correct format yet [*]).
      
      - minor changes/bugfixes.
      
      While patching in patch1 is a good idea for anybody, patch 2 isn't
      really vital. I've made it available just so kernel hackers can keep up
      with the kernel I have right now if they wish. Patch 2 is relative to
      patch 1: you have to patch that in first.
      
      [*] The current core-file is very simple, and the kernel code is there
      just so that some enterprising character can expand it. A core-file
      looks like this right now:
      
      offset data
      0x0000 "core-dump: regs=\n"
      0x0040 struct pt_regs (see <sys/ptrace.c>)
      0x0400 "floating-point regs:\n"
      0x0440 struct i387 (see <linux/sched.h>)
      0x0800 the first 1kB of user-space
      
      Not very practical, but it /might/ help if the X-server dies of a
      segmentation fault or similar (you can use pt_regs.eip to see where it
      happened). The kernel code is very easy to change to accomodate for the
      real core-file format, I just didn't know what it should be.
      
                      Linus
      24c9da66
    • Linus Torvalds's avatar
      [PATCH] Linux-0.96a (May 22, 1992 ??) · c27acf0e
      Linus Torvalds authored
      More VFS cleanups.  Minixfs code reorganized to be more logical, and
      split up into a few new files.
      
      SCSI support!!
      
       - Drew Eckhardt does the SCSI stuff, and does the ST01/ST02 lowlevel
         driver.
      
       - Ultrastor driver by David Gentzel.
      
       - Tommy Thorn shows up again.  He did the Danish keyboard tables, now
         he does the AHA 1542 driver.  Ten years later we ended up being
         co-workers at Transmeta ;)
      
      First networking code appears: X11 port needs UNIX domain sockets, and
      thus the "socketcall()" system call.  It's not really meant for real
      networking, although the code will eventually evolve to support that.
      Which explains some of the bad early decisions..  ;)
      
      Werner Almerberger starts taking over floppy driver maintenance.  Thank
      Gods!
      
      Johan Myreen translates my assembly-level keyboard driver into C code,
      and adds support for diacriticals.
      
      OMAGIC a.out format support
      
      Syslog support for the kernel appears.  If I remember correctly, this
      was Peter MacDonald, but no mention of that in the sources.
      c27acf0e
    • Linus Torvalds's avatar
      [PATCH] Linux-0.95c+ (April 9, 1992 ??) · 6891759b
      Linus Torvalds authored
      Bruce Evans shows up here quickly.
      
      Bruce was the author of the Minix/386 patches, and had been one of my
      sounding boards for my early development, so it was very gratifying to
      see him get interested in Linux.  As it turned out, what he was _really_
      interested in was the serial driver, and the Linux serial driver was
      already in reasonably good shape.
      
      As a result, Bruce went off to work on 386BSD instead (where the serial
      driver was truly crappy), but here he worked on some boot loader cleanups.
      
      Bruce was my hero.
      
      Anyway...  More VFS work here: readdir, bmap and ioctl's are now virtual
      operations, and the superblock code is properly virtualized.
      
      Other changes:
      
       - James Wiegand writes initial parallell port printer driver
      
       - major/minor fault tracking
      
       - I rewrote big chunks of ptrace.c
      6891759b
    • Linus Torvalds's avatar
      [PATCH] Linux-0.95 (March 8, 1992) · e6c7a63f
      Linus Torvalds authored
      This was the first kernel that got released under the GPL (0.12 had a
      time-lapse to make sure the people involved accepted the license change:
      nobody ever complained).
      
      Because 0.12 had been so successful, this was supposed to be closer to
      1.0.  Yeah, right.  1.0 was eventually released almost exactly two years
      later..
      
      The big change here is the first signs of a real VFS layer: while the
      only available filesystem is still the Minix-compatible one, the code is
      factored out, and the Minix-specific stuff is put in its own directory.
      You can clearly see how the thing is moving towards having multiple
      different filesystems.
      
      The VFS changes also cause cleanups in various drivers, since we end
      up having more clear inode operation structure pointer handling.
      
      Superblock handling is still minix-specific..
      
      NOTE! We also have /bin/init finally.  It still falls through to the old
      "run shells forever" case if no init can be found, but it's starting to
      look a whole more like real UNIX user-land now..
      
      New developers: Ross Biro shows up, and does ptrace.  He will later end
      up doing the first-generation networking code.
      
      Other changes:
      
       - UK and Danish keyboard maps (and the keyboard driver supported
         "Application mode" keys from vt100+)
       - Make sure interrupts clear the 'D'irection flag
       - Floppy driver gets track buffer, which speeds it up immensely.  This
         was done based on patches by Lawrence Foard (entropy@wintermute.wpi.edu)
       - Lots of buffer cache cleanups.
       - support nonblocking pipe file descriptors
       - recursive symlink support
       - sys_swapon() means that we don't have to select the swap device
         at build (or boot) time ("Written 01/25/92 by Simmule Turner, heavily
         changed by Linus")
       - start some generic timer work (ugh, but these first timers were
         _horrible_ hardcoded things)
       - ptrace for debugging
       - console size query support with TIOC[G|S]WINSZ
       - /dev/kmem ("by Damiano")
       - rebooting (with ctrl-alt-del or sys_reboot()).
      
      From the release notes:
      
                    New features of 0.95, in order of appearance
                            (ie in the order you see them)
      
            Init/login
      
      Yeah, thanks to poe (Peter Orbaeck (sp?)), linux now boots up like a
      real unix with a login-prompt.  Login as root (no passwd), and change
      your /etc/passwd to your hearts delight (and add other logins in
      /etc/inittab etc).
      
            Bash is even bigger
      
      It's really a bummer to boot up from floppies: bash takes a long time to
      load.  Bash is also now so big that I couldn't fit compress and tar onto
      the root-floppy: You'll probably want the old rootimage-0.12 just in
      order to get tar+compress onto your harddisk.  If anybody has pointers
      to a simple shell that is freely distributable, it might be a good idea
      to use that for the root-diskette.
      
      Especially with a small buffer-cache, things aren't fun. Don't worry:
      linux runs much better on a harddisk.
      
            Virtual consoles on any (?) hardware.
      
      You can select one of several consoles by pressing the left alt-key and
      a function key at the same time. Linux should report the number of
      virtual consoles available upon bootup. /dev/tty0 is now "the current"
      screen, /dev/tty1 is the main console, and /dev/tty2-8 can exist
      depending on your text-mode or card.
      
      The virtual consoles also have some new screen-handling commands: they
      confirm even better to vt200 control codes than 0.11. Special graphic
      characters etc: you can well use them as terminals to VMS (although
      that's a shameful waste of resources), and the PF1-4 keys work somewhat
      in the application-key mode.
      
            Symbolic links.
      
      0.95 now allows symlinks to point to other symlinks etc (the maximum
      depth is a rather arbitrary 5 links). 0.12 didn't like more than one
      level of indirection.
      
            Virtual memory.
      
      VM under 0.95 should be better than under 0.12: no more lockups (as far
      as I have seen), and you can now swap to the filesystem as well as to a
      special partition. There are two programs to handle this: mkswap to set
      up a swap-file/partition and swapon to start up swapping.
      
      mkswap needs either a partition or a file that already exists to make a
      swap-area. To make a swap-file, do this:
      
            # dd bs=1024 count=NN if=/dev/hda of=swapfile
            # mkswap swapfile NN
      
      The first command just makes a file that is NN blocks long (initializing
      it from /dev/hda, but that could be anything). The second command then
      writes the necessary setup-info into the file. To start swapping, write
      
            # swapon swapfile
      
      NOTE! 'dd' isn't on the rootdisk: you have to install some things onto
      the harddisk before you can get up and running.
      
      NOTE2! When linux runs totally out of virtual memory, things slow down
      dramatically. It tries to keep on running as long as it can, but at
      least it shouldn't lock up any more. ^C should work, although you might
      have to wait a while for it..
      
            Faster floppies
      
      Ok, you don't notice this much when booting up from a floppy: bash has
      grown, so it takes longer to load, and the optimizations work mostly
      with sequential accesses.  When you start un-taring floppies to get the
      programs onto your harddisk, you'll notice that it's much faster now.
      That should be about the only use for floppies under a unix: nobody in
      their right mind uses floppies as filesystems.
      
            Better FS-independence
      
      Hopefully you'll never even notice this, but the filesystem has been
      partly rewritten to make it less minix-fs-specific. I haven't
      implemented all the VFS-patches I got, so it's still not ready, but it's
      getting there, slowly.
      
            And that's it, I think.
      
      Happy hacking.
      
                            Linus (torvalds@kruuna.helsinki.fi)
      e6c7a63f
    • Linus Torvalds's avatar
      Linux-0.11 (December 8, 1991) · b65b60f4
      Linus Torvalds authored
      This was created from a re-packaged 0.11 tree.
      
      Linux-0.11 has a few rather major improvements, but perhaps most
      notably, is the first kernel where some other people start making
      real contributions.
      
       - I fixed the buffer cache code, making it a lot more stable
      
       - demand-loading from disk. My comment proudly states:
      
              Once more I can proudly say that linux stood up to being changed: it
              was less than 2 hours work to get demand-loading completely implemented.
      
         This is a major milestone, since it makes the kernel much more
         powerful than Minix was at the time.  I also share clean pages.
      
       - we still don't have an /sbin/init, but we now load /etc/rc at bootup,
         and the kernel will loop, spawning shells forever. That makes it easier
         to test things.
      
       - scaffolding for math emulation introduced.
      
       - Ted Ts'o shows up as a coder. Ted implements:
              o "#!" escape handling for executables
              o fixes for some file permission handling
              o "sticky" directory bit
              o first "malloc()/free()" implementation.
                (this one is horrible: the free needs the size for good
                 performance, which will result in years of "free_s()" pains)
              o adds BSD-style setreuid/gid() handling
              o allows us to specify root device at image build time
              o cleanups of some of the uglier direct %fs-register accesses
      
       - Galen Hunt shows up as a coder: he's added code to handle different
         video card detection (whereas my original one just handled VGA, we
         now handle CGA, MGA, EGA and VGA)
      
       - The console can beep now: John T Kohl (who also does the tty KILL
         char handling)
      
       - we also now have German (Wolfgang Thiel) and French (Marc Corsini)
         keyboard maps.  World Domination!
      
      Btw, if you wonder what the "Urgel" comments are - I was still fairly
      Swedish-speaking, and "Urgel" is what I would these days write as "Ugh".
      
      It's a sign of trouble or ugly code.  The floppy driver in particular is
      clearly not something I'm very proud of ;).
      b65b60f4
    • Linus Torvalds's avatar
      Linux 0.10 (November 11, 1991 ???) · fa1ec100
      Linus Torvalds authored
      Likely correct 0.10: these were re-created from the RCS tree that Ted
      Ts'o had, no known pristine 0.10 tree (or, sadly, 0.02 and 0.03 trees)
      exist any more.
      
      Linux-0.10 was actually a major step.  It was _almost_ able to host
      itself, and if I remember correctly, a small patch I posted to the
      newsgroup a few days later got the buffer cache handling stable enough
      that Linux could now compile itself under itself without running out of
      memory due to a memory leak.
      
      Apart from bugfixes, the major update here is the support for
      mount/umount.  But you can also tell that others are starting to test
      out this thing, since the harddisk geometry is now auto-sensed, and we
      support the US keyboard layout in addition to the Finnish one.
      
      (This is also the first actual thing from the outside: the US keyboard
      layout tables came from Alfred Leung, although with major editing by me.)
      
       - add copyright messages ("(C) 1991  Linus Torvalds")
      
         Nobody else is really doing coding (yet..) but clearly I'm starting
         to be a lot more aware of other people here.
      
       - split up boot/boot.s into boot/bootsect.s and boot/setup.s
       - autodetect floppy type for booting
       - make root device and boot device configurable
      
       - support up to 16MB of physical memory (instead of just 8MB ;)
      
         Whee. We're clearly moving into the "big iron" phase of Linux.
      
       - move drivers around.  We now have separate subdirectories for
         character device drivers (tty and memory) and block device drivers.
      
       - initial floppy driver support!
      
         You can see how the "block layer" interfaces evolved directly from
         moving parts of the original hd.c driver into ll_rw_block.c and
         making them "generic".
      
       - make file reading do simple read-ahead
       - make file writing avoid reading in blocks that are totally overwritten
       - add support for /dev/port and /dev/null (!!)
       - improve pipe throughput
      
       - add support for sigaction(), not just old-style signal()
      
         This also rewrites most of the signal code in C rather than assembly.
      
       - add "mknod()" and "mount()"/"umount()" system calls, and support
         for traversing over mount-points.
      
       - add "sessions" and setsid(), so that we get proper SIGHUP's
      fa1ec100
    • Linus Torvalds's avatar
      Linux-0.01 (September 17, 1991) · bb441db1
      Linus Torvalds authored
      This is the initial 0.01 kernel as found on various history sites.
      
      Fun facts:
      
       - kernel/Makefile still calls it the FREAX kernel
      
       - this was in a more innocent age, when the only copyright notice
         is a single "(C) 1991 Linus Torvalds" in lib/string.h
      
       - the keyboard driver was still in all assembly language, with a
         hardcoded map for (7-bit) Finnish keyboards. At least I had converted
         the VT100 emulation from assembly to C. Too bad I didn't keep the
         _really_ old code around for historical interest.
      
       - All the early kernels wanted a special version of gcc to compile: I
         had made extensions to gcc-1.40 to make it use the x86 string
         instructions for things like "memcpy()" using the "-mstring-insns"
         command line option.
      
       - Also, note that newer versions of gcc (which do have the inline
         intrisics, quite independently of my early -mstring-insns hack) will
         not accept the code: it needs a compiler that outputs old-style a.out
         format, and that accepts some of the strange inline assembly that I
         used.
      
       - In short: you really need some stone-age tools to actually compile
         this, if you actually want to.  And if you actually want to _run_ it
         too, you need to have some old hardware and most likely edit some of
         the hardcoded numbers too.  The harddisk driver has two different
         hardcoded settings: my harddisk, and Lasu's harddisk.
      
      Statistics:
      
      It's 88 files with about ten thousand lines, written by yours truly
      except for the vsprintf routine which was co-written with Lars
      Wirzenius.  Lasu wasn't as huge a fan of inline assembly as I was, thus
      the comment
      
              "Wirzenius wrote this portably, Torvalds fucked it up :-)"
      
      I think that comment pretty much sums it up ;)
      
      Original release notes for 0.01 follow:
      
               Notes for linux release 0.01
      
               0. Contents of this directory
      
      linux-0.01.tar.Z - sources to the kernel
      bash.Z - compressed bash binary if you want to test it
      update.Z - compressed update binary
      RELNOTES-0.01 - this file
      
               1. Short intro
      
      This is a free minix-like kernel for i386(+) based AT-machines.  Full
      source is included, and this source has been used to produce a running
      kernel on two different machines.  Currently there are no kernel
      binaries for public viewing, as they have to be recompiled for different
      machines.  You need to compile it with gcc (I use 1.40, don't know if
      1.37.1 will handle all __asm__-directives), after having changed the
      relevant configuration file(s).
      
      As the version number (0.01) suggests this is not a mature product.
      Currently only a subset of AT-hardware is supported (hard-disk, screen,
      keyboard and serial lines), and some of the system calls are not yet
      fully implemented (notably mount/umount aren't even implemented).  See
      comments or readme's in the code.
      
      This version is also meant mostly for reading - ie if you are interested
      in how the system looks like currently.  It will compile and produce a
      working kernel, and though I will help in any way I can to get it
      working on your machine (mail me), it isn't really supported.  Changes
      are frequent, and the first "production" version will probably differ
      wildly from this pre-alpha-release.
      
      Hardware needed for running linux:
              - 386 AT
              - VGA/EGA screen
              - AT-type harddisk controller (IDE is fine)
              - Finnish keyboard (oh, you can use a US keyboard, but not
                without some practise :-)
      
      The Finnish keyboard is hard-wired, and as I don't have a US one I
      cannot change it without major problems. See kernel/keyboard.s for
      details. If anybody is willing to make an even partial port, I'd be
      grateful. Shouldn't be too hard, as it's tabledriven (it's assembler
      though, so ...)
      
      Although linux is a complete kernel, and uses no code from minix or
      other sources, almost none of the support routines have yet been coded.
      Thus you currently need minix to bootstrap the system. It might be
      possible to use the free minix demo-disk to make a filesystem and run
      linux without having minix, but I don't know...
      
               2. Copyrights etc
      
      This kernel is (C) 1991 Linus Torvalds, but all or part of it may be
      redistributed provided you do the following:
      
              - Full source must be available (and free), if not with the
                distribution then at least on asking for it.
      
              - Copyright notices must be intact. (In fact, if you distribute
                only parts of it you may have to add copyrights, as there aren't
                (C)'s in all files.) Small partial excerpts may be copied
                without bothering with copyrights.
      
              - You may not distibute this for a fee, not even "handling"
                costs.
      
      Mail me at "torvalds@kruuna.helsinki.fi" if you have any questions.
      
      Sadly, a kernel by itself gets you nowhere. To get a working system you
      need a shell, compilers, a library etc. These are separate parts and may
      be under a stricter (or even looser) copyright. Most of the tools used
      with linux are GNU software and are under the GNU copyleft. These tools
      aren't in the distribution - ask me (or GNU) for more info.
      
               3. Short technical overview of the kernel.
      
      The linux kernel has been made under minix, and it was my original idea
      to make it binary compatible with minix. That was dropped, as the
      differences got bigger, but the system still resembles minix a great
      deal. Some of the key points are:
      
              - Efficient use of the possibilities offered by the 386 chip.
                Minix was written on a 8088, and later ported to other
                machines - linux takes full advantage of the 386 (which is
                nice if you /have/ a 386, but makes porting very difficult)
      
              - No message passing, this is a more traditional approach to
                unix. System calls are just that - calls. This might or might
                not be faster, but it does mean we can dispense with some of
                the problems with messages (message queues etc). Of course, we
                also miss the nice features :-p.
      
              - Multithreaded FS - a direct consequence of not using messages.
                This makes the filesystem a bit (a lot) more complicated, but
                much nicer. Coupled with a better scheduler, this means that
                you can actually run several processes concurrently without
                the performance hit induced by minix.
      
              - Minimal task switching. This too is a consequence of not using
                messages. We task switch only when we really want to switch
                tasks - unlike minix which task-switches whatever you do. This
                means we can more easily implement 387 support (indeed this is
                already mostly implemented)
      
              - Interrupts aren't hidden. Some people (among them Tanenbaum)
                think interrupts are ugly and should be hidden. Not so IMHO.
                Due to practical reasons interrupts must be mainly handled by
                machine code, which is a pity, but they are a part of the code
                like everything else. Especially device drivers are mostly
                interrupt routines - see kernel/hd.c etc.
      
              - There is no distinction between kernel/fs/mm, and they are all
                linked into the same heap of code. This has it's good sides as
                well as bad. The code isn't as modular as the minix code, but
                on the other hand some things are simpler. The different parts
                of the kernel are under different sub-directories in the
                source tree, but when running everything happens in the same
                data/code space.
      
      The guiding line when implementing linux was: get it working fast. I
      wanted the kernel simple, yet powerful enough to run most unix software.
      The file system I couldn't do much about - it needed to be minix
      compatible for practical reasons, and the minix filesystem was simple
      enough as it was. The kernel and mm could be simplified, though:
      
              - Just one data structure for tasks. "Real" unices have task
                information in several places, I wanted everything in one
                place.
      
              - A very simple memory management algorithm, using both the
                paging and segmentation capabilities of the i386. Currently
                MM is just two files - memory.c and page.s, just a couple of
                hundreds of lines of code.
      
      These decisions seem to have worked out well - bugs were easy to spot,
      and things work.
      
               4. The "kernel proper"
      
      All the routines handling tasks are in the subdirectory "kernel". These
      include things like 'fork' and 'exit' as well as scheduling and minor
      system calls like 'getpid' etc. Here are also the handlers for most
      exceptions and traps (not page faults, they are in mm), and all
      low-level device drivers (get_hd_block, tty_write etc). Currently all
      faults lead to a exit with error code 11 (Segmentation fault), and the
      system seems to be relatively stable ("crashme" hasn't - yet).
      
               5. Memory management
      
      This is the simplest of all parts, and should need only little changes.
      It contains entry-points for some things that the rest of the kernel
      needs, but mostly copes on it's own, handling page faults as they
      happen. Indeed, the rest of the kernel usually doesn't actively allocate
      pages, and just writes into user space, letting mm handle any possible
      'page-not-present' errors.
      
      Memory is dealt with in two completely different ways - by paging and
      segmentation.  First the 386 VM-space (4GB) is divided into a number of
      segments (currently 64 segments of 64Mb each), the first of which is the
      kernel memory segment, with the complete physical memory identity-mapped
      into it.  All kernel functions live within this area.
      
      Tasks are then given one segment each, to use as they wish. The paging
      mechanism sees to filling the segment with the appropriate pages,
      keeping track of any duplicate copies (created at a 'fork'), and making
      copies on any write. The rest of the system doesn't need to know about
      all this.
      
               6. The file system
      
      As already mentioned, the linux FS is the same as in minix. This makes
      crosscompiling from minix easy, and means you can mount a linux
      partition from minix (or the other way around as soon as I implement
      mount :-). This is only on the logical level though - the actual
      routines are very different.
      
              NOTE! Minix-1.6.16 seems to have a new FS, with minor
              modifications to the 1.5.10 I've been using. Linux
              won't understand the new system.
      
      The main difference is in the fact that minix has a single-threaded
      file-system and linux hasn't. Implementing a single-threaded FS is much
      easier as you don't need to worry about other processes allocating
      buffer blocks etc while you do something else. It also means that you
      lose some of the multiprocessing so important to unix.
      
      There are a number of problems (deadlocks/raceconditions) that the linux
      kernel needed to address due to multi-threading.  One way to inhibit
      race-conditions is to lock everything you need, but as this can lead to
      unnecessary blocking I decided never to lock any data structures (unless
      actually reading or writing to a physical device).  This has the nice
      property that dead-locks cannot happen.
      
      Sadly it has the not so nice property that race-conditions can happen
      almost everywhere.  These are handled by double-checking allocations etc
      (see fs/buffer.c and fs/inode.c).  Not letting the kernel schedule a
      task while it is in supervisor mode (standard unix practise), means that
      all kernel/fs/mm actions are atomic (not counting interrupts, and we are
      careful when writing those) if you don't call 'sleep', so that is one of
      the things we can count on.
      
               7. Apologies :-)
      
      This isn't yet the "mother of all operating systems", and anyone who
      hoped for that will have to wait for the first real release (1.0), and
      even then you might not want to change from minix.  This is a source
      release for those that are interested in seeing what linux looks like,
      and it's not really supported yet.  Anyone with questions or suggestions
      (even bug-reports if you decide to get it working on your system) is
      encouraged to mail me.
      
               8. Getting it working
      
      Most hardware dependancies will have to be compiled into the system, and
      there a number of defines in the file "include/linux/config.h" that you
      have to change to get a personalized kernel.  Also you must uncomment
      the right "equ" in the file boot/boot.s, telling the bootup-routine what
      kind of device your A-floppy is.  After that a simple "make" should make
      the file "Image", which you can copy to a floppy (cp Image /dev/PS0 is
      what I use with a 1.44Mb floppy).  That's it.
      
      Without any programs to run, though, the kernel cannot do anything. You
      should find binaries for 'update' and 'bash' at the same place you found
      this, which will have to be put into the '/bin' directory on the
      specified root-device (specified in config.h). Bash must be found under
      the name '/bin/sh', as that's what the kernel currently executes. Happy
      hacking.
      
               Linus Torvalds "torvalds@kruuna.helsinki.fi"
               Petersgatan 2 A 2
               00140 Helsingfors 14
               FINLAND
      bb441db1