[prev in list] [next in list] [prev in thread] [next in thread] 

List:       evms-devel
Subject:    Re: [Evms-devel] Evms 1.0.0 & 1.1.0-pre1 kernel panic
From:       James Stegemeyer <james () quic ! net>
Date:       2002-06-27 20:45:30
[Download RAW message or body]

This is a MIME-formatted message.  If you see this text it means that your
E-mail software does not support MIME-formatted messages.


On Wed, Jun 26, 2002 at 06:05:17PM -0400, Mike Tran wroteo:


I tried the patch and I still get a simular kernel panic.  I compiled a
stripd down kernel and I still received a simular error.



> Hi Mark,
> Your patch removed the printing of callers' addresses.  If that was the 
> problem, then is it a gcc compiler issue?  In addition, I would also exit the 
> evms_md_error() function if node is NULL.
> 
> By the way, Steve D. found another bug in RAID1 (both EVMS and original MD).  
> He fixed EVMS md_raid1.c.
> 
> Just in case you have problem with the patches below, attached files are the 2 
> patches for md_core.c and md_raid1.c
> 
> 
> Hi James,
> Please try the patches for md_core.c and md_raid1.c.  Thanks.
> 
> I still unable to reproduce the problem you have seen.  I am using an (ACARD 
> chip) SIIG AP-20 SCSI Pro card with IOMEGA removable zip100.  I didnot have 
> any problem after ejecting the zip disk.  From oops trace, I noticed that you 
> are using IDE, can you tell us more about your setup?
> 

I am using IDE on the system.  I receive the same problem nomatter if
both drives are on diffrent chains or on the same chain.  If I mark the
disk as a spare for the md_raid1 module I can attempt to read from the
disconnected disk drive using dd but I can not get the kernel to panic.
But if the drive is connected is being used by the md_raid1 device
driver I get the panic.  I know that IDE does not support hot plug
support but it does not seem like it is a kernel error.

Did you try to disconnect the scsi zipdrive from the chain?
I remember an ealyer problem posted on this mailing list of someone who
had a hot swap scsi disk array who received a simular kernel oops when
he removed a disk from the array without removing it without downing the
drive in evms.

I am using reiserfs on all of the volumes. I used gcc 2.9.5 
I am attaching the output from a evms_gather_info script.



Let me know what kind of information you could use.  

Thanks, 
James Stegemeyer



