Re: ADI Blackfin porting for kernel-2.6.13

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Friday 23 September 2005 07:37, Luke Yang wrote:
> Hi all,
> 
>    This is the ADI Blackfin patch for kernel 2.6.13.  I know this
> patch doesn' meet the kernel patch submission format, but this patch
> is only for reviewing, shows the changes we made.  And I'll send new
> patch for kernel 2.6.14 for you to merge into kernel.
> 
>    This patch mainly includes the arch/bfinnommu architecture files
> and some blackfin specific drivers.  The only change to the common
> files is that we change binfmt.c and related header file, added one
> flat binary format for blackfin. We are considering removing this
> change in next release.
> 
>   The patch is too big to put here , url is
> http://blackfin.uclinux.org/frs/download.php/570/bfinnonnu-linux-2.6.13.patch
> 

Hi Luke,

Since you ask for review I decided to give you a hand.
I've started to look through your patch and started out by looking through 
the documentation bits 

  Documentation/blackfin/00-INDEX
  Documentation/blackfin/Filesystems
  Documentation/blackfin/cache-lock.txt
  Documentation/uml/UserModeLinux-HOWTO.txt

and I have a few suggested changes (see attached patch).
I'll be taking a look at the rest of the patch as well, just wanted to send you
the bits I'd already done for the documentation - its a pretty large patch, so
I'm going through it in little bits :)

Hope this is useful to you. More feedback on its way.


-- 
Jesper Juhl <[email protected]>


--- linux-2.6.14-rc2-git3+blackfin/Documentation/blackfin/00-INDEX	2005-09-24 21:28:40.000000000 +0200
+++ linux-2.6.14-rc2-git3/Documentation/blackfin/00-INDEX	2005-09-24 17:41:26.000000000 +0200
@@ -5,7 +5,7 @@
 	- HOWTO for blackfin cache locking.
 
 cachefeatures.txt
-	- Supported cache features
+	- Supported cache features.
 
 Filesystems
-	- Required for mounting the root file systems.
+	- Requirements for mounting the root file system.
--- linux-2.6.14-rc2-git3+blackfin/Documentation/blackfin/Filesystems	2005-09-24 21:28:40.000000000 +0200
+++ linux-2.6.14-rc2-git3/Documentation/blackfin/Filesystems	2005-09-24 17:55:14.000000000 +0200
@@ -1,4 +1,4 @@
-		How to mount the a Root File system in uClinux/Blackfin
+		How to mount the root file system in uClinux/Blackfin
 		-----------------------------------------------------
 
 1	Mounting EXT3 File system.
@@ -7,9 +7,11 @@
 	Creating an EXT3 File system for uClinux/Blackfin:
 	
 
-Please follow the steps to form the Ext3 File system and mount the same as root file system.
+Please follow the steps to form the EXT3 File system and mount the same as root
+file system.
 
-a	Make an ext3 file system as large as you want the final root file system.
+a	Make an ext3 file system as large as you want the final root file
+	system.
 	
 		mkfs.ext3  /dev/ram0 <your-rootfs-size-in-1k-blocks>
 	
@@ -24,8 +26,8 @@
 		
 		(For ex: cp -af uClinux-dist/romfs/* ./test)		
 
-d	If you have done everything right till now you should be able to see the required
-	"root" dir's (that's etc, root, bin, lib, sbin...)
+d	If you have done everything right till now you should be able to see
+	the required "root" dir's (that's etc, root, bin, lib, sbin...)
 
 e	Now unmount the file system
 
@@ -33,22 +35,26 @@
 
 f	Create the root file system image.
 
-		dd if=/dev/ram0 bs=1k count=<your-rootfs-size-in-1k-blocks>  > ext3fs.img
+		dd if=/dev/ram0 bs=1k count=<your-rootfs-size-in-1k-blocks> \
+		> ext3fs.img
 
-	
-Now you have to tell the kernel that will be mounting this file system as rootfs.
-So do a make menuconfig under kernel and select the Ext3 journalling file system support 
-under File system --> submenu.
+
+Now you have to tell the kernel that will be mounting this file system as
+rootfs.
+So do a make menuconfig under kernel and select the Ext3 journaling file system
+support under File system --> submenu.
 
 
 2.	Mounting EXT2 File system.
 	-------------------------
 
-By default, the ext2 file system image will be created if you invoke make
-from the top uClinux-dist directory.
+By default the ext2 file system image will be created if you invoke make from
+the top uClinux-dist directory.
+
 
 3.	Mounting CRAMFS File System
 	----------------------------
+
 To create a CRAMFS file system image execute the command
 
 	mkfs.cramfs ./test cramfs.img
@@ -58,6 +64,7 @@
 
 4.	Mounting ROMFS File System
 	--------------------------
+
 To create a ROMFS file system image execute the command
 
 	genromfs -v -V "ROMdisk" -f romfs.img -d ./test
@@ -67,14 +74,14 @@
 
 5.	Mounting the JFFS2 Filesystem
 	-----------------------------
+
 To create a compressed JFFS filesystem (JFFS2), please execute the command
 
 	mkfs.jffs2 -d ./test -o jffs2.img
 	
 	where ./test is the target directory.
 
-However, Please make sure the following in kernel config.
-
+However, please make sure the following is in your kernel config.
 
 /*
  * RAM/ROM/Flash chip drivers
@@ -88,11 +95,11 @@
 #define CONFIG_MTD_BF533 1
 #undef CONFIG_MTD_UCLINUX 
 
-Through the u-boot boot loader, fuse the jffs2.img in the corresponding 
+Through the u-boot boot loader, use the jffs2.img in the corresponding 
 partition made in linux-2.6.x/drivers/mtd/maps/bf533_flash.c.
 
-NOTE - 	Currently Flash driver is available only for EZKIT. For STAMP 
-	driver watch out soon. 
+NOTE - 	Currently the Flash driver is available only for EZKIT. Watch out for a
+	STAMP driver soon. 
 
 
 6. 	Mounting the NFS File system
@@ -100,7 +107,8 @@
 	
 	For mounting the NFS please do the following in the kernel config.
 
-	In Networking Support ---> Networking options -->TCP/IP netwoking-> IP: kernel level autoconfiguration 
+	In Networking Support --> Networking options --> TCP/IP networking --> 
+		IP: kernel level autoconfiguration 
 	
 	Enable BOOTP Support.
 
@@ -110,15 +118,14 @@
 
 	In File system --> Network File system, Enable
 
-		NFS file system support-> NFSv3 client support
+		NFS file system support --> NFSv3 client support
 		Root File system on NFS
 
-	in uClibc menuconfig , do the following
+	in uClibc menuconfig, do the following
 	In Networking Support 
 		enable Remote Procedure Call (RPC) support
 			Full RPC Support
 
-
 	On the Host side, ensure that /etc/dhcpd.conf looks something like this
 
 		ddns-update-style ad-hoc;
@@ -126,23 +133,20 @@
 		subnet 10.100.4.0 netmask 255.255.255.0 {
 		default-lease-time 122209600;
 		max-lease-time 31557600;
-		group   {
-		host bf533      {
-		hardware ethernet 00:CF:52:49:C3:01;
-		fixed-address 10.100.4.50;
-		option root-path "/home/nfsmount";
-		}
+		group {
+			host bf533 {
+				hardware ethernet 00:CF:52:49:C3:01;
+				fixed-address 10.100.4.50;
+				option root-path "/home/nfsmount";
+			}
 		}
 	
 	ensure that /etc/exports looks something like this
 		/home/nfsmount *(rw,no_root_squash,no_all_squash)
 	
-	 run the following commands as root
+	 run the following commands as root (may differ depending on your
+	 distribution) :
 		-  service nfs start
 		-  service portmap start
 		-  service dhcpd start
-		-  /usr/sbin/exportfs  
-										 			
-	
-	
-
+		-  /usr/sbin/exportfs
--- linux-2.6.14-rc2-git3+blackfin/Documentation/blackfin/cache-lock.txt	2005-09-24 21:28:40.000000000 +0200
+++ linux-2.6.14-rc2-git3/Documentation/blackfin/cache-lock.txt	2005-09-24 17:57:47.000000000 +0200
@@ -1,31 +1,31 @@
-How to Lock your code into the cache in uClinux/blackfin 
---------------------------------------------------------
+How to lock your code in cache in uClinux/blackfin
+--------------------------------------------------
 
-There are only few steps required to lock your code into the cache.
+There are only a few steps required to lock your code into the cache.
 Currently you can lock the code by Way.
 
 Below are the interface provided for locking the cache.
 
+
 1. cache_grab_lock(int Ways);
 
 This function grab the lock for locking your code into the cache specified
 by Ways.
 
+
 2. cache_lock(int Ways);
 
 This function should be called after your critical code has been executed.
-Once the critical code exits, the code is now loaded into the cache.This
+Once the critical code exits, the code is now loaded into the cache. This
 function locks the code into the cache.
 
 
 So, the example sequence will be:
 
 	cache_grab_lock(WAY0_L);	/* Grab the lock */
-	
+
 	critical_code();		/* Execute the code of interest */
 
-	cache_lock(WAY0_L);		/* Lock the cache*/
+	cache_lock(WAY0_L);		/* Lock the cache */
 
 Where WAY0_L signifies WAY0 locking.
-
-
--- linux-2.6.14-rc2-git3+blackfin/Documentation/uml/UserModeLinux-HOWTO.txt	2005-09-24 21:28:41.000000000 +0200
+++ linux-2.6.14-rc2-git3/Documentation/uml/UserModeLinux-HOWTO.txt	2005-09-24 18:11:09.000000000 +0200
@@ -190,13 +190,13 @@
 
   ______________________________________________________________________
 
-  11..  IInnttrroodduuccttiioonn
+  1. Introduction
 
   Welcome to User Mode Linux.  It's going to be fun.
 
 
 
-  11..11..  HHooww iiss UUsseerr MMooddee LLiinnuuxx DDiiffffeerreenntt??
+  1.1.  How is User Mode Linux Different?
 
   Normally, the Linux Kernel talks straight to your hardware (video
   card, keyboard, hard drives, etc), and any programs which run ask the
@@ -237,7 +237,7 @@
 
 
 
-  11..22..  WWhhyy WWoouulldd II WWaanntt UUsseerr MMooddee LLiinnuuxx??
+  1.2.  Why Would I Want User Mode Linux?
 
 
   1. If User Mode Linux crashes, your host kernel is still fine.
@@ -262,12 +262,12 @@
 
 
 
-  22..  CCoommppiilliinngg tthhee kkeerrnneell aanndd mmoodduulleess
+  2.  Compiling the kernel and modules
 
 
 
 
-  22..11..  CCoommppiilliinngg tthhee kkeerrnneell
+  2.1.  Compiling the kernel
 
 
   Compiling the user mode kernel is just like compiling any other
@@ -404,7 +404,7 @@
 
 
 
-  22..22..  CCoommppiilliinngg aanndd iinnssttaalllliinngg kkeerrnneell mmoodduulleess
+  2.2.  Compiling and installing kernel modules
 
   UML modules are built in the same way as the native kernel (with the
   exception of the 'ARCH=um' that you always need for UML):
@@ -468,19 +468,19 @@
 
 
 
-  22..33..  CCoommppiilliinngg aanndd iinnssttaalllliinngg uummll__uuttiilliittiieess
+  2.3.  Compiling and installing uml_utilities
 
   Many features of the UML kernel require a user-space helper program,
   so a uml_utilities package is distributed separately from the kernel
   patch which provides these helpers. Included within this is:
 
-  +o  port-helper - Used by consoles which connect to xterms or ports
+  +  port-helper - Used by consoles which connect to xterms or ports
 
-  +o  tunctl - Configuration tool to create and delete tap devices
+  +  tunctl - Configuration tool to create and delete tap devices
 
-  +o  uml_net - Setuid binary for automatic tap device configuration
+  +  uml_net - Setuid binary for automatic tap device configuration
 
-  +o  uml_switch - User-space virtual switch required for daemon
+  +  uml_switch - User-space virtual switch required for daemon
      transport
 
      The uml_utilities tree is compiled with:
@@ -505,11 +505,11 @@
 
 
 
-  33..  RRuunnnniinngg UUMMLL aanndd llooggggiinngg iinn
+  3.  Running UML and logging in
 
 
 
-  33..11..  RRuunnnniinngg UUMMLL
+  3.1.  Running UML
 
   It runs on 2.2.15 or later, and all 2.4 kernels.
 
@@ -536,7 +536,7 @@
 
 
 
-  33..22..  LLooggggiinngg iinn
+  3.2.  Logging in
 
 
 
@@ -550,7 +550,7 @@
 
   There are a couple of other ways to log in:
 
-  +o  On a virtual console
+  +  On a virtual console
 
 
 
@@ -562,7 +562,7 @@
 
 
 
-  +o  Over the serial line
+  +  Over the serial line
 
 
      In the boot output, find a line that looks like:
@@ -585,7 +585,7 @@
 
 
 
-  +o  Over the net
+  +  Over the net
 
 
      If the network is running, then you can telnet to the virtual
@@ -596,13 +596,13 @@
   down and the process will exit.
 
 
-  33..33..  EExxaammpplleess
+  3.3.  Examples
 
   Here are some examples of UML in action:
 
-  +o  A login session <http://user-mode-linux.sourceforge.net/login.html>
+  +  A login session <http://user-mode-linux.sourceforge.net/login.html>
 
-  +o  A virtual network <http://user-mode-linux.sourceforge.net/net.html>
+  +  A virtual network <http://user-mode-linux.sourceforge.net/net.html>
 
 
 
@@ -610,12 +610,12 @@
 
 
 
-  44..  UUMMLL oonn 22GG//22GG hhoossttss
+  4.  UML on 2G/2G hosts
 
 
 
 
-  44..11..  IInnttrroodduuccttiioonn
+  4.1.  Introduction
 
 
   Most Linux machines are configured so that the kernel occupies the
@@ -628,7 +628,7 @@
 
 
 
-  44..22..  TThhee pprroobblleemm
+  4.2.  The problem
 
 
   The prebuilt UML binaries on this site will not run on 2G/2G hosts
@@ -640,7 +640,7 @@
 
 
 
-  44..33..  TThhee ssoolluuttiioonn
+  4.3.  The solution
 
 
   The fix for this is to rebuild UML from source after enabling
@@ -658,7 +658,7 @@
 
 
 
-  55..  SSeettttiinngg uupp sseerriiaall lliinneess aanndd ccoonnssoolleess
+  5.  Setting up serial lines and consoles
 
 
   It is possible to attach UML serial lines and consoles to many types
@@ -668,12 +668,12 @@
   You can attach them to host ptys, ttys, file descriptors, and ports.
   This allows you to do things like
 
-  +o  have a UML console appear on an unused host console,
+  +  have a UML console appear on an unused host console,
 
-  +o  hook two virtual machines together by having one attach to a pty
+  +  hook two virtual machines together by having one attach to a pty
      and having the other attach to the corresponding tty
 
-  +o  make a virtual machine accessible from the net by attaching a
+  +  make a virtual machine accessible from the net by attaching a
      console to a port on the host.
 
 
@@ -681,7 +681,7 @@
 
 
 
-  55..11..  SSppeecciiffyyiinngg tthhee ddeevviiccee
+  5.1.  Specifying the device
 
   Devices are specified with "con" or "ssl" (console or serial line,
   respectively), optionally with a device number if you are talking
@@ -708,13 +708,13 @@
 
 
 
-  55..22..  SSppeecciiffyyiinngg tthhee cchhaannnneell
+  5.2.  Specifying the channel
 
   There are a number of different types of channels to attach a UML
   device to, each with a different way of specifying exactly what to
   attach to.
 
-  +o  pseudo-terminals - device=pty pts terminals - device=pts
+  +  pseudo-terminals - device=pty pts terminals - device=pts
 
 
      This will cause UML to allocate a free host pseudo-terminal for the
@@ -722,20 +722,20 @@
      log.  You access it by attaching a terminal program to the
      corresponding tty:
 
-  +o  screen /dev/pts/n
+  +  screen /dev/pts/n
 
-  +o  screen /dev/ttyxx
+  +  screen /dev/ttyxx
 
-  +o  minicom -o -p /dev/ttyxx - minicom seems not able to handle pts
+  +  minicom -o -p /dev/ttyxx - minicom seems not able to handle pts
      devices
 
-  +o  kermit - start it up, 'open' the device, then 'connect'
+  +  kermit - start it up, 'open' the device, then 'connect'
 
 
 
 
 
-  +o  terminals - device=tty:tty device file
+  +  terminals - device=tty:tty device file
 
 
      This will make UML attach the device to the specified tty (i.e
@@ -754,7 +754,7 @@
 
 
 
-  +o  xterms - device=xterm
+  +  xterms - device=xterm
 
 
      UML will run an xterm and the device will be attached to it.
@@ -763,7 +763,7 @@
 
 
 
-  +o  Port - device=port:port number
+  +  Port - device=port:port number
 
 
      This will attach the UML devices to the specified host port.
@@ -807,7 +807,7 @@
 
 
 
-  +o  already-existing file descriptors - device=file descriptor
+  +  already-existing file descriptors - device=file descriptor
 
 
      If you set up a file descriptor on the UML command line, you can
@@ -825,7 +825,7 @@
 
 
 
-  +o  Nothing - device=null
+  +  Nothing - device=null
 
 
      This allows the device to be opened, in contrast to 'none', but
@@ -836,7 +836,7 @@
 
 
 
-  +o  None - device=none
+  +  None - device=none
 
 
      This causes the device to disappear.  If you are using devfs, the
@@ -869,7 +869,7 @@
 
 
 
-  55..33..  EExxaammpplleess
+  5.3.  Examples
 
   There are a number of interesting things you can do with this
   capability.
@@ -922,7 +922,7 @@
   prompt of the other virtual machine.
 
 
-  66..  SSeettttiinngg uupp tthhee nneettwwoorrkk
+  6.  Setting up the network
 
 
 
@@ -942,19 +942,19 @@
   There are currently five transport types available for a UML virtual
   machine to exchange packets with other hosts:
 
-  +o  ethertap
+  +  ethertap
 
-  +o  TUN/TAP
+  +  TUN/TAP
 
-  +o  Multicast
+  +  Multicast
 
-  +o  a switch daemon
+  +  a switch daemon
 
-  +o  slip
+  +  slip
 
-  +o  slirp
+  +  slirp
 
-  +o  pcap
+  +  pcap
 
      The TUN/TAP, ethertap, slip, and slirp transports allow a UML
      instance to exchange packets with the host.  They may be directed
@@ -977,28 +977,28 @@
   With so many host transports, which one should you use?  Here's when
   you should use each one:
 
-  +o  ethertap - if you want access to the host networking and it is
+  +  ethertap - if you want access to the host networking and it is
      running 2.2
 
-  +o  TUN/TAP - if you want access to the host networking and it is
+  +  TUN/TAP - if you want access to the host networking and it is
      running 2.4.  Also, the TUN/TAP transport is able to use a
      preconfigured device, allowing it to avoid using the setuid uml_net
      helper, which is a security advantage.
 
-  +o  Multicast - if you want a purely virtual network and you don't want
+  +  Multicast - if you want a purely virtual network and you don't want
      to set up anything but the UML
 
-  +o  a switch daemon - if you want a purely virtual network and you
+  +  a switch daemon - if you want a purely virtual network and you
      don't mind running the daemon in order to get somewhat better
      performance
 
-  +o  slip - there is no particular reason to run the slip backend unless
+  +  slip - there is no particular reason to run the slip backend unless
      ethertap and TUN/TAP are just not available for some reason
 
-  +o  slirp - if you don't have root access on the host to setup
+  +  slirp - if you don't have root access on the host to setup
      networking, or if you don't want to allocate an IP to your UML
 
-  +o  pcap - not much use for actual network connectivity, but great for
+  +  pcap - not much use for actual network connectivity, but great for
      monitoring traffic on the host
 
      Ethertap is available on 2.4 and works fine.  TUN/TAP is preferred
@@ -1010,7 +1010,7 @@
      exploit the helper's root privileges.
 
 
-  66..11..  GGeenneerraall sseettuupp
+  6.1.  General setup
 
   First, you must have the virtual network enabled in your UML.  If are
   running a prebuilt kernel from this site, everything is already
@@ -1079,7 +1079,7 @@
 
 
 
-  66..22..  UUsseerrssppaaccee ddaaeemmoonnss
+  6.2.  Userspace daemons
 
   You will likely need the setuid helper, or the switch daemon, or both.
   They are both installed with the RPM and deb, so if you've installed
@@ -1095,7 +1095,7 @@
 
 
 
-  66..33..  SSppeecciiffyyiinngg eetthheerrnneett aaddddrreesssseess
+  6.3.  Specifying ethernet addresses
 
   Below, you will see that the TUN/TAP, ethertap, and daemon interfaces
   allow you to specify hardware addresses for the virtual ethernet
@@ -1107,11 +1107,11 @@
   sufficient to guarantee a unique hardware address for the device.  A
   couple of exceptions are:
 
-  +o  Another set of virtual ethernet devices are on the same network and
+  +  Another set of virtual ethernet devices are on the same network and
      they are assigned hardware addresses using a different scheme which
      may conflict with the UML IP address-based scheme
 
-  +o  You aren't going to use the device for IP networking, so you don't
+  +  You aren't going to use the device for IP networking, so you don't
      assign the device an IP address
 
      If you let the driver provide the hardware address, you should make
@@ -1133,7 +1133,7 @@
 
 
 
-  66..44..  UUMMLL iinntteerrffaaccee sseettuupp
+  6.4.  UML interface setup
 
   Once the network devices have been described on the command line, you
   should boot UML and log in.
@@ -1215,7 +1215,7 @@
 
 
 
-  66..55..  MMuullttiiccaasstt
+  6.5.  Multicast
 
   The simplest way to set up a virtual network between multiple UMLs is
   to use the mcast transport.  This was written by Harald Welte and is
@@ -1268,7 +1268,7 @@
 
 
 
-  66..66..  TTUUNN//TTAAPP wwiitthh tthhee uummll__nneett hheellppeerr
+  6.6.  TUN/TAP with the uml_net helper
 
   TUN/TAP is the preferred mechanism on 2.4 to exchange packets with the
   host.  The TUN/TAP backend has been in UML since 2.4.9-3um.
@@ -1321,10 +1321,10 @@
   There are a couple potential problems with running the TUN/TAP
   transport on a 2.4 host kernel
 
-  +o  TUN/TAP seems not to work on 2.4.3 and earlier.  Upgrade the host
+  +  TUN/TAP seems not to work on 2.4.3 and earlier.  Upgrade the host
      kernel or use the ethertap transport.
 
-  +o  With an upgraded kernel, TUN/TAP may fail with
+  +  With an upgraded kernel, TUN/TAP may fail with
 
 
        File descriptor in bad state
@@ -1343,7 +1343,7 @@
 
 
 
-  66..77..  TTUUNN//TTAAPP wwiitthh aa pprreeccoonnffiigguurreedd ttaapp ddeevviiccee
+  6.7.  TUN/TAP with a preconfigured tap device
 
   If you prefer not to have UML use uml_net (which is somewhat
   insecure), with UML 2.4.17-11, you can set up a TUN/TAP device
@@ -1351,7 +1351,7 @@
   there is no need for root assistance.  Setting up the device is done
   as follows:
 
-  +o  Create the device with tunctl (available from the UML utilities
+  +  Create the device with tunctl (available from the UML utilities
      tarball)
 
 
@@ -1365,7 +1365,7 @@
   where uid is the user id or username that UML will be run as.  This
   will tell you what device was created.
 
-  +o  Configure the device IP (change IP addresses and device name to
+  +  Configure the device IP (change IP addresses and device name to
      suit)
 
 
@@ -1377,7 +1377,7 @@
 
 
 
-  +o  Set up routing and arping if desired - this is my recipe, there are
+  +  Set up routing and arping if desired - this is my recipe, there are
      other ways of doing the same thing
 
 
@@ -1412,7 +1412,7 @@
   utility which reads the information from a config file and sets up
   devices at boot time.
 
-  +o  Rather than using up two IPs and ARPing for one of them, you can
+  +  Rather than using up two IPs and ARPing for one of them, you can
      also provide direct access to your LAN by the UML by using a
      bridge.
 
@@ -1491,7 +1491,7 @@
   Note that 'br0' should be setup using ifconfig with the existing IP
   address of eth0, as eth0 no longer has its own IP.
 
-  +o
+  +
 
 
      Also, the /dev/net/tun device must be writable by the user running
@@ -1512,11 +1512,11 @@
   devices and chgrp /dev/net/tun to that group with mode 664 or 660.
 
 
-  +o  Once the device is set up, run UML with 'eth0=tuntap,device name'
+  +  Once the device is set up, run UML with 'eth0=tuntap,device name'
      (i.e. 'eth0=tuntap,tap0') on the command line (or do it with the
      mconsole config command).
 
-  +o  Bring the eth device up in UML and you're in business.
+  +  Bring the eth device up in UML and you're in business.
 
      If you don't want that tap device any more, you can make it non-
      persistent with
@@ -1539,7 +1539,7 @@
 
 
 
-  66..88..  EEtthheerrttaapp
+  6.8.  Ethertap
 
   Ethertap is the general mechanism on 2.2 for userspace processes to
   exchange packets with the kernel.
@@ -1635,9 +1635,9 @@
 
 
 
-  66..99..  TThhee sswwiittcchh ddaaeemmoonn
+  6.9.  The switch daemon
 
-  NNoottee: This is the daemon formerly known as uml_router, but which was
+  Note: This is the daemon formerly known as uml_router, but which was
   renamed so the network weenies of the world would stop growling at me.
 
 
@@ -1723,7 +1723,7 @@
 
 
 
-  66..1100..  SSlliipp
+  6.10.  Slip
 
   Slip is another, less general, mechanism for a process to communicate
   with the host networking.  In contrast to the ethertap interface,
@@ -1755,7 +1755,7 @@
 
 
 
-  66..1111..  SSlliirrpp
+  6.11.  Slirp
 
   slirp uses an external program, usually /usr/bin/slirp, to provide IP
   only networking connectivity through the host. This is similar to IP
@@ -1811,7 +1811,7 @@
 
 
 
-  66..1122..  ppccaapp
+  6.12.  pcap
 
   The pcap transport is attached to a UML ethernet device on the command
   line or with uml_mconsole with the following syntax:
@@ -1851,7 +1851,7 @@
 
 
 
-  66..1133..  SSeettttiinngg uupp tthhee hhoosstt yyoouurrsseellff
+  6.13.  Setting up the host yourself
 
   If you don't specify an address for the host side of the ethertap or
   slip device, UML won't do any setup on the host.  So this is what is
@@ -1859,7 +1859,7 @@
   192.168.0.251 and a UML-side IP of 192.168.0.250 - adjust to suit your
   own network):
 
-  +o  The device needs to be configured with its IP address.  Tap devices
+  +  The device needs to be configured with its IP address.  Tap devices
      are also configured with an mtu of 1484.  Slip devices are
      configured with a point-to-point address pointing at the UML ip
      address.
@@ -1879,7 +1879,7 @@
 
 
 
-  +o  If a tap device is being set up, a route is set to the UML IP.
+  +  If a tap device is being set up, a route is set to the UML IP.
 
 
        UML# route add -host 192.168.0.250 gw 192.168.0.251
@@ -1888,7 +1888,7 @@
 
 
 
-  +o  To allow other hosts on your network to see the virtual machine,
+  +  To allow other hosts on your network to see the virtual machine,
      proxy arp is set up for it.
 
 
@@ -1898,7 +1898,7 @@
 
 
 
-  +o  Finally, the host is set up to route packets.
+  +  Finally, the host is set up to route packets.
 
 
        host#  echo 1 > /proc/sys/net/ipv4/ip_forward
@@ -1912,12 +1912,12 @@
 
 
 
-  77..  SShhaarriinngg FFiilleessyysstteemmss bbeettwweeeenn VViirrttuuaall MMaacchhiinneess
+  7.  Sharing Filesystems between Virtual Machines
 
 
 
 
-  77..11..  AA wwaarrnniinngg
+  7.1.  A warning
 
   Don't attempt to share filesystems simply by booting two UMLs from the
   same file.  That's the same thing as booting two physical machines
@@ -1925,7 +1925,7 @@
 
 
 
-  77..22..  UUssiinngg llaayyeerreedd bblloocckk ddeevviicceess
+  7.2.  Using layered block devices
 
   The way to share a filesystem between two virtual machines is to use
   the copy-on-write (COW) layering capability of the ubd block driver.
@@ -1970,7 +1970,7 @@
 
 
 
-  77..33..  NNoottee!!
+  7.3.  Note!
 
   When checking the size of the COW file in order to see the gobs of
   space that you're saving, make sure you use 'ls -ls' to see the actual
@@ -2000,7 +2000,7 @@
 
 
 
-  77..44..  AAnnootthheerr wwaarrnniinngg
+  7.4.  Another warning
 
   Once a filesystem is being used as a readonly backing file for a COW
   file, do not boot directly from it or modify it in any way.  Doing so
@@ -2026,7 +2026,7 @@
 
 
 
-  77..55..  uummll__mmoooo :: MMeerrggiinngg aa CCOOWW ffiillee wwiitthh iittss bbaacckkiinngg ffiillee
+  7.5.  uml_moo : Merging a COW file with its backing file
 
   Depending on how you use UML and COW devices, it may be advisable to
   merge the changes in the COW file into the backing file every once in
@@ -2075,7 +2075,7 @@
 
 
 
-  88..  CCrreeaattiinngg ffiilleessyysstteemmss
+  8.  Creating filesystems
 
 
   You may want to create and mount new UML filesystems, either because
@@ -2089,7 +2089,7 @@
   should be easy to translate to the filesystem of your choice.
 
 
-  88..11..  CCrreeaattee tthhee ffiilleessyysstteemm ffiillee
+  8.1.  Create the filesystem file
 
   dd is your friend.  All you need to do is tell dd to create an empty
   file of the appropriate size.  I usually make it sparse to save time
@@ -2106,7 +2106,7 @@
 
 
 
-  88..22..  AAssssiiggnn tthhee ffiillee ttoo aa UUMMLL ddeevviiccee
+  8.2.  Assign the file to a UML device
 
   Add an argument like the following to the UML command line:
 
@@ -2119,7 +2119,7 @@
 
 
 
-  88..33..  CCrreeaattiinngg aanndd mmoouunnttiinngg tthhee ffiilleessyysstteemm
+  8.3.  Creating and mounting the filesystem
 
   Make sure that the filesystem is available, either by being built into
   the kernel, or available as a module, then boot up UML and log in.  If
@@ -2170,7 +2170,7 @@
 
 
 
-  99..  HHoosstt ffiillee aacccceessss
+  9.  Host file access
 
 
   If you want to access files on the host machine from inside UML, you
@@ -2186,7 +2186,7 @@
   files contained in it just as you would on the host.
 
 
-  99..11..  UUssiinngg hhoossttffss
+  9.1.  Using hostfs
 
   To begin with, make sure that hostfs is available inside the virtual
   machine with
@@ -2225,7 +2225,7 @@
 
 
 
-  99..22..  hhoossttffss aass tthhee rroooott ffiilleessyysstteemm
+  9.2.  hostfs as the root filesystem
 
   It's possible to boot from a directory hierarchy on the host using
   hostfs rather than using the standard filesystem in a file.
@@ -2268,20 +2268,20 @@
   UML should then boot as it does normally.
 
 
-  99..33..  BBuuiillddiinngg hhoossttffss
+  9.3.  Building hostfs
 
   If you need to build hostfs because it's not in your kernel, you have
   two choices:
 
 
 
-  +o  Compiling hostfs into the kernel:
+  +  Compiling hostfs into the kernel:
 
 
      Reconfigure the kernel and set the 'Host filesystem' option under
 
 
-  +o  Compiling hostfs as a module:
+  +  Compiling hostfs as a module:
 
 
      Reconfigure the kernel and set the 'Host filesystem' option under
@@ -2302,7 +2302,7 @@
 
 
 
-  1100..  TThhee MMaannaaggeemmeenntt CCoonnssoollee
+  10.  The Management Console
 
 
 
@@ -2314,15 +2314,15 @@
 
   There are a number of things you can do with the mconsole interface:
 
-  +o  get the kernel version
+  +  get the kernel version
 
-  +o  add and remove devices
+  +  add and remove devices
 
-  +o  halt or reboot the machine
+  +  halt or reboot the machine
 
-  +o  Send SysRq commands
+  +  Send SysRq commands
 
-  +o  Pause and resume the UML
+  +  Pause and resume the UML
 
 
   You need the mconsole client (uml_mconsole) which is present in CVS
@@ -2374,28 +2374,28 @@
 
   You'll get a prompt, at which you can run one of these commands:
 
-  +o  version
+  +  version
 
-  +o  halt
+  +  halt
 
-  +o  reboot
+  +  reboot
 
-  +o  config
+  +  config
 
-  +o  remove
+  +  remove
 
-  +o  sysrq
+  +  sysrq
 
-  +o  help
+  +  help
 
-  +o  cad
+  +  cad
 
-  +o  stop
+  +  stop
 
-  +o  go
+  +  go
 
 
-  1100..11..  vveerrssiioonn
+  10.1.  version
 
   This takes no arguments.  It prints the UML version.
 
@@ -2416,7 +2416,7 @@
 
 
 
-  1100..22..  hhaalltt aanndd rreebboooott
+  10.2.  halt and reboot
 
   These take no arguments.  They shut the machine down immediately, with
   no syncing of disks and no clean shutdown of userspace.  So, they are
@@ -2431,7 +2431,7 @@
 
 
 
-  1100..33..  ccoonnffiigg
+  10.3.  config
 
   "config" adds a new device to the virtual machine.  Currently the ubd
   and network drivers support this.  It takes one argument, which is the
@@ -2452,7 +2452,7 @@
 
 
 
-  1100..44..  rreemmoovvee
+  10.4.  remove
 
   "remove" deletes a device from the system.  Its argument is just the
   name of the device to be removed. The device must be idle in whatever
@@ -2471,7 +2471,7 @@
 
 
 
-  1100..55..  ssyyssrrqq
+  10.5.  sysrq
 
   This takes one argument, which is a single letter.  It calls the
   generic kernel's SysRq driver, which does whatever is called for by
@@ -2481,14 +2481,14 @@
 
 
 
-  1100..66..  hheellpp
+  10.6.  help
 
   "help" returns a string listing the valid commands and what each one
   does.
 
 
 
-  1100..77..  ccaadd
+  10.7.  cad
 
   This invokes the Ctl-Alt-Del action on init.  What exactly this ends
   up doing is up to /etc/inittab.  Normally, it reboots the machine.
@@ -2506,7 +2506,7 @@
 
 
 
-  1100..88..  ssttoopp
+  10.8.  stop
 
   This puts the UML in a loop reading mconsole requests until a 'go'
   mconsole command is received. This is very useful for making backups
@@ -2522,7 +2522,7 @@
 
 
 
-  1100..99..  ggoo
+  10.9.  go
 
   This resumes a UML after being paused by a 'stop' command. Note that
   when the UML has resumed, TCP connections may have timed out and if
@@ -2536,10 +2536,10 @@
 
 
 
-  1111..  KKeerrnneell ddeebbuuggggiinngg
+  11.  Kernel debugging
 
 
-  NNoottee:: The interface that makes debugging, as described here, possible
+  Note: The interface that makes debugging, as described here, possible
   is present in 2.4.0-test6 kernels and later.
 
 
@@ -2559,7 +2559,7 @@
 
 
 
-  1111..11..  SSttaarrttiinngg tthhee kkeerrnneell uunnddeerr ggddbb
+  11.1.  Starting the kernel under gdb
 
   You can have the kernel running under the control of gdb from the
   beginning by putting 'debug' on the command line.  You will get an
@@ -2572,7 +2572,7 @@
   There is a transcript of a debugging session  here <debug-
   session.html> , with breakpoints being set in the scheduler and in an
   interrupt handler.
-  1111..22..  EExxaammiinniinngg sslleeeeppiinngg pprroocceesssseess
+  11.2.  Examining sleeping processes
 
   Not every bug is evident in the currently running process.  Sometimes,
   processes hang in the kernel when they shouldn't because they've
@@ -2590,7 +2590,7 @@
 
   Now what you do is this:
 
-  +o  detach from the current thread
+  +  detach from the current thread
 
 
        (UML gdb)  det
@@ -2599,7 +2599,7 @@
 
 
 
-  +o  attach to the thread you are interested in
+  +  attach to the thread you are interested in
 
 
        (UML gdb)  att <host pid>
@@ -2608,7 +2608,7 @@
 
 
 
-  +o  look at its stack and anything else of interest
+  +  look at its stack and anything else of interest
 
 
        (UML gdb)  bt
@@ -2619,7 +2619,7 @@
   Note that you can't do anything at this point that requires that a
   process execute, e.g. calling a function
 
-  +o  when you're done looking at that process, reattach to the current
+  +  when you're done looking at that process, reattach to the current
      thread and continue it
 
 
@@ -2643,12 +2643,12 @@
 
 
 
-  1111..33..  RRuunnnniinngg dddddd oonn UUMMLL
+  11.3.  Running ddd on UML
 
   ddd works on UML, but requires a special kludge.  The process goes
   like this:
 
-  +o  Start ddd
+  +  Start ddd
 
 
        host% ddd linux
@@ -2657,14 +2657,14 @@
 
 
 
-  +o  With ps, get the pid of the gdb that ddd started.  You can ask the
+  +  With ps, get the pid of the gdb that ddd started.  You can ask the
      gdb to tell you, but for some reason that confuses things and
      causes a hang.
 
-  +o  run UML with 'debug=parent gdb-pid=<pid>' added to the command line
+  +  run UML with 'debug=parent gdb-pid=<pid>' added to the command line
      - it will just sit there after you hit return
 
-  +o  type 'att 1' to the ddd gdb and you will see something like
+  +  type 'att 1' to the ddd gdb and you will see something like
 
 
        0xa013dc51 in __kill ()
@@ -2676,12 +2676,12 @@
 
 
 
-  +o  At this point, type 'c', UML will boot up, and you can use ddd just
+  +  At this point, type 'c', UML will boot up, and you can use ddd just
      as you do on any other process.
 
 
 
-  1111..44..  DDeebbuuggggiinngg mmoodduulleess
+  11.4.  Debugging modules
 
   gdb has support for debugging code which is dynamically loaded into
   the process.  This support is what is needed to debug kernel modules
@@ -2897,7 +2897,7 @@
 
 
 
-  1111..55..  AAttttaacchhiinngg ggddbb ttoo tthhee kkeerrnneell
+  11.5.  Attaching gdb to the kernel
 
   If you don't have the kernel running under gdb, you can attach gdb to
   it later by sending the tracing thread a SIGUSR1.  The first line of
@@ -2931,7 +2931,7 @@
 
 
 
-  1111..66..  UUssiinngg aalltteerrnnaattee ddeebbuuggggeerrss
+  11.6.  Using alternate debuggers
 
   UML has support for attaching to an already running debugger rather
   than starting gdb itself.  This is present in CVS as of 17 Apr 2001.
@@ -2960,7 +2960,7 @@
   An example of an alternate debugger is strace.  You can strace the
   actual kernel as follows:
 
-  +o  Run the following in a shell
+  +  Run the following in a shell
 
 
        host%
@@ -2968,10 +2968,10 @@
 
 
 
-  +o  Run UML with 'debug' and 'gdb-pid=<pid>' with the pid printed out
+  +  Run UML with 'debug' and 'gdb-pid=<pid>' with the pid printed out
      by the previous command
 
-  +o  Hit return in the shell, and UML will start running, and strace
+  +  Hit return in the shell, and UML will start running, and strace
      output will start accumulating in the output file.
 
      Note that this is different from running
@@ -2991,9 +2991,9 @@
 
 
 
-  1122..  KKeerrnneell ddeebbuuggggiinngg eexxaammpplleess
+  12.  Kernel debugging examples
 
-  1122..11..  TThhee ccaassee ooff tthhee hhuunngg ffsscckk
+  12.1.  The case of the hung fsck
 
   When booting up the kernel, fsck failed, and dropped me into a shell
   to fix things up.  I ran fsck -y, which hung:
@@ -3228,9 +3228,9 @@
 
   The interesting things here are :
 
-  +o  There are two segfaults on this stack (frames 9 and 14)
+  +  There are two segfaults on this stack (frames 9 and 14)
 
-  +o  The first faulting address (frame 11) is 0x50000800
+  +  The first faulting address (frame 11) is 0x50000800
 
   (gdb) p (void *)1342179328
   $16 = (void *) 0x50000800
@@ -3473,7 +3473,7 @@
   on will be somewhat clearer.
 
 
-  1122..22..  EEppiissooddee 22:: TThhee ccaassee ooff tthhee hhuunngg ffsscckk
+  12.2.  Episode 2: The case of the hung fsck
 
   After setting a trap in the SEGV handler for accesses to the signal
   thread's stack, I reran the kernel.
@@ -3862,12 +3862,12 @@
 
 
 
-  1133..  WWhhaatt ttoo ddoo wwhheenn UUMMLL ddooeessnn''tt wwoorrkk
+  13.  What to do when UML doesn't work
 
 
 
 
-  1133..11..  SSttrraannggee ccoommppiillaattiioonn eerrrroorrss wwhheenn yyoouu bbuuiilldd ffrroomm ssoouurrccee
+  13.1.  Strange compilation errors when you build from source
 
   As of test11, it is necessary to have "ARCH=um" in the environment or
   on the make command line for all steps in building UML, including
@@ -3898,7 +3898,7 @@
 
 
 
-  1133..22..  UUMMLL hhaannggss oonn bboooott aafftteerr mmoouunnttiinngg ddeevvffss
+  13.2.  UML hangs on boot after mounting devfs
 
   The boot looks like this:
 
@@ -3921,8 +3921,8 @@
 
 
 
-  1133..33..  AA vvaarriieettyy ooff ppaanniiccss aanndd hhaannggss wwiitthh //ttmmpp oonn aa rreeiisseerrffss  ffiilleessyyss--
-  tteemm
+  13.3.  A variety of panics and hangs with /tmp on a reiserfs  filesys-
+  tem
 
   I saw this on reiserfs 3.5.21 and it seems to be fixed in 3.5.27.
   Panics preceded by
@@ -3939,8 +3939,8 @@
 
 
 
-  1133..44..  TThhee ccoommppiillee ffaaiillss wwiitthh eerrrroorrss aabboouutt ccoonnfflliiccttiinngg ttyyppeess ffoorr
-  ''ooppeenn'',, ''dduupp'',, aanndd ''wwaaiittppiidd''
+  13.4.  The compile fails with errors about conflicting types for
+  'open', 'dup', and 'waitpid'
 
   This happens when you build in /usr/src/linux.  The UML build makes
   the include/asm link point to include/asm-um.  /usr/include/asm points
@@ -3951,14 +3951,14 @@
 
 
 
-  1133..55..  UUMMLL ddooeessnn''tt wwoorrkk wwhheenn //ttmmpp iiss aann NNFFSS ffiilleessyysstteemm
+  13.5.  UML doesn't work when /tmp is an NFS filesystem
 
   This seems to be a similar situation with the resierfs problem above.
   Some versions of NFS seems not to handle mmap correctly, which UML
   depends on.  The workaround is have /tmp be non-NFS directory.
 
 
-  1133..66..  UUMMLL hhaannggss oonn bboooott wwhheenn ccoommppiilleedd wwiitthh ggpprrooff ssuuppppoorrtt
+  13.6.  UML hangs on boot when compiled with gprof support
 
   If you build UML with gprof support and, early in the boot, it does
   this
@@ -3975,7 +3975,7 @@
 
 
 
-  1133..77..  ssyyssllooggdd ddiieess wwiitthh aa SSIIGGTTEERRMM oonn ssttaarrttuupp
+  13.7.  syslogd dies with a SIGTERM on startup
 
   The exact boot error depends on the distribution that you're booting,
   but Debian produces this:
@@ -3994,17 +3994,17 @@
 
 
 
-  1133..88..  TTUUNN//TTAAPP nneettwwoorrkkiinngg ddooeessnn''tt wwoorrkk oonn aa 22..44 hhoosstt
+  13.8.  TUN/TAP networking doesn't work on a 2.4 host
 
   There are a couple of problems which were
   <http://www.geocrawler.com/lists/3/SourceForge/597/0/> name="pointed
   out">  by Tim Robinson <timro at trkr dot net>
 
-  +o  It doesn't work on hosts running 2.4.7 (or thereabouts) or earlier.
+  +  It doesn't work on hosts running 2.4.7 (or thereabouts) or earlier.
      The fix is to upgrade to something more recent and then read the
      next item.
 
-  +o  If you see
+  +  If you see
 
 
        File descriptor in bad state
@@ -4018,8 +4018,8 @@
 
 
 
-  1133..99..  YYoouu ccaann nneettwwoorrkk ttoo tthhee hhoosstt bbuutt nnoott ttoo ootthheerr mmaacchhiinneess oonn tthhee
-  nneett
+  13.9.  You can network to the host but not to other machines on the
+  net
 
   If you can connect to the host, and the host can connect to UML, but
   you can not connect to any other machines, then you may need to enable
@@ -4069,7 +4069,7 @@
 
 
 
-  1133..1100..  II hhaavvee nnoo rroooott aanndd II wwaanntt ttoo ssccrreeaamm
+  13.10.  I have no root and I want to scream
 
   Thanks to Birgit Wahlich for telling me about this strange one.  It
   turns out that there's a limit of six environment variables on the
@@ -4084,7 +4084,7 @@
 
 
 
-  1133..1111..  UUMMLL bbuuiilldd ccoonnfflliicctt bbeettwweeeenn ppttrraaccee..hh aanndd uuccoonntteexxtt..hh
+  13.11.  UML build conflict between ptrace.h and ucontext.h
 
   On some older systems, /usr/include/asm/ptrace.h and
   /usr/include/sys/ucontext.h define the same names.  So, when they're
@@ -4104,7 +4104,7 @@
 
 
 
-  1133..1122..  TThhee UUMMLL BBooggooMMiippss iiss eexxaaccttllyy hhaallff tthhee hhoosstt''ss BBooggooMMiippss
+  13.12.  The UML BogoMips is exactly half the host's BogoMips
 
   On i386 kernels, there are two ways of running the loop that is used
   to calculate the BogoMips rating, using the TSC if it's there or using
@@ -4116,7 +4116,7 @@
 
 
 
-  1133..1133..  WWhheenn yyoouu rruunn UUMMLL,, iitt iimmmmeeddiiaatteellyy sseeggffaauullttss
+  13.13.  When you run UML, it immediately segfaults
 
   If the host is configured with the 2G/2G address space split, that's
   why.  See ``UML on 2G/2G hosts''  for the details on getting UML to
@@ -4124,7 +4124,7 @@
 
 
 
-  1133..1144..  xxtteerrmmss aappppeeaarr,, tthheenn iimmmmeeddiiaatteellyy ddiissaappppeeaarr
+  13.14.  xterms appear, then immediately disappear
 
   If you're running an up to date kernel with an old release of
   uml_utilities, the port-helper program will not work properly, so
@@ -4136,7 +4136,7 @@
 
 
 
-  1133..1155..  AAnnyy ootthheerr ppaanniicc,, hhaanngg,, oorr ssttrraannggee bbeehhaavviioorr
+  13.15.  Any other panic, hang, or strange behavior
 
   If you're seeing truly strange behavior, such as hangs or panics that
   happen in random places, or you try running the debugger to see what's
@@ -4156,7 +4156,7 @@
 
   If you want to be super-helpful, read ``Diagnosing Problems'' and
   follow the instructions contained therein.
-  1144..  DDiiaaggnnoossiinngg PPrroobblleemmss
+  14.  Diagnosing Problems
 
 
   If you get UML to crash, hang, or otherwise misbehave, you should
@@ -4175,7 +4175,7 @@
   ``Kernel debugging''  UML first.
 
 
-  1144..11..  CCaassee 11 :: NNoorrmmaall kkeerrnneell ppaanniiccss
+  14.1.  Case 1 : Normal kernel panics
 
   The most common case is for a normal thread to panic.  To debug this,
   you will need to run it under the debugger (add 'debug' to the command
@@ -4225,7 +4225,7 @@
   to get that information from the faulting ip.
 
 
-  1144..22..  CCaassee 22 :: TTrraacciinngg tthhrreeaadd ppaanniiccss
+  14.2.  Case 2 : Tracing thread panics
 
   The less common and more painful case is when the tracing thread
   panics.  In this case, the kernel debugger will be useless because it
@@ -4258,7 +4258,7 @@
   backtrace in and wait for our crack debugging team to fix the problem.
 
 
-  1144..33..  CCaassee 33 :: TTrraacciinngg tthhrreeaadd ppaanniiccss ccaauusseedd bbyy ootthheerr tthhrreeaaddss
+  14.3.  Case 3 : Tracing thread panics caused by other threads
 
   However, there are cases where the misbehavior of another thread
   caused the problem.  The most common panic of this type is:
@@ -4324,7 +4324,7 @@
 
 
 
-  1144..44..  CCaassee 44 :: HHaannggss
+  14.4.  Case 4 : Hangs
 
   Hangs seem to be fairly rare, but they sometimes happen.  When a hang
   happens, we need a backtrace from the offending process.  Run the
@@ -4354,7 +4354,7 @@
 
 
 
-  1155..  TThhaannkkss
+  15.  Thanks
 
 
   A number of people have helped this project in various ways, and this
@@ -4371,20 +4371,20 @@
   bookkeeping lapses and I forget about contributions.
 
 
-  1155..11..  CCooddee aanndd DDooccuummeennttaattiioonn
+  15.1.  Code and Documentation
 
   Rusty Russell <rusty at linuxcare.com.au>  -
 
-  +o  wrote the  HOWTO <http://user-mode-
+  +  wrote the  HOWTO <http://user-mode-
      linux.sourceforge.net/UserModeLinux-HOWTO.html>
 
-  +o  prodded me into making this project official and putting it on
+  +  prodded me into making this project official and putting it on
      SourceForge
 
-  +o  came up with the way cool UML logo <http://user-mode-
+  +  came up with the way cool UML logo <http://user-mode-
      linux.sourceforge.net/uml-small.png>
 
-  +o  redid the config process
+  +  redid the config process
 
 
   Peter Moulder <reiter at netspace.net.au>  - Fixed my config and build
@@ -4393,18 +4393,18 @@
 
   Bill Stearns <wstearns at pobox.com>  -
 
-  +o  HOWTO updates
+  +  HOWTO updates
 
-  +o  lots of bug reports
+  +  lots of bug reports
 
-  +o  lots of testing
+  +  lots of testing
 
-  +o  dedicated a box (uml.ists.dartmouth.edu) to support UML development
+  +  dedicated a box (uml.ists.dartmouth.edu) to support UML development
 
-  +o  wrote the mkrootfs script, which allows bootable filesystems of
+  +  wrote the mkrootfs script, which allows bootable filesystems of
      RPM-based distributions to be cranked out
 
-  +o  cranked out a large number of filesystems with said script
+  +  cranked out a large number of filesystems with said script
 
 
   Jim Leu <jleu at mindspring.com>  - Wrote the virtual ethernet driver
@@ -4472,176 +4472,176 @@
 
   David Coulson <http://davidcoulson.net>  -
 
-  +o  Set up the usermodelinux.org <http://usermodelinux.org>  site,
+  +  Set up the usermodelinux.org <http://usermodelinux.org>  site,
      which is a great way of keeping the UML user community on top of
      UML goings-on.
 
-  +o  Site documentation and updates
+  +  Site documentation and updates
 
-  +o  Nifty little UML management daemon  UMLd
+  +  Nifty little UML management daemon  UMLd
      <http://uml.openconsultancy.com/umld/>
 
-  +o  Lots of testing and bug reports
+  +  Lots of testing and bug reports
 
 
 
 
-  1155..22..  FFlluusshhiinngg oouutt bbuuggss
+  15.2.  Flushing out bugs
 
 
 
-  +o  Yuri Pudgorodsky
+  +  Yuri Pudgorodsky
 
-  +o  Gerald Britton
+  +  Gerald Britton
 
-  +o  Ian Wehrman
+  +  Ian Wehrman
 
-  +o  Gord Lamb
+  +  Gord Lamb
 
-  +o  Eugene Koontz
+  +  Eugene Koontz
 
-  +o  John H. Hartman
+  +  John H. Hartman
 
-  +o  Anders Karlsson
+  +  Anders Karlsson
 
-  +o  Daniel Phillips
+  +  Daniel Phillips
 
-  +o  John Fremlin
+  +  John Fremlin
 
-  +o  Rainer Burgstaller
+  +  Rainer Burgstaller
 
-  +o  James Stevenson
+  +  James Stevenson
 
-  +o  Matt Clay
+  +  Matt Clay
 
-  +o  Cliff Jefferies
+  +  Cliff Jefferies
 
-  +o  Geoff Hoff
+  +  Geoff Hoff
 
-  +o  Lennert Buytenhek
+  +  Lennert Buytenhek
 
-  +o  Al Viro
+  +  Al Viro
 
-  +o  Frank Klingenhoefer
+  +  Frank Klingenhoefer
 
-  +o  Livio Baldini Soares
+  +  Livio Baldini Soares
 
-  +o  Jon Burgess
+  +  Jon Burgess
 
-  +o  Petru Paler
+  +  Petru Paler
 
-  +o  Paul
+  +  Paul
 
-  +o  Chris Reahard
+  +  Chris Reahard
 
-  +o  Sverker Nilsson
+  +  Sverker Nilsson
 
-  +o  Gong Su
+  +  Gong Su
 
-  +o  johan verrept
+  +  johan verrept
 
-  +o  Bjorn Eriksson
+  +  Bjorn Eriksson
 
-  +o  Lorenzo Allegrucci
+  +  Lorenzo Allegrucci
 
-  +o  Muli Ben-Yehuda
+  +  Muli Ben-Yehuda
 
-  +o  David Mansfield
+  +  David Mansfield
 
-  +o  Howard Goff
+  +  Howard Goff
 
-  +o  Mike Anderson
+  +  Mike Anderson
 
-  +o  John Byrne
+  +  John Byrne
 
-  +o  Sapan J. Batia
+  +  Sapan J. Batia
 
-  +o  Iris Huang
+  +  Iris Huang
 
-  +o  Jan Hudec
+  +  Jan Hudec
 
-  +o  Voluspa
+  +  Voluspa
 
 
 
 
-  1155..33..  BBuugglleettss aanndd cclleeaann--uuppss
+  15.3.  Buglets and clean-ups
 
 
 
-  +o  Dave Zarzycki
+  +  Dave Zarzycki
 
-  +o  Adam Lazur
+  +  Adam Lazur
 
-  +o  Boria Feigin
+  +  Boria Feigin
 
-  +o  Brian J. Murrell
+  +  Brian J. Murrell
 
-  +o  JS
+  +  JS
 
-  +o  Roman Zippel
+  +  Roman Zippel
 
-  +o  Wil Cooley
+  +  Wil Cooley
 
-  +o  Ayelet Shemesh
+  +  Ayelet Shemesh
 
-  +o  Will Dyson
+  +  Will Dyson
 
-  +o  Sverker Nilsson
+  +  Sverker Nilsson
 
-  +o  dvorak
+  +  dvorak
 
-  +o  v.naga srinivas
+  +  v.naga srinivas
 
-  +o  Shlomi Fish
+  +  Shlomi Fish
 
-  +o  Roger Binns
+  +  Roger Binns
 
-  +o  johan verrept
+  +  johan verrept
 
-  +o  MrChuoi
+  +  MrChuoi
 
-  +o  Peter Cleve
+  +  Peter Cleve
 
-  +o  Vincent Guffens
+  +  Vincent Guffens
 
-  +o  Nathan Scott
+  +  Nathan Scott
 
-  +o  Patrick Caulfield
+  +  Patrick Caulfield
 
-  +o  jbearce
+  +  jbearce
 
-  +o  Catalin Marinas
+  +  Catalin Marinas
 
-  +o  Shane Spencer
+  +  Shane Spencer
 
-  +o  Zou Min
+  +  Zou Min
 
 
-  +o  Ryan Boder
+  +  Ryan Boder
 
-  +o  Lorenzo Colitti
+  +  Lorenzo Colitti
 
-  +o  Gwendal Grignou
+  +  Gwendal Grignou
 
-  +o  Andre' Breiler
+  +  Andre' Breiler
 
-  +o  Tsutomu Yasuda
+  +  Tsutomu Yasuda
 
 
 
-  1155..44..  CCaassee SSttuuddiieess
+  15.4.  Case Studies
 
 
-  +o  Jon Wright
+  +  Jon Wright
 
-  +o  William McEwan
+  +  William McEwan
 
-  +o  Michael Richardson
+  +  Michael Richardson
 
 
 
-  1155..55..  OOtthheerr ccoonnttrriibbuuttiioonnss
+  15.5.  Other contributions
 
 
   Bill Carr <Bill.Carr at compaq.com>  made the Red Hat mkrootfs script
@@ -4673,14 +4673,3 @@
   <http://user-mode-linux.sourceforge.net/dl-sf.html>  page in the Jail
   Filesysems section.
 
-
-
-
-
-
-
-
-
-
-
-

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]
  Powered by Linux