> Thank you all,
> Mike
> __ START of 2 patches ___
> 
> Index: md_raid1.c
> ===================================================================
> RCS file: /cvsroot/evms/runtime/linux-2.4/drivers/evms/md_raid1.c,v
> retrieving revision 1.28
> retrieving revision 1.29
> diff -u -b -B -r1.28 -r1.29
> --- md_raid1.c 21 Jun 2002 22:01:01 -0000 1.28
> +++ md_raid1.c 25 Jun 2002 20:59:34 -0000 1.29
> @@ -1171,8 +1171,15 @@
>   mdk_rdev_t *rdev;
>   kdev_t dev;
>   evms_logical_node_t *node;
> +    raid1_conf_t *conf = (raid1_conf_t *) data;
>  
>   for (;;) {
> +  mddev = conf->mddev;
> +  if (mddev->sb_dirty) {
> +   LOG_DEFAULT("EVMS raid1: dirty sb detected, 
> updating.\n");
> +   mddev->sb_dirty = 0;
> +   evms_md_update_sb(mddev);
> +  }
>    md_spin_lock_irqsave(&retry_list_lock, flags);
>    r1_bh = evms_raid1_retry_list;
>    if (!r1_bh)
> @@ -1181,11 +1188,6 @@
>    md_spin_unlock_irqrestore(&retry_list_lock, flags);
>  
>    mddev = r1_bh->mddev;
> -  if (mddev->sb_dirty) {
> -   LOG_DEFAULT("EVMS raid1: dirty sb detected, 
> updating.\n");
> -   mddev->sb_dirty = 0;
> -   evms_md_update_sb(mddev);
> -  }
>    bh = &r1_bh->bh_req;
>    switch(r1_bh->cmd) {
>    case SPECIAL:
> @@ -1196,7 +1198,6 @@
>      int i, sum_bhs = 0;
>      int disks = MD_SB_DISKS;
>      struct buffer_head *bhl, *mbh;
> -    raid1_conf_t *conf;
>      
>      conf = mddev_to_conf(mddev);
>      bhl = raid1_alloc_bh(conf, conf->raid_disks); 
> /* don't really need this many */
> 
> 
> --- /tmp/linux-2.4/drivers/evms/md_core.c Wed Jun 26 15:06:09 2002
> +++ /usr/src/linux-2.4.18/drivers/evms/md_core.c Wed Jun 26 16:13:13 
> 2002
> @@ -2551,7 +2551,7 @@
>    return -EINVAL;
>   }
>   mddev->sb->state &= ~(1 << MD_SB_CLEAN);
> -
> + mddev->sb_dirty = 1;
>   evms_md_update_sb(mddev);
>  
>   if (incomplete_mddev(mddev)) {
> @@ -2636,6 +2636,7 @@
>      LOG_DEBUG("%s: marking sb clean...\n", 
> __FUNCTION__);
>      mddev->sb->state |= 1 << MD_SB_CLEAN;
>     }
> +   mddev->sb_dirty = 1;
>     evms_md_update_sb_sync(mddev);
>    }
>    if (ro)
> @@ -2868,15 +2869,21 @@
>  {
>   mdk_rdev_t * rrdev;
>  
> - /* check for NULL first */
> - if (!mddev) {
> + /* check for NULLs first */
> + if (!mddev || !node) {
>    MD_BUG();
>    return 0;
>   }
> - LOG_ERROR("evms_md_error dev:(md%d), node:(%s), (caller: 
> %p,%p,%p,%p).\n",
> -     mdidx(mddev), node->name,
> -     __builtin_return_address(0),__builtin_return_address(1),
> -     __builtin_return_address(2),__builtin_return_address(3));
> +
> +
> + LOG_ERROR("evms_md_error dev:(md%d), node:(%s).\n",
> +     mdidx(mddev), node->name);
> + /*
> +  * LOG_ERROR("evms_md_error dev:(md%d), node:(%s), (caller: 
> %p,%p,%p,%p).\n",
> +  *    mdidx(mddev), node->name,
> +  *    __builtin_return_address(0),__builtin_return_address(1),
> +  *    __builtin_return_address(2),__builtin_return_address(3));
> +  */
>  
>   rrdev = evms_md_find_rdev_from_node(mddev, node);
>   if (!rrdev || rrdev->faulty)
> @@ -3216,6 +3223,8 @@
>     continue;
>    if (sb->active_disks == sb->raid_disks)
>     continue;
> +  if (mddev->sb_dirty)
> +   evms_md_update_sb(mddev);
>    if (!sb->spare_disks) {
>     LOG_ERROR(" [md%d] no spare disk to reconstruct array! 
> "
>         "-- continuing in degraded mode\n", 
> mdidx(mddev));
> 
> 
> Quoting Mark Peloquin <markpeloquin@hotmail.com>:
> 
> > Hi James,
> > 
> > I think I'm getting closer to your problem, or at least your cause of your 
> > panic. I have another patch for you to try.
> > 
> > Mark
> > 
> > RCS file: /cvsroot/evms/runtime/linux-2.4/drivers/evms/md_core.c,v
> > retrieving revision 1.90
> > diff -a -u -r1.90 md_core.c
> > --- md_core.c   25 Jun 2002 20:21:23 -0000      1.90
> > +++ md_core.c   26 Jun 2002 19:26:02 -0000
> > @@ -2873,10 +2873,11 @@
> >                 MD_BUG();
> >                 return 0;
> >         }
> > -       LOG_ERROR("evms_md_error dev:(md%d), node:(%s), (caller: 
> > %p,%p,%p,%p).\n",
> > +/*     LOG_ERROR("evms_md_error dev:(md%d), node:(%s), (caller: 
> > %p,%p,%p,%p).\n",
> >                    mdidx(mddev), node->name,
> >                    __builtin_return_address(0),__builtin_return_address(1),
> > -                 
> > __builtin_return_address(2),__builtin_return_address(3));
> > +                  __builtin_return_address(2),__builtin_return_address(3));
> > 
> > */
> > +       LOG_ERROR("evms_md_error dev:(md%d), node:(%s).\n", mdidx(mddev), 
> > node->name);
> > 
> >         rrdev = evms_md_find_rdev_from_node(mddev, node);
> >         if (!rrdev || rrdev->faulty)
> > 
> > 
> > 
> > _________________________________________________________________
> > MSN Photos is the easiest way to share and print your photos: 
> > http://photos.msn.com/support/worldwide.aspx
> > 
> > 
> > 
> > -------------------------------------------------------
> > This sf.net email is sponsored by: Jabber Inc.
> > Don't miss the IM event of the season | Special offer for OSDN members! 
> > JabberConf 2002, Aug. 20-22, Keystone, CO http://www.jabberconf.com/osdn
> > _______________________________________________
> > Evms-devel mailing list
> > Evms-devel@lists.sourceforge.net
> > To subscribe/unsubscribe, please visit:
> > https://lists.sourceforge.net/lists/listinfo/evms-devel
> > 
> > 
> 
> 
> Mike Tran
> 
> 




["evmsinfo.jfs" (text/plain)]

############################################################
                    Data from /proc/evms
############################################################


/proc/evms/info:
Enterprise Volume Management System: Info
EVMS info level: 5 (default).
EVMS kernel version: 1.1.0
EVMS IOCTL interface version: 10.0.0
EVMS Common Services version: 0.6.0


/proc/evms/volumes:
Enterprise Volume Management System: Volumes
major   minor          #blocks type   flags name

   63       1          4899825 compat rw    /dev/evms/hda2
   63       2          4000185 compat rw    /dev/evms/hda3
   63       3          3253131 compat rw    /dev/evms/hda5
   63       4           313236 compat rw    /dev/evms/hda6
   63       5           224768 compat rw    /dev/evms/md/md1
   63     249          2441215 evms   rw    /dev/evms/james
   63     250         11912165 evms   rw    /dev/evms/test
   63     251          3071999 evms   rw    /dev/evms/u3
   63     252          3071999 evms   rw    /dev/evms/usr
   63     253          3071999 evms   rw    /dev/evms/stuff
   63     254           511999 evms   rw    /dev/evms/var
   63     255          2047999 evms   rw    /dev/evms/root


/proc/evms/plugins:
Enterprise Volume Management System: Plugins
 ---------Plugin----------      required services
 ----id----        version      version

 1fb0.1.1	   1.0.0	0.5.0
 1fb0.2.1	   1.0.0	0.5.0
 1fb0.2.3	   1.0.0	0.5.0
 1fb0.3.4	   0.90.0	0.5.0
 1fb0.3.1	   1.0.0	0.5.0
 1fb0.3.3	   1.0.0	0.5.0
 1fb0.4.1	   2.0.0	0.5.0
 1fb0.4.6	   1.0.0	0.6.0
 1fb0.5.68	   2.1.0	0.6.0
 1fb0.4.0	   1.0.0	0.5.0


/proc/evms/snapshot/:


/proc/evms/lvm/global:
Enterprise Volume Management System: LVM Plugin
Plugin ID: 1fb0.3.1
Plugin Version: 1.0.0
Required EVMS Services Version: 0.5.0

Total: 1 VGs  1 PVs  6 LVs

VG:  rootdg  [1 PV, 6 LV]
PVs:
	md/md0	  14225408 KB
LVs:
	lvm/rootdg/root	   2048000 KB /   500 LEs
	lvm/rootdg/var	    512000 KB /   125 LEs
	lvm/rootdg/stuff	   3072000 KB /   750 LEs
	lvm/rootdg/usr	   3072000 KB /   750 LEs
	lvm/rootdg/u3	   3072000 KB /   750 LEs
	lvm/rootdg/james	   2441216 KB /   596 LEs


/proc/evms/mdstat:
Enterprise Volume Management System: MD Status
Personalities : [evms_linear] [evms_raid0] [evms_raid1] [evms_raid5] 
md1 : active evms_raid1 hda1[0] hdc1[1]
      224768 blocks [2/2] [UU]
      
md0 : active evms_raid1 hda7[0] hdc2[1]
      14225408 blocks [2/2] [UU]
      


############################################################
                  Data from the EVMS Engine
############################################################




EVMS Command Line Interpreter Version 1.1.0


Plug-in ID: 531640322
Full Name: OS/2 Region Manager
Short Name: OS2RegMgr
OEM: IBM
Version 1.0.0

Plug-in ID: 531640323
Full Name: AIX Region Manager
Short Name: AixRegMgr
OEM: IBM
Version 0.1.0

Plug-in ID: 531652614
Full Name: JFS File System Interface Module
Short Name: JFS
OEM: IBM
Version 1.0.0

Plug-in ID: 531636225
Full Name: Default Storage Segment Manager
Short Name: DefaultSegMgr
OEM: IBM
Version 1.0.0

Plug-in ID: 531644417
Full Name: Drive Linking Feature
Short Name: DriveLink
OEM: IBM
Version 1.0.0

Plug-in ID: 531652617
Full Name: ReiserFS File System Interface Module
Short Name: ReiserFS
OEM: IBM
Version 1.0.0

Plug-in ID: 531652618
Full Name: Swap File System Interface Module
Short Name: SWAPFS
OEM: IBM
Version 0.1.0

Plug-in ID: 531632129
Full Name: Local Disk Manager
Short Name: LocalDskMgr
OEM: IBM
Version 1.0.0

Plug-in ID: 531640327
Full Name: MD RAID 4/5 Region Manager
Short Name: MDRaid5RegMgr
OEM: IBM
Version 0.1.0

Plug-in ID: 531640326
Full Name: MD Raid 0 Region Manager
Short Name: MDRaid0RegMgr
OEM: IBM
Version 0.1.0

Plug-in ID: 531640325
Full Name: MD Raid 1 Region Manager
Short Name: MDRaid1RegMgr
OEM: IBM
Version 0.1.0

Plug-in ID: 531640324
Full Name: MD Linear Raid Region Manager
Short Name: MDLinearRegMgr
OEM: IBM
Version 0.1.0

Plug-in ID: 531640321
Full Name: LVM Region Manager
Short Name: LvmRegMgr
OEM: IBM
Version 1.0.0

Plug-in ID: 531636227
Full Name: GPT Storage Segment Manager
Short Name: GptSegMgr
OEM: IBM
Version 1.0.0

Plug-in ID: 531644422
Full Name: Bad Block Relocation Feature
Short Name: BBR
OEM: IBM
Version 1.0.0

Plug-in ID: 531648616
Full Name: Snapshot Feature
Short Name: Snapshot
OEM: IBM
Version 2.1.0

Plug-in ID: 531652615
Full Name: Ext2 File System Interface Module
Short Name: Ext2/3
OEM: IBM
Version 1.0.0




----------------------------------------
Logical Disk Name: hda
Logical Disk Size: 37.27 GB
Logical Disk Geometry: 4865 Cylinders, 255 Heads, 63 Sectors per Track, 512 Bytes per \
Sector LBA of the 1024 Cylinder Limit: 16434495



----------------------------------------


----------------------------------------
Logical Disk Name: hdc
Logical Disk Size: 13.99 GB
Logical Disk Geometry: 1826 Cylinders, 255 Heads, 63 Sectors per Track, 512 Bytes per \
Sector LBA of the 1024 Cylinder Limit: 16434495



----------------------------------------



----------------------------------------
Segment Name: hda_mbr
Segment Size: 31.50 KB
Starting LBA: 0
Segment Type: Metadata



----------------------------------------


----------------------------------------
Segment Name: hda1
Segment Size: 219.61 MB
Starting LBA: 63
Segment Type: Data

This segment may be shrunk using the Shrink command.
The following options are available for shrinking this segment:


Option Name: Size
Description: Use this option to specify how many sectors to remove from the segment. \
Remember that segments shrink by cylinder size amounts. Option Type: A 64 bit \
positive integer number.




----------------------------------------


----------------------------------------
Segment Name: hda2
Segment Size: 4.67 GB
Starting LBA: 449820
Segment Type: Data

This segment may be shrunk using the Shrink command.
The following options are available for shrinking this segment:


Option Name: Size
Description: Use this option to specify how many sectors to remove from the segment. \
Remember that segments shrink by cylinder size amounts. Option Type: A 64 bit \
positive integer number.




----------------------------------------


----------------------------------------
Segment Name: hda3
Segment Size: 3.81 GB
Starting LBA: 10249470
Segment Type: Data

This segment may be shrunk using the Shrink command.
The following options are available for shrinking this segment:


Option Name: Size
Description: Use this option to specify how many sectors to remove from the segment. \
Remember that segments shrink by cylinder size amounts. Option Type: A 64 bit \
positive integer number.




----------------------------------------


----------------------------------------
Segment Name: hda_ebr0
Segment Size: 512.00 bytes
Starting LBA: 18249840
Segment Type: Metadata



----------------------------------------


----------------------------------------
Segment Name: hda_freespace1
Segment Size: 243.20 MB
Starting LBA: 18249841
Segment Type: Freespace

This segment may be used with the Allocate command, as well as the Create 
command, to create a segment.



----------------------------------------


----------------------------------------
Segment Name: hda5
Segment Size: 3.10 GB
Starting LBA: 18747918
Segment Type: Data

This segment may be shrunk using the Shrink command.
The following options are available for shrinking this segment:


Option Name: Size
Description: Use this option to specify how many sectors to remove from the segment. \
Remember that segments shrink by cylinder size amounts. Option Type: A 64 bit \
positive integer number.




----------------------------------------


----------------------------------------
Segment Name: hda_ebr1
Segment Size: 31.50 KB
Starting LBA: 25254180
Segment Type: Metadata



----------------------------------------


----------------------------------------
Segment Name: hda6
Segment Size: 305.89 MB
Starting LBA: 25254243
Segment Type: Data

This segment may be shrunk using the Shrink command.
The following options are available for shrinking this segment:


Option Name: Size
Description: Use this option to specify how many sectors to remove from the segment. \
Remember that segments shrink by cylinder size amounts. Option Type: A 64 bit \
positive integer number.




----------------------------------------


----------------------------------------
Segment Name: hda_ebr2
Segment Size: 31.50 KB
Starting LBA: 25880715
Segment Type: Metadata



----------------------------------------


----------------------------------------
Segment Name: hda7
Segment Size: 13.57 GB
Starting LBA: 25880778
Segment Type: Data

This segment may be shrunk using the Shrink command.
The following options are available for shrinking this segment:


Option Name: Size
Description: Use this option to specify how many sectors to remove from the segment. \
Remember that segments shrink by cylinder size amounts. Option Type: A 64 bit \
positive integer number.




----------------------------------------


----------------------------------------
Segment Name: hda_ebr3
Segment Size: 31.50 KB
Starting LBA: 54331830
Segment Type: Metadata



----------------------------------------


----------------------------------------
Segment Name: hda8
Segment Size: 11.36 GB
Starting LBA: 54331893
Segment Type: Data

This segment may be shrunk using the Shrink command.
The following options are available for shrinking this segment:


Option Name: Size
Description: Use this option to specify how many sectors to remove from the segment. \
Remember that segments shrink by cylinder size amounts. Option Type: A 64 bit \
positive integer number.




----------------------------------------


----------------------------------------
Segment Name: hda_freespace2
Segment Size: 4.46 MB
Starting LBA: 78156225
Segment Type: Freespace

This segment may be used with the Allocate command, as well as the Create 
command, to create a segment.



----------------------------------------


----------------------------------------
Segment Name: hdc_mbr
Segment Size: 31.50 KB
Starting LBA: 0
Segment Type: Metadata



----------------------------------------


----------------------------------------
Segment Name: hdc1
Segment Size: 219.61 MB
Starting LBA: 63
Segment Type: Data

This segment may be shrunk using the Shrink command.
The following options are available for shrinking this segment:


Option Name: Size
Description: Use this option to specify how many sectors to remove from the segment. \
Remember that segments shrink by cylinder size amounts. Option Type: A 64 bit \
positive integer number.




----------------------------------------


----------------------------------------
Segment Name: hdc2
Segment Size: 13.77 GB
Starting LBA: 449820
Segment Type: Data

This segment may be shrunk using the Shrink command.
The following options are available for shrinking this segment:


Option Name: Size
Description: Use this option to specify how many sectors to remove from the segment. \
Remember that segments shrink by cylinder size amounts. Option Type: A 64 bit \
positive integer number.




----------------------------------------


----------------------------------------
Segment Name: hdc_freespace1
Segment Size: 1.05 MB
Starting LBA: 29334690
Segment Type: Freespace

This segment may be used with the Allocate command, as well as the Create 
command, to create a segment.



----------------------------------------



----------------------------------------
Container Name: lvm/rootdg
Container Size: 13.56 GB

This container may have disks, segments, or regions added to it or removed from it 
using the Expand or Shrink commands.



----------------------------------------



----------------------------------------
Region Name: lvm/rootdg/james
Region Size: 2.33 GB
Region Type:Data

This region may be expanded using the Expand command.
The following options are available for expanding this region:


Option Name: add_extents
Description: Number of extents to add to the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: add_size
Description: Amount of space to add to the selected LVM region
Option Type: A 32 bit positive integer number.

Option Name: pv_names
Description: Region will be expanded only onto these objects. Leave blank for \
automatic allocation. Option Type: Character String


This region may be shrunk using the Shrink command.
The following options are available for shrinking this region:


Option Name: remove_extents
Description: Number of extents to remove from the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: remove_size
Description: Amount of space to remove from the selected LVM region
Option Type: A 32 bit positive integer number.




----------------------------------------


----------------------------------------
Region Name: lvm/rootdg/root
Region Size: 1.95 GB
Region Type:Data

This region may be expanded using the Expand command.
The following options are available for expanding this region:


Option Name: add_extents
Description: Number of extents to add to the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: add_size
Description: Amount of space to add to the selected LVM region
Option Type: A 32 bit positive integer number.

Option Name: pv_names
Description: Region will be expanded only onto these objects. Leave blank for \
automatic allocation. Option Type: Character String


This region may be shrunk using the Shrink command.
The following options are available for shrinking this region:


Option Name: remove_extents
Description: Number of extents to remove from the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: remove_size
Description: Amount of space to remove from the selected LVM region
Option Type: A 32 bit positive integer number.




----------------------------------------


----------------------------------------
Region Name: lvm/rootdg/stuff
Region Size: 2.93 GB
Region Type:Data

This region may be expanded using the Expand command.
The following options are available for expanding this region:


Option Name: add_extents
Description: Number of extents to add to the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: add_size
Description: Amount of space to add to the selected LVM region
Option Type: A 32 bit positive integer number.

Option Name: pv_names
Description: Region will be expanded only onto these objects. Leave blank for \
automatic allocation. Option Type: Character String


This region may be shrunk using the Shrink command.
The following options are available for shrinking this region:


Option Name: remove_extents
Description: Number of extents to remove from the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: remove_size
Description: Amount of space to remove from the selected LVM region
Option Type: A 32 bit positive integer number.




----------------------------------------


----------------------------------------
Region Name: lvm/rootdg/u3
Region Size: 2.93 GB
Region Type:Data

This region may be expanded using the Expand command.
The following options are available for expanding this region:


Option Name: add_extents
Description: Number of extents to add to the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: add_size
Description: Amount of space to add to the selected LVM region
Option Type: A 32 bit positive integer number.

Option Name: pv_names
Description: Region will be expanded only onto these objects. Leave blank for \
automatic allocation. Option Type: Character String


This region may be shrunk using the Shrink command.
The following options are available for shrinking this region:


Option Name: remove_extents
Description: Number of extents to remove from the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: remove_size
Description: Amount of space to remove from the selected LVM region
Option Type: A 32 bit positive integer number.




----------------------------------------


----------------------------------------
Region Name: lvm/rootdg/usr
Region Size: 2.93 GB
Region Type:Data

This region may be expanded using the Expand command.
The following options are available for expanding this region:


Option Name: add_extents
Description: Number of extents to add to the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: add_size
Description: Amount of space to add to the selected LVM region
Option Type: A 32 bit positive integer number.

Option Name: pv_names
Description: Region will be expanded only onto these objects. Leave blank for \
automatic allocation. Option Type: Character String


This region may be shrunk using the Shrink command.
The following options are available for shrinking this region:


Option Name: remove_extents
Description: Number of extents to remove from the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: remove_size
Description: Amount of space to remove from the selected LVM region
Option Type: A 32 bit positive integer number.




----------------------------------------


----------------------------------------
Region Name: lvm/rootdg/var
Region Size: 500.00 MB
Region Type:Data

This region may be expanded using the Expand command.
The following options are available for expanding this region:


Option Name: add_extents
Description: Number of extents to add to the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: add_size
Description: Amount of space to add to the selected LVM region
Option Type: A 32 bit positive integer number.

Option Name: pv_names
Description: Region will be expanded only onto these objects. Leave blank for \
automatic allocation. Option Type: Character String


This region may be shrunk using the Shrink command.
The following options are available for shrinking this region:


Option Name: remove_extents
Description: Number of extents to remove from the selected LVM region. Only specify \
extents or size! Option Type: A 32 bit positive integer number.

Option Name: remove_size
Description: Amount of space to remove from the selected LVM region
Option Type: A 32 bit positive integer number.




----------------------------------------


----------------------------------------
Region Name: lvm/rootdg/Freespace
Region Size: 0.00 bytes
Region Type:Freespace

This region may be used to produce another region with the Create command.



----------------------------------------


----------------------------------------
Region Name: md/md0
Region Size: 13.57 GB
Region Type:Data

The following options for this region may be changed:


Option Name: availdisks
Description: List of Objects eligible to be added to the array
Option Type: Character String
The current value is: None

Option Name: addspare
Description: Add the selected Available Object into the array as a spare object
Option Type: TRUE or FALSE
The current value is: TRUE

Option Name: addactive
Description: Add the selected Available Object into the array as an active object
Option Type: TRUE or FALSE
The current value is: FALSE

Option Name: sparedisks
Description: Spare Objects in the array to be made active or removed from the array
Option Type: Character String
The current value is: None

Option Name: activespare
Description: Make the selected Spare Object an active member of the array
Option Type: TRUE or FALSE
The current value is: TRUE

Option Name: removespare
Description: Remove the selected Spare Object from the array
Option Type: TRUE or FALSE
The current value is: FALSE

Option Name: activedisks
Description: Active objects in the array to be removed or deactivated
Option Type: Character String
The current value is: None

Option Name: deactiveactive
Description: Make selected Active Object a spare member of the array
Option Type: TRUE or FALSE
The current value is: TRUE

Option Name: removeactive
Description: Remove selected Active Object from the array
Option Type: TRUE or FALSE
The current value is: FALSE

Option Name: faultydisks
Description: Faulty Objects in the array to be removed
Option Type: Character String
The current value is: None

Option Name: removefaulty
Description: Remove selected Faulty Object from the array
Option Type: TRUE or FALSE
The current value is: TRUE


The following plug-in defined tasks are available for this disk:

Task Name:  deactactive
Task Title: Deactivate active object
Task Description: Use this function to convert an active object into a spare object \
in this RAID array.

Task Name:  remactive
Task Title: Remove active object
Task Description: Use this function to remove an active object from this RAID array.




----------------------------------------


----------------------------------------
Region Name: md/md1
Region Size: 219.50 MB
Region Type:Data

The following options for this region may be changed:


Option Name: availdisks
Description: List of Objects eligible to be added to the array
Option Type: Character String
The current value is: None

Option Name: addspare
Description: Add the selected Available Object into the array as a spare object
Option Type: TRUE or FALSE
The current value is: TRUE

Option Name: addactive
Description: Add the selected Available Object into the array as an active object
Option Type: TRUE or FALSE
The current value is: FALSE

Option Name: sparedisks
Description: Spare Objects in the array to be made active or removed from the array
Option Type: Character String
The current value is: None

Option Name: activespare
Description: Make the selected Spare Object an active member of the array
Option Type: TRUE or FALSE
The current value is: TRUE

Option Name: removespare
Description: Remove the selected Spare Object from the array
Option Type: TRUE or FALSE
The current value is: FALSE

Option Name: activedisks
Description: Active objects in the array to be removed or deactivated
Option Type: Character String
The current value is: None

Option Name: deactiveactive
Description: Make selected Active Object a spare member of the array
Option Type: TRUE or FALSE
The current value is: TRUE

Option Name: removeactive
Description: Remove selected Active Object from the array
Option Type: TRUE or FALSE
The current value is: FALSE

Option Name: faultydisks
Description: Faulty Objects in the array to be removed
Option Type: Character String
The current value is: None

Option Name: removefaulty
Description: Remove selected Faulty Object from the array
Option Type: TRUE or FALSE
The current value is: TRUE


The following plug-in defined tasks are available for this disk:

Task Name:  deactactive
Task Title: Deactivate active object
Task Description: Use this function to convert an active object into a spare object \
in this RAID array.

Task Name:  remactive
Task Title: Remove active object
Task Description: Use this function to remove an active object from this RAID array.




----------------------------------------



----------------------------------------
Segment Name: hda_freespace1
Segment Size: 243.20 MB
Starting LBA: 18249841
Segment Type: Freespace

This segment may be used with the Allocate command, as well as the Create 
command, to create a segment.



----------------------------------------


----------------------------------------
Segment Name: hda_freespace2
Segment Size: 4.46 MB
Starting LBA: 78156225
Segment Type: Freespace

This segment may be used with the Allocate command, as well as the Create 
command, to create a segment.



----------------------------------------


----------------------------------------
Segment Name: hdc_freespace1
Segment Size: 1.05 MB
Starting LBA: 29334690
Segment Type: Freespace

This segment may be used with the Allocate command, as well as the Create 
command, to create a segment.



----------------------------------------


----------------------------------------
Region Name: lvm/rootdg/Freespace
Region Size: 0.00 bytes
Region Type:Freespace

This region may be used to produce another region with the Create command.



----------------------------------------



----------------------------------------
Volume Name: /dev/evms/hda2
Volume Size: 4.67 GB
Minor Number: 1
This volume is not mounted.
The volume is either unformatted or contains a filesystem for which EVMS 
does not currently have an FSIM.

The following commands may be used with this volume:
     Convert 
     Delete
     Format
     Revert
     Shrink



----------------------------------------


----------------------------------------
Volume Name: /dev/evms/hda3
Volume Size: 3.81 GB
Minor Number: 2
This volume is not mounted.
Filesystem: ReiserFS
Max Filesystem Size: 16.00 TB
Min Filesystem Size: 1.77 GB

The following commands may be used with this volume:
     Check
     Convert 
     Defragment
     Delete
     Format
     Revert
     Shrink
     Unformat



----------------------------------------


----------------------------------------
Volume Name: /dev/evms/hda5
Volume Size: 3.10 GB
Minor Number: 3
This volume is not mounted.
Filesystem: ReiserFS
Max Filesystem Size: 16.00 TB
Min Filesystem Size: 2.54 GB

The following commands may be used with this volume:
     Check
     Convert 
     Defragment
     Delete
     Format
     Revert
     Shrink
     Unformat



----------------------------------------


----------------------------------------
Volume Name: /dev/evms/hda6
Volume Size: 305.89 MB
Minor Number: 4
This volume is not mounted.
Filesystem: SWAPFS
Max Filesystem Size: 8.00 GB
Min Filesystem Size: 20.00 MB

The following commands may be used with this volume:
     Check
     Convert 
     Defragment
     Delete
     Format
     Revert
     Shrink
     Unformat



----------------------------------------


----------------------------------------
Volume Name: /dev/evms/md/md1
Volume Size: 219.50 MB
Minor Number: 5
Mount Point: /boot
Filesystem: ReiserFS
Max Filesystem Size: 16.00 TB
Min Filesystem Size: 36.59 MB

The following commands may be used with this volume:
     Check
     Defragment
     Format
     Unformat



----------------------------------------


----------------------------------------
Volume Name: /dev/evms/james
Volume Size: 2.33 GB
Minor Number: 249
This volume is not mounted.
Filesystem: ReiserFS
Max Filesystem Size: 16.00 TB
Min Filesystem Size: 1.28 GB

The following commands may be used with this volume:
     Check
     Defragment
     Delete
     Format
     Rename
     Revert
     Shrink
     Unformat
The following features may be added to this volume:
     Drive Linking Feature
     Bad Block Relocation Feature



----------------------------------------


----------------------------------------
Volume Name: /dev/evms/test
Volume Size: 11.36 GB
Minor Number: 250
This volume is not mounted.
Filesystem: ReiserFS
Max Filesystem Size: 16.00 TB
Min Filesystem Size: 58.63 MB

The following commands may be used with this volume:
     Check
     Defragment
     Delete
     Format
     Rename
     Revert
     Shrink
     Unformat
The following features may be added to this volume:
     Drive Linking Feature
     Bad Block Relocation Feature



----------------------------------------


----------------------------------------
Volume Name: /dev/evms/u3
Volume Size: 2.93 GB
Minor Number: 251
Mount Point: /u3
Filesystem: ReiserFS
Max Filesystem Size: 16.00 TB
Min Filesystem Size: 2.43 GB

The following commands may be used with this volume:
     Check
     Defragment
     Format
     Rename
     Unformat



----------------------------------------


----------------------------------------
Volume Name: /dev/evms/usr
Volume Size: 2.93 GB
Minor Number: 252
Mount Point: /usr
Filesystem: ReiserFS
Max Filesystem Size: 16.00 TB
Min Filesystem Size: 1.46 GB

The following commands may be used with this volume:
     Check
     Defragment
     Format
     Rename
     Unformat



----------------------------------------


----------------------------------------
Volume Name: /dev/evms/stuff
Volume Size: 2.93 GB
Minor Number: 253
Mount Point: /u1
Filesystem: ReiserFS
Max Filesystem Size: 16.00 TB
Min Filesystem Size: 605.66 MB

The following commands may be used with this volume:
     Check
     Defragment
     Format
     Rename
     Unformat



----------------------------------------


----------------------------------------
Volume Name: /dev/evms/var
Volume Size: 500.00 MB
Minor Number: 254
Mount Point: /var
Filesystem: ReiserFS
Max Filesystem Size: 16.00 TB
Min Filesystem Size: 176.57 MB

The following commands may be used with this volume:
     Check
     Defragment
     Format
     Rename
     Unformat



----------------------------------------


----------------------------------------
Volume Name: /dev/evms/root
Volume Size: 1.95 GB
Minor Number: 255
Mount Point: /
Filesystem: ReiserFS
Max Filesystem Size: 16.00 TB
Min Filesystem Size: 777.17 MB

The following commands may be used with this volume:
     Check
     Defragment
     Format
     Rename
     Unformat



----------------------------------------


["linux.config.minimal" (text/plain)]

#
# Automatically generated make config: don't edit
#
CONFIG_X86=y
CONFIG_ISA=y
# CONFIG_SBUS is not set
CONFIG_UID16=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODVERSIONS=y
CONFIG_KMOD=y

#
# Processor type and features
#
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
CONFIG_MPENTIUMIII=y
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MELAN is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MCYRIXIII is not set
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
# CONFIG_RWSEM_GENERIC_SPINLOCK is not set
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_X86_L1_CACHE_SHIFT=5
CONFIG_X86_TSC=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_PGE=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
CONFIG_MICROCODE=m
CONFIG_X86_MSR=m
CONFIG_X86_CPUID=m
CONFIG_NOHIGHMEM=y
# CONFIG_HIGHMEM4G is not set
# CONFIG_HIGHMEM64G is not set
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_SMP is not set
CONFIG_X86_UP_APIC=y
CONFIG_X86_UP_IOAPIC=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y

#
# General setup
#
CONFIG_NET=y
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_NAMES=y
# CONFIG_EISA is not set
# CONFIG_MCA is not set
# CONFIG_HOTPLUG is not set
# CONFIG_PCMCIA is not set
# CONFIG_HOTPLUG_PCI is not set
CONFIG_SYSVIPC=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_SYSCTL=y
CONFIG_KCORE_ELF=y
# CONFIG_KCORE_AOUT is not set
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_MISC=y
# CONFIG_PM is not set
# CONFIG_ACPI is not set
# CONFIG_APM is not set

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
# CONFIG_PARPORT is not set

#
# Plug and Play configuration
#
# CONFIG_PNP is not set
# CONFIG_ISAPNP is not set

#
# Block devices
#
CONFIG_BLK_DEV_FD=y
# CONFIG_BLK_DEV_XD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_NBD is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_INITRD=y

#
# Enterprise Volume Management System
#
CONFIG_EVMS=y
CONFIG_EVMS_LOCAL_DEV_MGR_PLUGIN=y
CONFIG_EVMS_DOS_PARTITION_PLUGIN=y
CONFIG_EVMS_GPT_PART_PLUGIN=y
CONFIG_EVMS_SNAPSHOT_PLUGIN=y
CONFIG_EVMS_DRIVELINK_PLUGIN=y
CONFIG_EVMS_BBR_PLUGIN=y
CONFIG_EVMS_LVM_PLUGIN=y
CONFIG_EVMS_MD_PLUGIN=y
CONFIG_EVMS_MD_LINEAR_PERS=y
CONFIG_EVMS_MD_RAID0_PERS=y
CONFIG_EVMS_MD_RAID1_PERS=y
CONFIG_EVMS_MD_RAID5_PERS=y
CONFIG_EVMS_AIX_PLUGIN=y
# CONFIG_EVMS_OS2_PLUGIN is not set
# CONFIG_EVMS_ECR_PLUGIN is not set
# CONFIG_EVMS_INFO_CRITICAL is not set
# CONFIG_EVMS_INFO_SERIOUS is not set
# CONFIG_EVMS_INFO_ERROR is not set
# CONFIG_EVMS_INFO_WARNING is not set
CONFIG_EVMS_INFO_DEFAULT=y
# CONFIG_EVMS_INFO_DETAILS is not set
# CONFIG_EVMS_INFO_DEBUG is not set
# CONFIG_EVMS_INFO_EXTRA is not set
# CONFIG_EVMS_INFO_ENTRY_EXIT is not set
# CONFIG_EVMS_INFO_EVERYTHING is not set

#
# Multi-device support (RAID and LVM)
#
# CONFIG_MD is not set
# CONFIG_BLK_DEV_MD is not set
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID5 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_BLK_DEV_LVM is not set

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
# CONFIG_NETLINK_DEV is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
CONFIG_FILTER=y
CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_FWMARK=y
CONFIG_IP_ROUTE_NAT=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_TOS=y
CONFIG_IP_ROUTE_VERBOSE=y
CONFIG_IP_ROUTE_LARGE_TABLES=y
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=m
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
CONFIG_INET_ECN=y
CONFIG_SYN_COOKIES=y

#
#   IP: Netfilter Configuration
#
CONFIG_IP_NF_CONNTRACK=m
CONFIG_IP_NF_FTP=m
# CONFIG_IP_NF_IRC is not set
CONFIG_IP_NF_QUEUE=m
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_LIMIT=m
CONFIG_IP_NF_MATCH_MAC=m
CONFIG_IP_NF_MATCH_MARK=m
CONFIG_IP_NF_MATCH_MULTIPORT=m
CONFIG_IP_NF_MATCH_TOS=m
# CONFIG_IP_NF_MATCH_AH_ESP is not set
# CONFIG_IP_NF_MATCH_LENGTH is not set
# CONFIG_IP_NF_MATCH_TTL is not set
CONFIG_IP_NF_MATCH_TCPMSS=m
CONFIG_IP_NF_MATCH_STATE=m
CONFIG_IP_NF_MATCH_UNCLEAN=m
CONFIG_IP_NF_MATCH_OWNER=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
CONFIG_IP_NF_TARGET_MIRROR=m
CONFIG_IP_NF_NAT=m
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=m
CONFIG_IP_NF_TARGET_REDIRECT=m
# CONFIG_IP_NF_NAT_SNMP_BASIC is not set
CONFIG_IP_NF_NAT_FTP=m
CONFIG_IP_NF_MANGLE=m
CONFIG_IP_NF_TARGET_TOS=m
CONFIG_IP_NF_TARGET_MARK=m
CONFIG_IP_NF_TARGET_LOG=m
CONFIG_IP_NF_TARGET_ULOG=m
CONFIG_IP_NF_TARGET_TCPMSS=m
# CONFIG_IP_NF_COMPAT_IPCHAINS is not set
# CONFIG_IP_NF_COMPAT_IPFWADM is not set
# CONFIG_IPV6 is not set
# CONFIG_KHTTPD is not set
# CONFIG_ATM is not set
# CONFIG_VLAN_8021Q is not set

#
#  
#
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_DECNET is not set
# CONFIG_BRIDGE is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_LLC is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set

#
# QoS and/or fair queueing
#
CONFIG_NET_SCHED=y
# CONFIG_NET_SCH_CBQ is not set
# CONFIG_NET_SCH_CSZ is not set
# CONFIG_NET_SCH_PRIO is not set
CONFIG_NET_SCH_RED=m
# CONFIG_NET_SCH_SFQ is not set
# CONFIG_NET_SCH_TEQL is not set
# CONFIG_NET_SCH_TBF is not set
# CONFIG_NET_SCH_GRED is not set
# CONFIG_NET_SCH_DSMARK is not set
# CONFIG_NET_SCH_INGRESS is not set
# CONFIG_NET_QOS is not set
# CONFIG_NET_CLS is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set
# CONFIG_PHONE_IXJ is not set
# CONFIG_PHONE_IXJ_PCMCIA is not set

#
# ATA/IDE/MFM/RLL support
#
CONFIG_IDE=y

#
# IDE, ATA and ATAPI Block devices
#
CONFIG_BLK_DEV_IDE=y

#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_HD_IDE is not set
# CONFIG_BLK_DEV_HD is not set
CONFIG_BLK_DEV_IDEDISK=y
# CONFIG_IDEDISK_MULTI_MODE is not set
# CONFIG_BLK_DEV_IDEDISK_VENDOR is not set
# CONFIG_BLK_DEV_IDEDISK_FUJITSU is not set
# CONFIG_BLK_DEV_IDEDISK_IBM is not set
# CONFIG_BLK_DEV_IDEDISK_MAXTOR is not set
# CONFIG_BLK_DEV_IDEDISK_QUANTUM is not set
# CONFIG_BLK_DEV_IDEDISK_SEAGATE is not set
# CONFIG_BLK_DEV_IDEDISK_WD is not set
# CONFIG_BLK_DEV_COMMERIAL is not set
# CONFIG_BLK_DEV_TIVO is not set
# CONFIG_BLK_DEV_IDECS is not set
# CONFIG_BLK_DEV_IDECD is not set
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
CONFIG_BLK_DEV_IDESCSI=y

#
# IDE chipset support/bugfixes
#
# CONFIG_BLK_DEV_CMD640 is not set
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
# CONFIG_BLK_DEV_ISAPNP is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
CONFIG_BLK_DEV_ADMA=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_IDEDMA_PCI_AUTO=y
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_PCI_WIP is not set
# CONFIG_IDEDMA_NEW_DRIVE_LISTINGS is not set
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_AEC62XX_TUNING is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
# CONFIG_WDC_ALI15X3 is not set
# CONFIG_BLK_DEV_AMD74XX is not set
# CONFIG_AMD74XX_OVERRIDE is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_HPT34X_AUTODMA is not set
# CONFIG_BLK_DEV_HPT366 is not set
CONFIG_BLK_DEV_PIIX=y
CONFIG_PIIX_TUNING=y
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_PDC202XX is not set
# CONFIG_PDC202XX_BURST is not set
# CONFIG_PDC202XX_FORCE is not set
# CONFIG_BLK_DEV_SVWKS is not set
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_IDE_CHIPSETS is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_IDEDMA_IVB is not set
# CONFIG_DMA_NONPCI is not set
CONFIG_BLK_DEV_IDE_MODES=y
# CONFIG_BLK_DEV_ATARAID is not set
# CONFIG_BLK_DEV_ATARAID_PDC is not set
# CONFIG_BLK_DEV_ATARAID_HPT is not set

#
# SCSI support
#
CONFIG_SCSI=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
CONFIG_SD_EXTRA_DEVS=40
CONFIG_CHR_DEV_ST=y
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_SR_EXTRA_DEVS=16
CONFIG_CHR_DEV_SG=y

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
# CONFIG_SCSI_DEBUG_QUEUES is not set
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y

#
# SCSI low-level drivers
#
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_7000FASST is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AHA152X is not set
# CONFIG_SCSI_AHA1542 is not set
# CONFIG_SCSI_AHA1740 is not set
# CONFIG_SCSI_AACRAID is not set
CONFIG_SCSI_AIC7XXX=y
CONFIG_AIC7XXX_CMDS_PER_DEVICE=253
CONFIG_AIC7XXX_RESET_DELAY_MS=15000
# CONFIG_AIC7XXX_BUILD_FIRMWARE is not set
# CONFIG_SCSI_DPT_I2O is not set
CONFIG_SCSI_ADVANSYS=y
# CONFIG_SCSI_IN2000 is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_MEGARAID is not set
CONFIG_SCSI_BUSLOGIC=y
# CONFIG_SCSI_OMIT_FLASHPOINT is not set
# CONFIG_SCSI_CPQFCTS is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_DTC3280 is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_DMA is not set
# CONFIG_SCSI_EATA_PIO is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_GENERIC_NCR5380 is not set
# CONFIG_SCSI_IPS is not set
CONFIG_SCSI_INITIO=y
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_NCR53C406A is not set
# CONFIG_SCSI_NCR53C7xx is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_NCR53C8XX is not set
# CONFIG_SCSI_SYM53C8XX is not set
# CONFIG_SCSI_PAS16 is not set
# CONFIG_SCSI_PCI2000 is not set
# CONFIG_SCSI_PCI2220I is not set
# CONFIG_SCSI_PSI240I is not set
# CONFIG_SCSI_QLOGIC_FAS is not set
# CONFIG_SCSI_QLOGIC_ISP is not set
# CONFIG_SCSI_QLOGIC_FC is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_SEAGATE is not set
# CONFIG_SCSI_SIM710 is not set
# CONFIG_SCSI_SYM53C416 is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_T128 is not set
# CONFIG_SCSI_U14_34F is not set
# CONFIG_SCSI_ULTRASTOR is not set
# CONFIG_SCSI_DEBUG is not set

#
# Fusion MPT device support
#
# CONFIG_FUSION is not set
# CONFIG_FUSION_BOOT is not set
# CONFIG_FUSION_ISENSE is not set
# CONFIG_FUSION_CTL is not set
# CONFIG_FUSION_LAN is not set

#
# IEEE 1394 (FireWire) support (EXPERIMENTAL)
#
# CONFIG_IEEE1394 is not set

#
# I2O device support
#
# CONFIG_I2O is not set
# CONFIG_I2O_PCI is not set
# CONFIG_I2O_BLOCK is not set
# CONFIG_I2O_LAN is not set
# CONFIG_I2O_SCSI is not set
# CONFIG_I2O_PROC is not set

#
# Network device support
#
CONFIG_NETDEVICES=y

#
# ARCnet devices
#
# CONFIG_ARCNET is not set
CONFIG_DUMMY=m
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
# CONFIG_ETHERTAP is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
# CONFIG_SUNLANCE is not set
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNBMAC is not set
# CONFIG_SUNQE is not set
# CONFIG_SUNGEM is not set
CONFIG_NET_VENDOR_3COM=y
# CONFIG_EL1 is not set
# CONFIG_EL2 is not set
# CONFIG_ELPLUS is not set
# CONFIG_EL16 is not set
# CONFIG_EL3 is not set
# CONFIG_3C515 is not set
# CONFIG_ELMC is not set
# CONFIG_ELMC_II is not set
CONFIG_VORTEX=m
# CONFIG_LANCE is not set
# CONFIG_NET_VENDOR_SMC is not set
# CONFIG_NET_VENDOR_RACAL is not set
# CONFIG_AT1700 is not set
# CONFIG_DEPCA is not set
# CONFIG_HP100 is not set
# CONFIG_NET_ISA is not set
CONFIG_NET_PCI=y
# CONFIG_PCNET32 is not set
# CONFIG_ADAPTEC_STARFIRE is not set
# CONFIG_AC3200 is not set
# CONFIG_APRICOT is not set
# CONFIG_CS89x0 is not set
CONFIG_TULIP=m
# CONFIG_TULIP_MWI is not set
# CONFIG_TULIP_MMIO is not set
CONFIG_DE4X5=m
# CONFIG_DGRS is not set
# CONFIG_DM9102 is not set
# CONFIG_EEPRO100 is not set
# CONFIG_LNE390 is not set
# CONFIG_FEALNX is not set
# CONFIG_NATSEMI is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_NE3210 is not set
# CONFIG_ES3210 is not set
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
# CONFIG_8139TOO_PIO is not set
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_NEW_RX_RESET is not set
# CONFIG_SIS900 is not set
CONFIG_EPIC100=m
# CONFIG_SUNDANCE is not set
# CONFIG_TLAN is not set
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_RHINE_MMIO is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_NET_POCKET is not set

#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_MYRI_SBUS is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_SK98LIN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP is not set
CONFIG_PPP=m
# CONFIG_PPP_MULTILINK is not set
# CONFIG_PPP_FILTER is not set
# CONFIG_PPP_ASYNC is not set
# CONFIG_PPP_SYNC_TTY is not set
# CONFIG_PPP_DEFLATE is not set
# CONFIG_PPP_BSDCOMP is not set
# CONFIG_PPPOE is not set
# CONFIG_SLIP is not set

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# Token Ring devices
#
CONFIG_TR=y
CONFIG_IBMTR=m
CONFIG_IBMOL=m
CONFIG_IBMLS=m
# CONFIG_TMS380TR is not set
# CONFIG_SMCTR is not set
# CONFIG_NET_FC is not set
# CONFIG_RCPCI is not set
# CONFIG_SHAPER is not set

#
# Wan interfaces
#
# CONFIG_WAN is not set

#
# Amateur Radio support
#
# CONFIG_HAMRADIO is not set

#
# IrDA (infrared) support
#
# CONFIG_IRDA is not set

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Old CD-ROM drivers (not SCSI, not IDE)
#
# CONFIG_CD_NO_IDESCSI is not set

#
# Input core support
#
CONFIG_INPUT=m
CONFIG_INPUT_KEYBDEV=m
CONFIG_INPUT_MOUSEDEV=m
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=m

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_SERIAL=y
CONFIG_SERIAL_CONSOLE=y
# CONFIG_SERIAL_EXTENDED is not set
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_UNIX98_PTYS is not set

#
# I2C support
#
CONFIG_I2C=m
# CONFIG_I2C_ALGOBIT is not set
CONFIG_I2C_ALGOPCF=m
# CONFIG_I2C_ELEKTOR is not set
CONFIG_I2C_CHARDEV=m
# CONFIG_I2C_PROC is not set

#
# Mice
#
# CONFIG_BUSMOUSE is not set
CONFIG_MOUSE=m
CONFIG_PSMOUSE=y
# CONFIG_82C710_MOUSE is not set
# CONFIG_PC110_PAD is not set

#
# Joysticks
#
# CONFIG_INPUT_GAMEPORT is not set
# CONFIG_INPUT_NS558 is not set
# CONFIG_INPUT_LIGHTNING is not set
# CONFIG_INPUT_PCIGAME is not set
# CONFIG_INPUT_CS461X is not set
# CONFIG_INPUT_EMU10K1 is not set
# CONFIG_INPUT_SERIO is not set
# CONFIG_INPUT_SERPORT is not set

#
# Joysticks
#
# CONFIG_INPUT_ANALOG is not set
# CONFIG_INPUT_A3D is not set
# CONFIG_INPUT_ADI is not set
# CONFIG_INPUT_COBRA is not set
# CONFIG_INPUT_GF2K is not set
# CONFIG_INPUT_GRIP is not set
# CONFIG_INPUT_INTERACT is not set
# CONFIG_INPUT_TMDC is not set
# CONFIG_INPUT_SIDEWINDER is not set
# CONFIG_INPUT_IFORCE_USB is not set
# CONFIG_INPUT_IFORCE_232 is not set
# CONFIG_INPUT_WARRIOR is not set
# CONFIG_INPUT_MAGELLAN is not set
# CONFIG_INPUT_SPACEORB is not set
# CONFIG_INPUT_SPACEBALL is not set
# CONFIG_INPUT_STINGER is not set
# CONFIG_INPUT_DB9 is not set
# CONFIG_INPUT_GAMECON is not set
# CONFIG_INPUT_TURBOGRAFX is not set
# CONFIG_QIC02_TAPE is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
CONFIG_INTEL_RNG=m
CONFIG_NVRAM=m
CONFIG_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set

#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
CONFIG_AGP=m
CONFIG_AGP_INTEL=y
CONFIG_AGP_I810=y
CONFIG_AGP_VIA=y
CONFIG_AGP_AMD=y
CONFIG_AGP_SIS=y
CONFIG_AGP_ALI=y
# CONFIG_AGP_SWORKS is not set
# CONFIG_DRM is not set
# CONFIG_MWAVE is not set

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set

#
# File systems
#
# CONFIG_QUOTA is not set
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
CONFIG_REISERFS_FS=y
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set
# CONFIG_ADFS_FS is not set
# CONFIG_ADFS_FS_RW is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EXT3_FS is not set
# CONFIG_JBD is not set
# CONFIG_JBD_DEBUG is not set
# CONFIG_FAT_FS is not set
# CONFIG_MSDOS_FS is not set
# CONFIG_UMSDOS_FS is not set
# CONFIG_VFAT_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_JFFS_FS is not set
# CONFIG_JFFS2_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_TMPFS is not set
# CONFIG_RAMFS is not set
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
# CONFIG_MINIX_FS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_NTFS_FS is not set
# CONFIG_NTFS_RW is not set
# CONFIG_HPFS_FS is not set
CONFIG_PROC_FS=y
CONFIG_DEVFS_FS=y
CONFIG_DEVFS_MOUNT=y
# CONFIG_DEVFS_DEBUG is not set
# CONFIG_DEVPTS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX4FS_RW is not set
# CONFIG_ROMFS_FS is not set
CONFIG_EXT2_FS=y
# CONFIG_SYSV_FS is not set
# CONFIG_UDF_FS is not set
# CONFIG_UDF_RW is not set
# CONFIG_UFS_FS is not set
# CONFIG_UFS_FS_WRITE is not set

#
# Network File Systems
#
# CONFIG_CODA_FS is not set
# CONFIG_INTERMEZZO_FS is not set
# CONFIG_NFS_FS is not set
# CONFIG_NFS_V3 is not set
# CONFIG_ROOT_NFS is not set
# CONFIG_NFSD is not set
# CONFIG_NFSD_V3 is not set
# CONFIG_SUNRPC is not set
# CONFIG_LOCKD is not set
# CONFIG_SMB_FS is not set
# CONFIG_NCP_FS is not set
# CONFIG_NCPFS_PACKET_SIGNING is not set
# CONFIG_NCPFS_IOCTL_LOCKING is not set
# CONFIG_NCPFS_STRONG is not set
# CONFIG_NCPFS_NFS_NS is not set
# CONFIG_NCPFS_OS2_NS is not set
# CONFIG_NCPFS_SMALLDOS is not set
# CONFIG_NCPFS_NLS is not set
# CONFIG_NCPFS_EXTRAS is not set
CONFIG_ZISOFS_FS=y
CONFIG_ZLIB_FS_INFLATE=y

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_OSF_PARTITION is not set
# CONFIG_AMIGA_PARTITION is not set
# CONFIG_ATARI_PARTITION is not set
# CONFIG_MAC_PARTITION is not set
CONFIG_MSDOS_PARTITION=y
# CONFIG_BSD_DISKLABEL is not set
# CONFIG_MINIX_SUBPARTITION is not set
# CONFIG_SOLARIS_X86_PARTITION is not set
# CONFIG_UNIXWARE_DISKLABEL is not set
# CONFIG_LDM_PARTITION is not set
# CONFIG_SGI_PARTITION is not set
# CONFIG_ULTRIX_PARTITION is not set
# CONFIG_SUN_PARTITION is not set
# CONFIG_SMB_NLS is not set
CONFIG_NLS=y

#
# Native Language Support
#
CONFIG_NLS_DEFAULT="cp437"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
CONFIG_NLS_CODEPAGE_852=y
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ISO8859_1 is not set
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_UTF8 is not set

#
# Console drivers
#
CONFIG_VGA_CONSOLE=y
CONFIG_VIDEO_SELECT=y
# CONFIG_MDA_CONSOLE is not set

#
# Frame-buffer support
#
CONFIG_FB=y
CONFIG_DUMMY_CONSOLE=y
# CONFIG_FB_RIVA is not set
# CONFIG_FB_CLGEN is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_VESA is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_HGA is not set
CONFIG_VIDEO_SELECT=y
# CONFIG_FB_MATROX is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_FBCON_ADVANCED is not set
# CONFIG_FBCON_FONTWIDTH8_ONLY is not set
# CONFIG_FBCON_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Sound
#
# CONFIG_SOUND is not set

#
# USB support
#
CONFIG_USB=m
CONFIG_USB_DEBUG=y

#
# Miscellaneous USB options
#
# CONFIG_USB_DEVICEFS is not set
# CONFIG_USB_BANDWIDTH is not set
# CONFIG_USB_LONG_TIMEOUT is not set

#
# USB Controllers
#
CONFIG_USB_UHCI=m
# CONFIG_USB_UHCI_ALT is not set
# CONFIG_USB_OHCI is not set

#
# USB Device Class drivers
#
# CONFIG_USB_AUDIO is not set
# CONFIG_USB_BLUETOOTH is not set
# CONFIG_USB_STORAGE is not set
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_DPCM is not set
# CONFIG_USB_STORAGE_HP8200e is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_ACM is not set
# CONFIG_USB_PRINTER is not set

#
# USB Human Interface Devices (HID)
#
CONFIG_USB_HID=m
# CONFIG_USB_HIDDEV is not set
# CONFIG_USB_KBD is not set
# CONFIG_USB_MOUSE is not set
# CONFIG_USB_WACOM is not set

#
# USB Imaging devices
#
# CONFIG_USB_DC2XX is not set
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_SCANNER is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USB_HPUSBSCSI is not set

#
# USB Multimedia devices
#

#
#   Video4Linux support is needed for USB Multimedia device support
#

#
# USB Network adaptors
#
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_CATC is not set
# CONFIG_USB_CDCETHER is not set
# CONFIG_USB_USBNET is not set

#
# USB port drivers
#
# CONFIG_USB_USS720 is not set

#
# USB Serial Converter support
#
# CONFIG_USB_SERIAL is not set
# CONFIG_USB_SERIAL_GENERIC is not set
# CONFIG_USB_SERIAL_BELKIN is not set
# CONFIG_USB_SERIAL_WHITEHEAT is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
# CONFIG_USB_SERIAL_EMPEG is not set
# CONFIG_USB_SERIAL_FTDI_SIO is not set
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28 is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28X is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28XA is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28XB is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA19 is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA18X is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA19W is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA49W is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_PL2303 is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
# CONFIG_USB_SERIAL_OMNINET is not set

#
# USB Miscellaneous drivers
#
# CONFIG_USB_RIO500 is not set

#
# Bluetooth support
#
# CONFIG_BLUEZ is not set

#
# Kernel hacking
#
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_HIGHMEM is not set
# CONFIG_DEBUG_SLAB is not set
# CONFIG_DEBUG_IOVIRT is not set
CONFIG_MAGIC_SYSRQ=y
# CONFIG_DEBUG_SPINLOCK is not set
CONFIG_DEBUG_BUGVERBOSE=y

["linux.config.normal" (text/plain)]

#
# Automatically generated by make menuconfig: don't edit
#
CONFIG_X86=y
CONFIG_ISA=y
# CONFIG_SBUS is not set
CONFIG_UID16=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODVERSIONS=y
CONFIG_KMOD=y

#
# Processor type and features
#
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
CONFIG_MPENTIUMIII=y
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MELAN is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MCYRIXIII is not set
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
# CONFIG_RWSEM_GENERIC_SPINLOCK is not set
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_X86_L1_CACHE_SHIFT=5
CONFIG_X86_TSC=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_PGE=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
CONFIG_MICROCODE=m
CONFIG_X86_MSR=m
CONFIG_X86_CPUID=m
CONFIG_NOHIGHMEM=y
# CONFIG_HIGHMEM4G is not set
# CONFIG_HIGHMEM64G is not set
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_SMP is not set
CONFIG_X86_UP_APIC=y
CONFIG_X86_UP_IOAPIC=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y

#
# General setup
#
CONFIG_NET=y
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_NAMES=y
# CONFIG_EISA is not set
# CONFIG_MCA is not set
# CONFIG_HOTPLUG is not set
# CONFIG_PCMCIA is not set
# CONFIG_HOTPLUG_PCI is not set
CONFIG_SYSVIPC=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_SYSCTL=y
CONFIG_KCORE_ELF=y
# CONFIG_KCORE_AOUT is not set
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_MISC=y
CONFIG_PM=y
CONFIG_ACPI=y
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_BUSMGR=m
CONFIG_ACPI_SYS=m
CONFIG_ACPI_CPU=m
CONFIG_ACPI_BUTTON=m
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_EC is not set
# CONFIG_ACPI_CMBATT is not set
# CONFIG_ACPI_THERMAL is not set
CONFIG_APM=y
# CONFIG_APM_IGNORE_USER_SUSPEND is not set
CONFIG_APM_DO_ENABLE=y
CONFIG_APM_CPU_IDLE=y
# CONFIG_APM_DISPLAY_BLANK is not set
# CONFIG_APM_RTC_IS_GMT is not set
# CONFIG_APM_ALLOW_INTS is not set
CONFIG_APM_REAL_MODE_POWER_OFF=y

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
# CONFIG_PARPORT is not set

#
# Plug and Play configuration
#
# CONFIG_PNP is not set
# CONFIG_ISAPNP is not set

#
# Block devices
#
CONFIG_BLK_DEV_FD=y
# CONFIG_BLK_DEV_XD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_NBD is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_INITRD=y

#
# Enterprise Volume Management System
#
CONFIG_EVMS=y
CONFIG_EVMS_LOCAL_DEV_MGR_PLUGIN=y
CONFIG_EVMS_DOS_PARTITION_PLUGIN=y
CONFIG_EVMS_GPT_PART_PLUGIN=y
CONFIG_EVMS_SNAPSHOT_PLUGIN=y
CONFIG_EVMS_DRIVELINK_PLUGIN=y
CONFIG_EVMS_BBR_PLUGIN=y
CONFIG_EVMS_LVM_PLUGIN=y
CONFIG_EVMS_MD_PLUGIN=y
CONFIG_EVMS_MD_LINEAR_PERS=y
CONFIG_EVMS_MD_RAID0_PERS=y
CONFIG_EVMS_MD_RAID1_PERS=y
CONFIG_EVMS_MD_RAID5_PERS=y
CONFIG_EVMS_AIX_PLUGIN=y
# CONFIG_EVMS_OS2_PLUGIN is not set
# CONFIG_EVMS_ECR_PLUGIN is not set
# CONFIG_EVMS_INFO_CRITICAL is not set
# CONFIG_EVMS_INFO_SERIOUS is not set
# CONFIG_EVMS_INFO_ERROR is not set
# CONFIG_EVMS_INFO_WARNING is not set
CONFIG_EVMS_INFO_DEFAULT=y
# CONFIG_EVMS_INFO_DETAILS is not set
# CONFIG_EVMS_INFO_DEBUG is not set
# CONFIG_EVMS_INFO_EXTRA is not set
# CONFIG_EVMS_INFO_ENTRY_EXIT is not set
# CONFIG_EVMS_INFO_EVERYTHING is not set

#
# Multi-device support (RAID and LVM)
#
# CONFIG_MD is not set
# CONFIG_BLK_DEV_MD is not set
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID5 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_BLK_DEV_LVM is not set

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
# CONFIG_NETLINK_DEV is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
CONFIG_FILTER=y
CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_FWMARK=y
CONFIG_IP_ROUTE_NAT=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_TOS=y
CONFIG_IP_ROUTE_VERBOSE=y
CONFIG_IP_ROUTE_LARGE_TABLES=y
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=m
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
CONFIG_INET_ECN=y
CONFIG_SYN_COOKIES=y

#
#   IP: Netfilter Configuration
#
CONFIG_IP_NF_CONNTRACK=m
CONFIG_IP_NF_FTP=m
# CONFIG_IP_NF_IRC is not set
CONFIG_IP_NF_QUEUE=m
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_LIMIT=m
CONFIG_IP_NF_MATCH_MAC=m
CONFIG_IP_NF_MATCH_MARK=m
CONFIG_IP_NF_MATCH_MULTIPORT=m
CONFIG_IP_NF_MATCH_TOS=m
# CONFIG_IP_NF_MATCH_AH_ESP is not set
# CONFIG_IP_NF_MATCH_LENGTH is not set
# CONFIG_IP_NF_MATCH_TTL is not set
CONFIG_IP_NF_MATCH_TCPMSS=m
CONFIG_IP_NF_MATCH_STATE=m
CONFIG_IP_NF_MATCH_UNCLEAN=m
CONFIG_IP_NF_MATCH_OWNER=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
CONFIG_IP_NF_TARGET_MIRROR=m
CONFIG_IP_NF_NAT=m
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=m
CONFIG_IP_NF_TARGET_REDIRECT=m
# CONFIG_IP_NF_NAT_SNMP_BASIC is not set
CONFIG_IP_NF_NAT_FTP=m
CONFIG_IP_NF_MANGLE=m
CONFIG_IP_NF_TARGET_TOS=m
CONFIG_IP_NF_TARGET_MARK=m
CONFIG_IP_NF_TARGET_LOG=m
CONFIG_IP_NF_TARGET_ULOG=m
CONFIG_IP_NF_TARGET_TCPMSS=m
# CONFIG_IP_NF_COMPAT_IPCHAINS is not set
# CONFIG_IP_NF_COMPAT_IPFWADM is not set
# CONFIG_IPV6 is not set
# CONFIG_KHTTPD is not set
# CONFIG_ATM is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_DECNET is not set
# CONFIG_BRIDGE is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_LLC is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set

#
# QoS and/or fair queueing
#
CONFIG_NET_SCHED=y
# CONFIG_NET_SCH_CBQ is not set
# CONFIG_NET_SCH_CSZ is not set
# CONFIG_NET_SCH_PRIO is not set
CONFIG_NET_SCH_RED=m
# CONFIG_NET_SCH_SFQ is not set
# CONFIG_NET_SCH_TEQL is not set
# CONFIG_NET_SCH_TBF is not set
# CONFIG_NET_SCH_GRED is not set
# CONFIG_NET_SCH_DSMARK is not set
# CONFIG_NET_SCH_INGRESS is not set
# CONFIG_NET_QOS is not set
# CONFIG_NET_CLS is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set
# CONFIG_PHONE_IXJ is not set
# CONFIG_PHONE_IXJ_PCMCIA is not set

#
# ATA/IDE/MFM/RLL support
#
CONFIG_IDE=y

#
# IDE, ATA and ATAPI Block devices
#
CONFIG_BLK_DEV_IDE=y
# CONFIG_BLK_DEV_HD_IDE is not set
# CONFIG_BLK_DEV_HD is not set
CONFIG_BLK_DEV_IDEDISK=y
# CONFIG_IDEDISK_MULTI_MODE is not set
# CONFIG_BLK_DEV_IDEDISK_VENDOR is not set
# CONFIG_BLK_DEV_IDEDISK_FUJITSU is not set
# CONFIG_BLK_DEV_IDEDISK_IBM is not set
# CONFIG_BLK_DEV_IDEDISK_MAXTOR is not set
# CONFIG_BLK_DEV_IDEDISK_QUANTUM is not set
# CONFIG_BLK_DEV_IDEDISK_SEAGATE is not set
# CONFIG_BLK_DEV_IDEDISK_WD is not set
# CONFIG_BLK_DEV_COMMERIAL is not set
# CONFIG_BLK_DEV_TIVO is not set
# CONFIG_BLK_DEV_IDECS is not set
# CONFIG_BLK_DEV_IDECD is not set
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
CONFIG_BLK_DEV_IDESCSI=y
# CONFIG_BLK_DEV_CMD640 is not set
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
# CONFIG_BLK_DEV_ISAPNP is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
CONFIG_BLK_DEV_ADMA=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_IDEDMA_PCI_AUTO=y
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_PCI_WIP is not set
# CONFIG_IDEDMA_NEW_DRIVE_LISTINGS is not set
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_AEC62XX_TUNING is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
# CONFIG_WDC_ALI15X3 is not set
# CONFIG_BLK_DEV_AMD74XX is not set
# CONFIG_AMD74XX_OVERRIDE is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_HPT34X_AUTODMA is not set
# CONFIG_BLK_DEV_HPT366 is not set
CONFIG_BLK_DEV_PIIX=y
CONFIG_PIIX_TUNING=y
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_PDC202XX is not set
# CONFIG_PDC202XX_BURST is not set
# CONFIG_PDC202XX_FORCE is not set
# CONFIG_BLK_DEV_SVWKS is not set
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_IDE_CHIPSETS is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_IDEDMA_IVB is not set
# CONFIG_DMA_NONPCI is not set
CONFIG_BLK_DEV_IDE_MODES=y
# CONFIG_BLK_DEV_ATARAID is not set
# CONFIG_BLK_DEV_ATARAID_PDC is not set
# CONFIG_BLK_DEV_ATARAID_HPT is not set

#
# SCSI support
#
CONFIG_SCSI=y
CONFIG_BLK_DEV_SD=y
CONFIG_SD_EXTRA_DEVS=40
CONFIG_CHR_DEV_ST=y
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_SR_EXTRA_DEVS=16
CONFIG_CHR_DEV_SG=y
# CONFIG_SCSI_DEBUG_QUEUES is not set
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y

#
# SCSI low-level drivers
#
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_7000FASST is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AHA152X is not set
# CONFIG_SCSI_AHA1542 is not set
# CONFIG_SCSI_AHA1740 is not set
# CONFIG_SCSI_AACRAID is not set
CONFIG_SCSI_AIC7XXX=y
CONFIG_AIC7XXX_CMDS_PER_DEVICE=253
CONFIG_AIC7XXX_RESET_DELAY_MS=15000
# CONFIG_AIC7XXX_BUILD_FIRMWARE is not set
# CONFIG_SCSI_DPT_I2O is not set
CONFIG_SCSI_ADVANSYS=y
# CONFIG_SCSI_IN2000 is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_MEGARAID is not set
CONFIG_SCSI_BUSLOGIC=y
# CONFIG_SCSI_OMIT_FLASHPOINT is not set
# CONFIG_SCSI_CPQFCTS is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_DTC3280 is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_DMA is not set
# CONFIG_SCSI_EATA_PIO is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_GENERIC_NCR5380 is not set
# CONFIG_SCSI_IPS is not set
CONFIG_SCSI_INITIO=y
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_NCR53C406A is not set
# CONFIG_SCSI_NCR53C7xx is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_NCR53C8XX is not set
# CONFIG_SCSI_SYM53C8XX is not set
# CONFIG_SCSI_PAS16 is not set
# CONFIG_SCSI_PCI2000 is not set
# CONFIG_SCSI_PCI2220I is not set
# CONFIG_SCSI_PSI240I is not set
# CONFIG_SCSI_QLOGIC_FAS is not set
# CONFIG_SCSI_QLOGIC_ISP is not set
# CONFIG_SCSI_QLOGIC_FC is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_SEAGATE is not set
# CONFIG_SCSI_SIM710 is not set
# CONFIG_SCSI_SYM53C416 is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_T128 is not set
# CONFIG_SCSI_U14_34F is not set
# CONFIG_SCSI_ULTRASTOR is not set
# CONFIG_SCSI_DEBUG is not set

#
# Fusion MPT device support
#
# CONFIG_FUSION is not set
# CONFIG_FUSION_BOOT is not set
# CONFIG_FUSION_ISENSE is not set
# CONFIG_FUSION_CTL is not set
# CONFIG_FUSION_LAN is not set

#
# IEEE 1394 (FireWire) support (EXPERIMENTAL)
#
# CONFIG_IEEE1394 is not set

#
# I2O device support
#
# CONFIG_I2O is not set
# CONFIG_I2O_PCI is not set
# CONFIG_I2O_BLOCK is not set
# CONFIG_I2O_LAN is not set
# CONFIG_I2O_SCSI is not set
# CONFIG_I2O_PROC is not set

#
# Network device support
#
CONFIG_NETDEVICES=y

#
# ARCnet devices
#
# CONFIG_ARCNET is not set
CONFIG_DUMMY=m
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
# CONFIG_ETHERTAP is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
# CONFIG_SUNLANCE is not set
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNBMAC is not set
# CONFIG_SUNQE is not set
# CONFIG_SUNGEM is not set
CONFIG_NET_VENDOR_3COM=y
# CONFIG_EL1 is not set
# CONFIG_EL2 is not set
# CONFIG_ELPLUS is not set
# CONFIG_EL16 is not set
# CONFIG_EL3 is not set
# CONFIG_3C515 is not set
# CONFIG_ELMC is not set
# CONFIG_ELMC_II is not set
CONFIG_VORTEX=m
# CONFIG_LANCE is not set
# CONFIG_NET_VENDOR_SMC is not set
# CONFIG_NET_VENDOR_RACAL is not set
# CONFIG_AT1700 is not set
# CONFIG_DEPCA is not set
# CONFIG_HP100 is not set
# CONFIG_NET_ISA is not set
CONFIG_NET_PCI=y
# CONFIG_PCNET32 is not set
# CONFIG_ADAPTEC_STARFIRE is not set
# CONFIG_AC3200 is not set
# CONFIG_APRICOT is not set
# CONFIG_CS89x0 is not set
CONFIG_TULIP=m
# CONFIG_TULIP_MWI is not set
# CONFIG_TULIP_MMIO is not set
CONFIG_DE4X5=m
# CONFIG_DGRS is not set
# CONFIG_DM9102 is not set
# CONFIG_EEPRO100 is not set
# CONFIG_LNE390 is not set
# CONFIG_FEALNX is not set
# CONFIG_NATSEMI is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_NE3210 is not set
# CONFIG_ES3210 is not set
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
# CONFIG_8139TOO_PIO is not set
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_NEW_RX_RESET is not set
# CONFIG_SIS900 is not set
CONFIG_EPIC100=m
# CONFIG_SUNDANCE is not set
# CONFIG_TLAN is not set
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_RHINE_MMIO is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_NET_POCKET is not set

#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_MYRI_SBUS is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_SK98LIN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP is not set
CONFIG_PPP=m
# CONFIG_PPP_MULTILINK is not set
# CONFIG_PPP_FILTER is not set
# CONFIG_PPP_ASYNC is not set
# CONFIG_PPP_SYNC_TTY is not set
# CONFIG_PPP_DEFLATE is not set
# CONFIG_PPP_BSDCOMP is not set
# CONFIG_PPPOE is not set
# CONFIG_SLIP is not set

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# Token Ring devices
#
CONFIG_TR=y
CONFIG_IBMTR=m
CONFIG_IBMOL=m
CONFIG_IBMLS=m
# CONFIG_TMS380TR is not set
# CONFIG_SMCTR is not set
# CONFIG_NET_FC is not set
# CONFIG_RCPCI is not set
# CONFIG_SHAPER is not set

#
# Wan interfaces
#
# CONFIG_WAN is not set

#
# Amateur Radio support
#
# CONFIG_HAMRADIO is not set

#
# IrDA (infrared) support
#
# CONFIG_IRDA is not set

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Old CD-ROM drivers (not SCSI, not IDE)
#
# CONFIG_CD_NO_IDESCSI is not set

#
# Input core support
#
CONFIG_INPUT=m
CONFIG_INPUT_KEYBDEV=m
CONFIG_INPUT_MOUSEDEV=m
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=m

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_SERIAL=y
CONFIG_SERIAL_CONSOLE=y
CONFIG_SERIAL_ACPI=y
# CONFIG_SERIAL_EXTENDED is not set
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_UNIX98_PTYS is not set

#
# I2C support
#
CONFIG_I2C=m
# CONFIG_I2C_ALGOBIT is not set
CONFIG_I2C_ALGOPCF=m
# CONFIG_I2C_ELEKTOR is not set
CONFIG_I2C_CHARDEV=m
# CONFIG_I2C_PROC is not set

#
# Mice
#
# CONFIG_BUSMOUSE is not set
CONFIG_MOUSE=m
CONFIG_PSMOUSE=y
# CONFIG_82C710_MOUSE is not set
# CONFIG_PC110_PAD is not set

#
# Joysticks
#
# CONFIG_INPUT_GAMEPORT is not set
# CONFIG_INPUT_NS558 is not set
# CONFIG_INPUT_LIGHTNING is not set
# CONFIG_INPUT_PCIGAME is not set
# CONFIG_INPUT_CS461X is not set
# CONFIG_INPUT_EMU10K1 is not set
# CONFIG_INPUT_SERIO is not set
# CONFIG_INPUT_SERPORT is not set
# CONFIG_INPUT_ANALOG is not set
# CONFIG_INPUT_A3D is not set
# CONFIG_INPUT_ADI is not set
# CONFIG_INPUT_COBRA is not set
# CONFIG_INPUT_GF2K is not set
# CONFIG_INPUT_GRIP is not set
# CONFIG_INPUT_INTERACT is not set
# CONFIG_INPUT_TMDC is not set
# CONFIG_INPUT_SIDEWINDER is not set
# CONFIG_INPUT_IFORCE_USB is not set
# CONFIG_INPUT_IFORCE_232 is not set
# CONFIG_INPUT_WARRIOR is not set
# CONFIG_INPUT_MAGELLAN is not set
# CONFIG_INPUT_SPACEORB is not set
# CONFIG_INPUT_SPACEBALL is not set
# CONFIG_INPUT_STINGER is not set
# CONFIG_INPUT_DB9 is not set
# CONFIG_INPUT_GAMECON is not set
# CONFIG_INPUT_TURBOGRAFX is not set
# CONFIG_QIC02_TAPE is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
CONFIG_INTEL_RNG=m
CONFIG_NVRAM=m
CONFIG_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set

#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
CONFIG_AGP=m
CONFIG_AGP_INTEL=y
CONFIG_AGP_I810=y
CONFIG_AGP_VIA=y
CONFIG_AGP_AMD=y
CONFIG_AGP_SIS=y
CONFIG_AGP_ALI=y
# CONFIG_AGP_SWORKS is not set
# CONFIG_DRM is not set
# CONFIG_MWAVE is not set

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set

#
# File systems
#
# CONFIG_QUOTA is not set
CONFIG_AUTOFS_FS=y
CONFIG_AUTOFS4_FS=y
CONFIG_REISERFS_FS=y
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set
# CONFIG_ADFS_FS is not set
# CONFIG_ADFS_FS_RW is not set
# CONFIG_AFFS_FS is not set
CONFIG_HFS_FS=m
CONFIG_BFS_FS=m
CONFIG_EXT3_FS=y
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_FAT_FS=m
CONFIG_MSDOS_FS=m
CONFIG_UMSDOS_FS=m
CONFIG_VFAT_FS=m
CONFIG_EFS_FS=m
# CONFIG_JFFS_FS is not set
# CONFIG_JFFS2_FS is not set
CONFIG_CRAMFS=m
# CONFIG_TMPFS is not set
# CONFIG_RAMFS is not set
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
# CONFIG_MINIX_FS is not set
CONFIG_VXFS_FS=m
CONFIG_NTFS_FS=m
# CONFIG_NTFS_RW is not set
# CONFIG_HPFS_FS is not set
CONFIG_PROC_FS=y
CONFIG_DEVFS_FS=y
CONFIG_DEVFS_MOUNT=y
# CONFIG_DEVFS_DEBUG is not set
# CONFIG_DEVPTS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX4FS_RW is not set
# CONFIG_ROMFS_FS is not set
CONFIG_EXT2_FS=y
# CONFIG_SYSV_FS is not set
# CONFIG_UDF_FS is not set
# CONFIG_UDF_RW is not set
CONFIG_UFS_FS=m
CONFIG_UFS_FS_WRITE=y

#
# Network File Systems
#
# CONFIG_CODA_FS is not set
# CONFIG_INTERMEZZO_FS is not set
CONFIG_NFS_FS=m
CONFIG_NFS_V3=y
# CONFIG_ROOT_NFS is not set
CONFIG_NFSD=m
CONFIG_NFSD_V3=y
CONFIG_SUNRPC=m
CONFIG_LOCKD=m
CONFIG_LOCKD_V4=y
CONFIG_SMB_FS=m
# CONFIG_SMB_NLS_DEFAULT is not set
# CONFIG_NCP_FS is not set
# CONFIG_NCPFS_PACKET_SIGNING is not set
# CONFIG_NCPFS_IOCTL_LOCKING is not set
# CONFIG_NCPFS_STRONG is not set
# CONFIG_NCPFS_NFS_NS is not set
# CONFIG_NCPFS_OS2_NS is not set
# CONFIG_NCPFS_SMALLDOS is not set
# CONFIG_NCPFS_NLS is not set
# CONFIG_NCPFS_EXTRAS is not set
CONFIG_ZISOFS_FS=y
CONFIG_ZLIB_FS_INFLATE=y

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_OSF_PARTITION is not set
# CONFIG_AMIGA_PARTITION is not set
# CONFIG_ATARI_PARTITION is not set
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
# CONFIG_MINIX_SUBPARTITION is not set
CONFIG_SOLARIS_X86_PARTITION=y
# CONFIG_UNIXWARE_DISKLABEL is not set
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
# CONFIG_SGI_PARTITION is not set
# CONFIG_ULTRIX_PARTITION is not set
CONFIG_SUN_PARTITION=y
CONFIG_SMB_NLS=y
CONFIG_NLS=y

#
# Native Language Support
#
CONFIG_NLS_DEFAULT="cp437"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
CONFIG_NLS_CODEPAGE_852=y
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ISO8859_1 is not set
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_UTF8 is not set

#
# Console drivers
#
CONFIG_VGA_CONSOLE=y
CONFIG_VIDEO_SELECT=y
# CONFIG_MDA_CONSOLE is not set

#
# Frame-buffer support
#
CONFIG_FB=y
CONFIG_DUMMY_CONSOLE=y
# CONFIG_FB_RIVA is not set
# CONFIG_FB_CLGEN is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_VESA is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_HGA is not set
CONFIG_VIDEO_SELECT=y
# CONFIG_FB_MATROX is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_FBCON_ADVANCED is not set
# CONFIG_FBCON_FONTWIDTH8_ONLY is not set
# CONFIG_FBCON_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Sound
#
CONFIG_SOUND=m
# CONFIG_SOUND_BT878 is not set
# CONFIG_SOUND_CMPCI is not set
# CONFIG_SOUND_EMU10K1 is not set
# CONFIG_MIDI_EMU10K1 is not set
# CONFIG_SOUND_FUSION is not set
# CONFIG_SOUND_CS4281 is not set
CONFIG_SOUND_ES1370=m
CONFIG_SOUND_ES1371=m
# CONFIG_SOUND_ESSSOLO1 is not set
# CONFIG_SOUND_MAESTRO is not set
# CONFIG_SOUND_MAESTRO3 is not set
# CONFIG_SOUND_ICH is not set
# CONFIG_SOUND_RME96XX is not set
# CONFIG_SOUND_SONICVIBES is not set
# CONFIG_SOUND_TRIDENT is not set
# CONFIG_SOUND_MSNDCLAS is not set
# CONFIG_SOUND_MSNDPIN is not set
# CONFIG_SOUND_VIA82CXXX is not set
# CONFIG_MIDI_VIA82CXXX is not set
# CONFIG_SOUND_OSS is not set
# CONFIG_SOUND_TVMIXER is not set

#
# USB support
#
CONFIG_USB=m
CONFIG_USB_DEBUG=y
# CONFIG_USB_DEVICEFS is not set
# CONFIG_USB_BANDWIDTH is not set
# CONFIG_USB_LONG_TIMEOUT is not set
CONFIG_USB_UHCI=m
# CONFIG_USB_UHCI_ALT is not set
# CONFIG_USB_OHCI is not set
# CONFIG_USB_AUDIO is not set
# CONFIG_USB_BLUETOOTH is not set
# CONFIG_USB_STORAGE is not set
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_DPCM is not set
# CONFIG_USB_STORAGE_HP8200e is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_ACM is not set
# CONFIG_USB_PRINTER is not set
CONFIG_USB_HID=m
# CONFIG_USB_HIDDEV is not set
# CONFIG_USB_KBD is not set
# CONFIG_USB_MOUSE is not set
# CONFIG_USB_WACOM is not set
# CONFIG_USB_DC2XX is not set
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_SCANNER is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USB_HPUSBSCSI is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_CATC is not set
# CONFIG_USB_CDCETHER is not set
# CONFIG_USB_USBNET is not set
# CONFIG_USB_USS720 is not set

#
# USB Serial Converter support
#
# CONFIG_USB_SERIAL is not set
# CONFIG_USB_SERIAL_GENERIC is not set
# CONFIG_USB_SERIAL_BELKIN is not set
# CONFIG_USB_SERIAL_WHITEHEAT is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
# CONFIG_USB_SERIAL_EMPEG is not set
# CONFIG_USB_SERIAL_FTDI_SIO is not set
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28 is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28X is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28XA is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28XB is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA19 is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA18X is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA19W is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA49W is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_PL2303 is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
# CONFIG_USB_SERIAL_OMNINET is not set
# CONFIG_USB_RIO500 is not set

#
# Bluetooth support
#
# CONFIG_BLUEZ is not set

#
# Kernel hacking
#
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_HIGHMEM is not set
# CONFIG_DEBUG_SLAB is not set
# CONFIG_DEBUG_IOVIRT is not set
CONFIG_MAGIC_SYSRQ=y
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_BUGVERBOSE is not set

-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Evms-devel mailing list
Evms-devel@lists.sourceforge.net
To subscribe/unsubscribe, please visit:
https://lists.sourceforge.net/lists/listinfo/evms-devel

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic