Std::atomic_exchange return wrong pointer type

I am using the following product:
Microsoft Visual Studio Professional 2013
Version 12.0.31101.00 Update 4
Given the following example:
#include <atomic>
#include <iostream>
std::atomic<int*> ptr = nullptr;
int desired = 5;
auto previous0 = std::atomic_exchange_explicit(&ptr, &desired, std::memory_order_acq_rel);
auto previous1 = std::atomic_exchange_explicit(&ptr, nullptr, std::memory_order_acq_rel);
auto previous2 = std::atomic_exchange(&ptr, &desired);
auto previous3 = std::atomic_exchange(&ptr, nullptr);
std::cout << typeid(previous0).name() << std::endl;
std::cout << typeid(previous1).name() << std::endl;
std::cout << typeid(previous2).name() << std::endl;
std::cout << typeid(previous3).name() << std::endl;
I get the output:
int *
void *
int *
void *
Expected output would be:
int *
int *
int *
int *
Is this a known bug in VC12?
PS: I couldn't find a proper category for MSVC related questions.

I see that it prefers:
inline _ITYPE atomic_exchange_explicit(
_ATOMIC_ITYPE *_Atom, _ITYPE _Value,
memory_order _Order) _NOEXCEPT
{ // exchange value stored in *_Atom with _Value
return _ATOMIC_EXCHANGE(_Atom, _Value, _Order);
over
template <class _Ty>
inline _Ty atomic_exchange_explicit(atomic<_Ty> *_Atom, _Ty _Value,
memory_order _Order) _NOEXCEPT
return _Atom->exchange(_Value, _Order);
That does seem a little suspicious.  I can't say for sure if that's a bug.
Of course, the easy workarounds are to either specify the template arguments or cast nullptr to the appropriate type.
auto previous1a = std::atomic_exchange_explicit<int*>(&ptr, nullptr, std::memory_order_acq_rel);
// or
auto previous1b = std::atomic_exchange_explicit(&ptr, (int*)nullptr, std::memory_order_acq_rel);

Similar Messages

  • DatabaseMetaData returning wrong types

    There seem to be a problem with JDBC returning the wrong column type. For oracle date columns I get a java.sql.Types.TIMESTAMP from getColumnType().

    Hmmm... unless there is something they are not telling us, I agree. The Timestamp is a composite of the Date type, but with resolution to the nanosecond.
    Perhaps they are planning to extend the date column functionality at some point to include this much resolution?
    null

  • SDO_UTIL.GETNUMVERTICES for point type geometries returns gtype?

    Hi folks,
    This is a head scratcher.
    Uh shouldn't this always return 1? It seems to return the get_gtype value.
    SELECT
    SDO_UTIL.GETNUMVERTICES(
       SDO_GEOMETRY(
          2001,
          8265,
          SDO_POINT_TYPE(
             -86.85791015625,
             33.3029861812241,
             NULL
          NULL,
          NULL
    FROM DUAL;We can get even whackier. This returns 9!
    SELECT
    SDO_UTIL.GETNUMVERTICES(
       SDO_GEOMETRY(
          9001,
          8265,
          SDO_POINT_TYPE(
             NULL,
             NULL,
             NULL
          NULL,
          NULL
    FROM DUAL;Am I missing some nuance here?
    Thanks!
    Paul

    Hi Paul,
    I'm looking forward to hearing you work the term "fancy hat" into an explanation of this behavior.
    I get the same behavior on 11.2.0.2. Tsk tsk on you for not mentioning your version. Back on 10.2.0.4 the same select statements yield:
    ORA-06531: Reference to uninitialized collection
    ORA-06512: at "MDSYS.SDO_UTIL", line 344
    So the only nuance I can think of, which isn't really a nuance at all, is that getnumvertices isn't allowed for point types.
    Matt

  • Expression must return the interface type in Transformation Step in BPM

    hi,
    We are getting below while activating the IP,
    Expression must return the interface type SI_Send_AA
    Expression must return the interface type SI_Get_AA
    No semantic errors found
    We have a Transformation Step in BPM,
    In OM, Source is SI_Send_AA and Target is SI_Get_AA
    Also Container variable points to  the same Abstract SI's.
    Few Thread's for Same are error are:
    Error in  BPM
    expression must return the interface type
    Transformation step in ccBPM scenario
    Error while compiling Business Process
    Even after checking these i am getting this Exception.
    Please Help!
    Thanks,
    Mayank

    Also Container variable points to the same Abstract SI's
    Are you sure that you are using Abstract Message Interfaces only and that these are referring to relevant container variables.
    Normally it happens that there is some mis-match between the message types/ interfaces that we use in the mapping and that we use in the BPM.
    If still not solved, then delete the Transformation step --> save --> activate......then again Edit the BPM to include the Transformation Step.
    Regards,
    Abhishek.

  • Oracle 8i DATE column returned wrong with 9i thin driver

    I have an Oracle 8i database with a column named "timestamp" with the following column metadata:
    DATA_TYPE=93
    TYPE_NAME=DATE
    I execute the following statement:
    select "timestamp" from oracle_data_log
    When I look at the result set metadata using the Oracle 9i drivers, I get (as expected):
    getColumnType=93
    getColumnTypeName=DATE
    getColumnClassName=java.sql.Timestamp
    When I look at the result set metadata using the Oracle 9i drivers, I get:
    getColumnType=91
    getColumnTypeName=DATE
    getColumnClassName=java.sql.Timestamp
    That column type 91 indicates it is SQL type DATE which is for date only values (no time information).
    Our code (working against many different databases with many different drivers) works off the column type metadata and messes up. (Obviously I can look at the column class name string as well / instead, but I'd like the column type to come back with the proper SQL type.)
    As I said, it works as expected with the 8i thin driver (and the DataDirect JDBC driver).

    Thanks for the info.
    It seems to me that returning a SQL type DATE (which means it only stores date information) for an Oracle DATE type (which stores date and time information) is the wrong thing to do. The Oracle DATE type stores date and time information which corresponds to the SQL TIMESTAMP type. It should return TIMESTAMP as the SQL type.
    It seems like it would confuse a client application into thinking there is no time information available, which there is.
    A friend suggested that since a SELECT on a DATE value only displays the date portion and not the time portion, that might be why they did it, but that still doesn't sound right. The Oracle DATE type stores date and time which corresponds to the SQL TIMESTAMP type.
    I guess they might have done it to distinguish between Oracle DATE and TIMESTAMP types, but I still don't like it...
    I wonder if there is any documentation on why Oracle made the decision?

  • DB  Adapter Calling DB Procedure that returns a Record Type

    I am trying to call a PL/SQL procedure that returns a Record Type and a VARCHAR2 and I'm getting this error:
    <Faulthttp://schemas.xmlsoap.org/soap/envelope/>
    <faultcode>env:Server</faultcode>
    <faultstring>java.sql.SQLException: ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call to 'MY_PROC.GET_ID' ORA-06550: line 1, column 7: PL/SQL: Statement ignored </faultstring> </Fault>
    Is there something different I need to do to handle the Record Type OUT parameter?
    Thanks.

    The adapter configuration wizard should take care of the Record Type for you. It should invoke JPublisher to create an equivalent Object type and a package containing a wrapper that will be called by the adapter runtime. The package also contains conversion functions for converting between your Record Type and the generated Object type. Maybe it would help if you posted the signature of your stored procedure (not the body).

  • Customer return - 655 movement type - stock posting reversal after UD

    Dear All,
    I have done customer return using movement type 655. Quality lot has been generated & I have processed the lot mean given the UD for the same lot and qty has been posted to Unrestricted stock. I have done wrong receipt ( Customer return).now I want to reverse process.
    Please guide me what to do in this case?
    Thanks & Regards
    Kundan Kumar

    Hi
    1.If You have done usage decision for the lot.
    material is no more in QI stock.You can bring back that material to QI by 08 Type of inspection only.
    2.But if you want to reverse Mvt type 655 then,
                    T-code
    656     VL01     Create Delivery
    656     VL01N     Create Outbound Dlv. with Order Ref.
    656     VL01NO     Create Outbound Dlv. w/o Order Ref.
    656     VL02     Change Outbound Delivery
    656     VL02N     Change Outbound Delivery
    656     VL03N     Display Outbound Delivery
    656     VL08     Confirmation of Picking Request
    656     VL09     Cancel Goods Issue for Delivery Note
    Go to Tcode OMJJ
    Enter Mvt type 656
    Check the setting  for this Mvt type.
    Regards
    Sujit S Gujar

  • On Firefox stage.stageWidth stage.stageHeight return wrong values

    Hello,
    I have a problem on firefox windows 8, stage.stageWidth and stage.stageHeight return wrong values,
    swfobject.embedSWF("mySwf.swf", "mySwf", "500", "500", "14.0.0","expressInstall.swf", flashvars, params, attributes);
    on ie, Chrome stage.stageWidth and stage.stageHeight return 500
    on iFirefox stage.stageWidth and stage.stageHeight return 750 and my animation is smaller (66%)
    Thanks

    In order to target iPhone 5 you need to use AIR 3.5 beta or AIR 3.4
    pointing to iOS 6 SDK. Be sure to include the [email protected] to
    trigger the iPhone 5 size. In other words, the app has to be built
    targeting the iOS 6 SDK and have the new default png to trigger the full
    size on the iPhone 5.
    AIR 3.5 beta includes the bits that to target iOS 6 SDK, but you can
    target iOS 6 with AIR 3.4 by using the external SDK path in the package
    ANE prompt in FB 4.6
    http://labs.adobe.com
    iBrent

  • Wrong Device Type Selected

    This is a partial fix when a wrong device type is selected in the network map, either by you or Network Magic. The first step here was NOT done by me, but by "mbroadfo". He did an excellent job on figuring this out. There is a quicker and easier way however, once you do mbroadfo's work. This was his post under "Network Map Issuses Solved!:
    09-22-201010:02 AM 
    I have been trying to figure out how to resolve a couple of issue with the Network Map in Cisco Network Magic (I have version 5.5.9195.0). The problem is that the device names and types I established initially don't get updated correctly in the map when my DHCP server assigns a new IP address. Network Magic does not seem to recognize the device by the MAC address and seems to put too much stock in the IP address (which is strange as DHCP is prevalent on most networks).
    In order to re-initialize the network map, perform the following steps on ALL PC's running Network Magic:
    1) Do not de-install Network Magic (it's not necessary unless you want more work)
    2) Run: serveme.exe from "C:\Program Files\Pure Networks\Network Magic\Support\" (or wherever you installed Cisco Magic) - I created a shortcut so I can do this in the future without hunting around
    3) Find the System Tray icon for serveme (it's a green dot surrounded by a white box)
    4) Right click on the serveme icon and select:
    - Stop NmService (the first item)
    - Delete NetworkLib.xml
    5) Repeat on ALL PC's running Network Magic
    Once you have finished on ALL PC's, perform the following on each PC with Network Magic installed:
    1) Right click on the serveme icon in the System Tray and select:
    - Start NmService (the first item)
    - Force First Run (the eleventh item)
    - Exit ServeMe
    2) Double-Click on Network Magic icon on the System Tray
    3) Click the Link to restart the Network Magic Platform
    4) Go through the initial startup steps per the instructions in the User Guide
    5) Repeat on ALL PC's running Network Magic
    Hope this helps!
    Foot
    The one problem that I kept having, was on one laptop in particular. Once I got all other PC’s correct, this one followed in suit. (I guess I should mention briefly, there are always at a minimum, 5 laptops, 2 desktops, 2 network drives, 3 network cameras, 1 network printer and 3 game consoles listed on the network map. More if friends come over.) You can see my dilemma if one of my device types change. One step left out by mbroadfo, if you have multiple computers with Network Magic on them, only have ONE connected to the network with a complete map at a time. If anything changes to the device type, all of the computers will change their device type and you will have to start all over again.
    1. Leave all of your network devices turned on. Follow the steps above to disable Network Magic.
    2. On one computer, follow the steps above to get Network Magic running again. Once you have a full map of all of your correct devices displayed, proceed to step 3.
    3. Go to the following folder: C:\Users\All Users\Pure Networks\Platform
    4. Copy this file: networklib.xml
    5. SAVE THIS FILE somewhere in a folder where you know where it is. You could rename the copy to something like network.xml.temp
    6. Go to the next computer, leaving the first PC running all the time on the network, and start Network Magic. Network Magic's network map should populate with the first PC's map. If anything changes, you can restore the xml file on the first PC. I'll explain this step later. Once the map is populated correctly, do the same thing on copying the "networklib.xml" file on the second PC, disconnect the second PC from the network or shut it down so its map cannot change. DO NOT copy the "networklib.xml" from the any PC to another thinking it is a short cut. Each "networklib.xml" file is specific to that PC. Move to the next PC and perform step 6 again until all PC's running Network Magic are done.
    7. Once all PC's are done, they can all be brought back online and life should be great.
    Now for the easier part. From this point on, if the map ever changes, simply exit Network Magic, open Task Manager and stop the nmsrvc, go to C:\Users\All Users\Pure Networks\Platform and delete "networklib.xml", copy your saved version of that file back to this folder and restart Network Magic. I know that the initial setup takes a while, but it is easier in the end if anything changes. I use the map and shares to access my cameras and network drives and if one of those changes to any type of computer, you cannot change the device type back. The software needs to have the same type of selection for all device types as when the "Network Device" in the drop down's is selected. I have just spent hours trying to get all of my devices set back to normal. I hope this will help some of you from repeated frustration when something changes.

    Since I wrote the previous fix, I have had some other issues which forced me to correct several times, the Network Magic map. This was for the most part, letting other people have access to change the map. I have since put passwords in place to stop that. I have come up with a shorter way to do the fix that I suggested and found a possible flaw in the previous fix. I don’t know why or where this comes from, but on all of the computers that I have, NM has two different names for the process that runs. Two computers can both be 64 bit hardware and 64 bit OS and still have different process names. The following is what I am using now and works fine for me, but from what I am seeing no matter what software package, whether game or tool, each computer is so unique, the same problem may be on computers with two completely different fixes. Anyway, the following steps are what I am using now and works great on my systems. Hope maybe these steps will work on yours:
    1.       Goto each computer and do the following steps in order. Right click on the Network Magic icon in the notification area of the task bar and exit Network Magic. Next, open Task Manager and click on the Processes tab. This is where NM uses two different names that I have seen: nmsrvc.exe or nmctxth.exe . Which ever process is running, end the process. Next, click on the Services tab. Scroll down until you find nmservice. Right click on nmservice and select Stop Service. Wait to make sure the Status column changes from Running to Stopped. It may take a few moments. If it does not stop or a message appears saying that the service cannot be stopped, click on the Services button at the bottom right corner. Scroll down on the Services window until you find Pure Networks Platform Service. Right click on the this and click on Stop. Again, wait until the status column changes from Started to Stopped. I have tried to just stop the service, but all of the steps above have to be done in order for this to work. This service is what communicates between this computer on all others running NM and tells them what is in the map. Leave this window open and proceed to step 2.
    2.       Go to C:\Users\All Users\Pure Networks\Platform folder. Delete the file networklib.xml on all computers.
    3.       Once step two is done, go back to the Services window and right click on Pure Networks Platform Service and click on Start. When the Status column changes back from Stopped to Started, click on your Network Magic icon to restart the program on one computer only. Watch to map to make sure it populates correctly. If not, you can simply delete the networklib.xml file at this point without having to stop the service again. The map should start over again from scratch. (John.h2h, see at the bottom of this for a possible area to look at for your issue.) Once the map is correct, goto the next computer and do step 3 again. If the map is correct, disconnect the second computer from the network and proceed on to the next computer. If it changes, you only have two computers maps affected and it is simpler to correct at this point. Once all computers have correct maps, bring all online and all should be great.
    4.       As I stated in the previous fix, make a copy of the networklib.xml file on at least on computer and use that one as your map base. If the map should go awry, you can replace the file after all of the other computers NM services have been stopped and the networklib.xml file has been deleted.
    This looks more complicated than it is and I hope this helps.
    John.h2h, two things that you may want to look at, I use a Brother laser printer for a network printer. The port address changed for whatever reason on my system. I had to open the printer properties on each computer and change the IP address to the correct one and the printer worked fine. Another place to look, and if this is the problem, Network Magic is only following rules. Do you have any DHCP address reserved in your router. I have assigned blockes of IP’s to the different types of hardware. Example, all desktops are assigned from 192.168.1.100 to 192.168.1.109, laptops are from 110 to 129, cameras, network drives and printer are from 130 to 145, and game consoles are from 146 to 149. I know that Netgear has the ability to set these. If you do have it reserved, either delete this in your router or change it. If you reserve the address with the IP and Mac address that you want, make sure that your computer is set to obtain IP address automatically.
    Good luck, denpag

  • Robot getpixelColor returns wrong color sometimes...

    Hey
    I ve got a problem. I read Pixels from a Game with the Robot getPixelColor method. Sometimes it returns right values, sometimes wrong! I check some pixels if they are white. The pixels dont move, so this same pixels are white everytime!.
    Now sometimes he returns wrong colors. Instead of 255,255,255 ...it returns 0,12,25 or something like that. (with the same x, y coordinate).
    My assumption is: My code is like following
    CheckPixel(MyRobot.getPixelColor(30,40);
    CheckPixel(MyRobot.getPixelColor(31,45);
    CheckPixel(MyRobot.getPixelColor(36,20);
    CheckPixel(MyRobot.getPixelColor(51,70);
    Now it has to return 255,255,255 but somtimes its not working, he return 0,0.12 .... 0,0,15..... 255,255,255 .. or something like that
    Could it be, that java does not refresh the robot object so fast when I call getPixelColor so fast in a row?
    Is there a command with which I force Java to wait until the pointer is on the right x,y coordinate? Except of Thread.Sleep();
    Thank you for your help..

    ok I try:
    Robot r = new Robot();
    int x, int y;
    x = getItSomehwere();
    y = getitsomehwere();
    for (int i= 0, i< 20; i++) {
    if (isThatPixelsWhite(x, y) != 0) {
      DoSomething;
    public int isThatPixelsWhite(int x, int y) {
    if  (
    r.getPixelColor(x+5,y+15).equals(Color.WHITE)  &&
    r.getPixelColor(x+7,y+19).equals(Color.WHITE) &&
    r.getPixelColor(x+9,y+11).equals(Color.WHITE) &&
    r.getPixelColor(x+21,y+5).equals(Color.WHITE) &&
    r.getPixelColor(x+13,y+2).equals(Color.WHITE) &&
    r.getPixelColor(x+23,y+7).equals(Color.WHITE) &&
    r.getPixelColor(x+9,y+9).equals(Color.WHITE) &&
    r.getPixelColor(x+10,y+21).equals(Color.WHITE) &&
    r.getPixelColor(x+11,y+22).equals(Color.WHITE)
    ) return 1;
    return 0;
    }Thats the relevant code.
    I guess the fast calling of getPixelColor in this if struct (in Method isthatPixelsWhite) overburd java ..

  • Backup MaxDB 7.6 mit HP Data Protector; Wrong file type

    Hallo.
    Wir versuchen, eine MaxDB-Datenbank (Rel. 7.6) auf SUSE-LINUX unter Verwendung von HP Data Protector zu sichern. Der Versuch, das Backup durchzuführen, schlägt fehl, da auf dem MaxDB-Server anscheinend die Pipe nicht angelegt werden kann. Folgende Meldung wird ausgegeben:
    From: BSM-hph3000.thebis.de "Content_sdb_sdba"  Time: 26.04.2008 10:19:16
          OB2BAR application on "dell2950.thebis.de" successfully started.
    From: OB2BAR_SAPDBBAR-dell2950.thebis.de "SDB"  Time: 04/26/08 10:16:22
          Executing the dbmcli command: `user_logon'.
    From: OB2BAR_SAPDBBAR-dell2950.thebis.de "SDB"  Time: 04/26/08 10:16:22
          Executing the dbmcli command: `dbm_configset -raw set_variable_1 OB2OPTS="(null)"'.
    From: OB2BAR_SAPDBBAR-dell2950.thebis.de "SDB"  Time: 04/26/08 10:16:22
          Executing the dbmcli command: `dbm_configset -raw set_variable_2 OB2APPNAME=SDB'.
    From: OB2BAR_SAPDBBAR-dell2950.thebis.de "SDB"  Time: 04/26/08 10:16:22
          Executing the dbmcli command: `dbm_configset -raw set_variable_3 OB2BARHOSTNAME=dell2950.thebis.de'.
    From: OB2BAR_SAPDBBAR-dell2950.thebis.de "SDB"  Time: 04/26/08 10:16:22
          Executing the dbmcli command: `dbm_configset -raw set_variable_4 TimeoutWaitFiles=30'.
    From: OB2BAR_SAPDBBAR-dell2950.thebis.de "SDB"  Time: 04/26/08 10:16:22
          Executing the dbmcli command: `dbm_configset -raw BSI_ENV /usr/omni/tmp/SDB.bsi_env'.
    From: OB2BAR_SAPDBBAR-dell2950.thebis.de "SDB"  Time: 04/26/08 10:16:22
          Executing the dbmcli command: `medium_put BACKDP-Data[1]/1 /usr/omni/tmp/SDB.BACKDP-Data[1].1 PIPE DATA 0 8'.
    From: OB2BAR_SAPDBBAR-dell2950.thebis.de "SDB"  Time: 04/26/08 10:16:22
          Executing the dbmcli command: `util_connect'.
    From: OB2BAR_SAPDBBAR-dell2950.thebis.de "SDB"  Time: 04/26/08 10:16:22
          Executing the dbmcli command: `backup_start BACKDP-Data[1] DATA'.
    From: OB2BAR_SAPDBBAR-dell2950.thebis.de "SDB"  Time: 04/26/08 10:16:23
          Error: SAPDB responded with:
          -24988,ERR_SQL: SQL error
          -903,Host file I/O error
          3,Data backup failed
          1,Backupmedium #1 (/usr/omni/tmp/SDB.BACKDP-Data[1].1) Wrong file type
          6,Backup error occured, Errorcode 3700 "hostfile_error"
          17,Servertask Info: because Error in backup task occured
          10,Job 1 (Backup / Restore Medium Task) WaitingT131 Result=3700
          6,Error in backup task occured, Errorcode 3700 "hostfile_error"
    From: OB2BAR_SAPDBBAR-dell2950.thebis.de "SDB"  Time: 04/26/08 10:16:23
          Executing the dbmcli command: `exit'.
    From: BSM-hph3000.thebis.de "Content_sdb_sdba"  Time: 26.04.2008 10:19:18
          OB2BAR application on "dell2950.thebis.de" disconnected.
    From: BSM-hph3000.thebis.de "Content_sdb_sdba"  Time: 26.04.2008 10:19:18
          None of the Disk Agents completed successfully.
          Session has failed.
    Ein Versuch, die Pipe /usr/omni/tmp/SDB.BACKDP-Data[1].1 manuell auf dem MaxDB-Server anzulegen, schlug ebenso fehl. Eine Pipe /usr/omni/tmp/SDB.BACKDP-Data kann angelegt werden.
    Frage 1) Hat jemand ein ähnliches Problem und dazu eine Lösung?
    Frage 2) Wo ist hinterlegt, welchen Medium-Name der Data Protector beim command "medium_put" verwenden soll?
    Danke für Eure Hilfe!
    Gruß
    Gerhard Krauß
    Heidelberg

    Hi Marcus,
    we use the version 5.5.
    The pipe name is generated by the Data Protector. When I want to create manually a pipe with this name I got the message "No hit found".
    Do you know a  possibilty where we can configure (at Data Protector or MaxDB) which medium name should be used for creating the pipe?
    Thanks a lot!
    Gerhard

  • Report returns wrong data when run on server

    Hi,
    I'm runing CRS XI R2 on Windows Server 2003 SP2.  When I refresh a report in the Crystal Reports XI Designer, I'm getting correct data.  But when I schedule the report to run on the server it returns wrong data.  The data is different from what I see when I refresh it from the designer.  In the report I have running totals set up to count customers that meet a certain criteria.  The report is very large.  It take almost 2 hours to refresh.
    I was wondering what is causing the difference in running total data between refreshing it on the designer and running it on the server.  Is it returning wrong data b/c of it not reading all the records?  Should I be making any changes to the server settings?  I saw that under pageserver, there are options for  setting the 'Minutes Before an Idle Report Job is Closed' and 'Database Records To Read When Previewing Or Refreshing a Report".  Do either of those have anything to do with the report returning incorrect data when being scheduled to run on the server?
    Thanks,
    Kim

    Hi Xuandao,
    You would need to Use Cell Binding and Trigger concept to accomplish this.
    Its simple, however, you would have to work on a trial and error basis to understand this concept as implementing the same is subject to your dashboard and WEBI Design.
    Open you LiveOffice.
    Insert your WEBI, Now, go to Object Properties of your WEBI, select the second tab that says Prompt, Here, it lists the prompts that you have for your WEBI. This would also enlist your BEx variables as well. Select this BEx variable and click on the button that says Prompt at the bottom of this window. Here, select choose Excel Data Range and click on the cell select button on the right (small button that lets you choose what cell you want to bind this prompt to), Now select a free cell that would not be even populated later on when you run the dashboard say A1 (remember the value that you select). Click on OK and again OK. The WEBI Refreshes and you can see all the prompt values at the cell A1. These are all the possible values stored for your BEx prompt variables (these values are fetched from BW system dynamically).
    Now, save this LiveOffice, Go to you dashboard. Connect your dashboard to your Live office. Go to Data-> connections-> Now, select the WEBI and in the right hand pane  go to Usage tab, here, Click on Trigger cell button on the right hand side and select A1 in you LiveOffice.
    It should work fine.
    Let me know.
    Rgds,
    Sreekul Nair

  • Mount: wrong fs type, bad option, bad superblock on floppy

    Since I switched to kernel 2.6.1, I can no longer mount floppys.
    mount: wrong fs type, bad option, bad superblock on /dev/floppy/0,
    or too many mounted file systems
    I thought some filesystems might be compiled wrong, or the fstab is not OK, but I can't find any mistake.
    If some prof could have a look, I am sorry for the long quotes.
    Kernel Config
    # Automatically generated make config: don't edit
    CONFIG_X86=y
    CONFIG_MMU=y
    CONFIG_UID16=y
    CONFIG_GENERIC_ISA_DMA=y
    # Code maturity level options
    CONFIG_EXPERIMENTAL=y
    CONFIG_CLEAN_COMPILE=y
    CONFIG_STANDALONE=y
    CONFIG_BROKEN_ON_SMP=y
    # General setup
    CONFIG_SWAP=y
    CONFIG_SYSVIPC=y
    CONFIG_BSD_PROCESS_ACCT=y
    CONFIG_SYSCTL=y
    CONFIG_LOG_BUF_SHIFT=14
    CONFIG_IKCONFIG=y
    CONFIG_IKCONFIG_PROC=y
    # CONFIG_EMBEDDED is not set
    CONFIG_KALLSYMS=y
    CONFIG_FUTEX=y
    CONFIG_EPOLL=y
    CONFIG_IOSCHED_NOOP=y
    CONFIG_IOSCHED_AS=y
    CONFIG_IOSCHED_DEADLINE=y
    # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
    # Loadable module support
    CONFIG_MODULES=y
    CONFIG_MODULE_UNLOAD=y
    CONFIG_MODULE_FORCE_UNLOAD=y
    CONFIG_OBSOLETE_MODPARM=y
    CONFIG_MODVERSIONS=y
    CONFIG_KMOD=y
    # Processor type and features
    CONFIG_X86_PC=y
    # CONFIG_X86_VOYAGER is not set
    # CONFIG_X86_NUMAQ is not set
    # CONFIG_X86_SUMMIT is not set
    # CONFIG_X86_BIGSMP is not set
    # CONFIG_X86_VISWS is not set
    # CONFIG_X86_GENERICARCH is not set
    # CONFIG_X86_ES7000 is not set
    # 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_MPENTIUMII is not set
    # CONFIG_MPENTIUMIII is not set
    # CONFIG_MPENTIUM4 is not set
    # CONFIG_MK6 is not set
    CONFIG_MK7=y
    # CONFIG_MK8 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_MVIAC3_2 is not set
    # CONFIG_X86_GENERIC is not set
    CONFIG_X86_CMPXCHG=y
    CONFIG_X86_XADD=y
    CONFIG_X86_L1_CACHE_SHIFT=6
    CONFIG_RWSEM_XCHGADD_ALGORITHM=y
    CONFIG_X86_WP_WORKS_OK=y
    CONFIG_X86_INVLPG=y
    CONFIG_X86_BSWAP=y
    CONFIG_X86_POPAD_OK=y
    CONFIG_X86_GOOD_APIC=y
    CONFIG_X86_INTEL_USERCOPY=y
    CONFIG_X86_USE_PPRO_CHECKSUM=y
    CONFIG_X86_USE_3DNOW=y
    CONFIG_HPET_TIMER=y
    CONFIG_HPET_EMULATE_RTC=y
    # CONFIG_SMP is not set
    CONFIG_PREEMPT=y
    CONFIG_X86_UP_APIC=y
    CONFIG_X86_UP_IOAPIC=y
    CONFIG_X86_LOCAL_APIC=y
    CONFIG_X86_IO_APIC=y
    CONFIG_X86_TSC=y
    CONFIG_X86_MCE=y
    # CONFIG_X86_MCE_NONFATAL is not set
    # CONFIG_X86_MCE_P4THERMAL is not set
    # CONFIG_TOSHIBA is not set
    # CONFIG_I8K is not set
    # CONFIG_MICROCODE is not set
    # CONFIG_X86_MSR is not set
    # CONFIG_X86_CPUID is not set
    # CONFIG_EDD is not set
    # CONFIG_NOHIGHMEM is not set
    # CONFIG_HIGHMEM4G is not set
    CONFIG_HIGHMEM64G=y
    CONFIG_HIGHMEM=y
    CONFIG_X86_PAE=y
    CONFIG_HIGHPTE=y
    # CONFIG_MATH_EMULATION is not set
    CONFIG_MTRR=y
    CONFIG_HAVE_DEC_LOCK=y
    # Power management options (ACPI, APM)
    CONFIG_PM=y
    # CONFIG_SOFTWARE_SUSPEND is not set
    # CONFIG_PM_DISK is not set
    # ACPI (Advanced Configuration and Power Interface) Support
    # CONFIG_ACPI is not set
    # APM (Advanced Power Management) BIOS Support
    CONFIG_APM=y
    # CONFIG_APM_IGNORE_USER_SUSPEND is not set
    # CONFIG_APM_DO_ENABLE is not set
    # CONFIG_APM_CPU_IDLE is not set
    # 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 is not set
    # CPU Frequency scaling
    # CONFIG_CPU_FREQ is not set
    # Bus options (PCI, PCMCIA, EISA, MCA, ISA)
    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_USE_VECTOR is not set
    # CONFIG_PCI_LEGACY_PROC is not set
    CONFIG_PCI_NAMES=y
    CONFIG_ISA=y
    # CONFIG_EISA is not set
    # CONFIG_MCA is not set
    # CONFIG_SCx200 is not set
    CONFIG_HOTPLUG=y
    # PCMCIA/CardBus support
    CONFIG_PCMCIA=y
    CONFIG_YENTA=y
    CONFIG_CARDBUS=y
    CONFIG_I82092=y
    CONFIG_I82365=y
    CONFIG_TCIC=y
    CONFIG_PCMCIA_PROBE=y
    # PCI Hotplug Support
    CONFIG_HOTPLUG_PCI=y
    CONFIG_HOTPLUG_PCI_FAKE=y
    CONFIG_HOTPLUG_PCI_COMPAQ=y
    CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM=y
    CONFIG_HOTPLUG_PCI_IBM=y
    CONFIG_HOTPLUG_PCI_CPCI=y
    CONFIG_HOTPLUG_PCI_CPCI_ZT5550=y
    CONFIG_HOTPLUG_PCI_CPCI_GENERIC=y
    # Executable file formats
    CONFIG_BINFMT_ELF=y
    CONFIG_BINFMT_AOUT=y
    CONFIG_BINFMT_MISC=y
    # Device Drivers
    # Generic Driver Options
    # CONFIG_FW_LOADER is not set
    # Memory Technology Devices (MTD)
    # CONFIG_MTD is not set
    # Parallel port support
    CONFIG_PARPORT=y
    CONFIG_PARPORT_PC=y
    CONFIG_PARPORT_PC_CML1=y
    CONFIG_PARPORT_SERIAL=y
    CONFIG_PARPORT_PC_FIFO=y
    CONFIG_PARPORT_PC_SUPERIO=y
    # CONFIG_PARPORT_PC_PCMCIA is not set
    CONFIG_PARPORT_OTHER=y
    CONFIG_PARPORT_1284=y
    # Plug and Play support
    CONFIG_PNP=y
    CONFIG_PNP_DEBUG=y
    # Protocols
    CONFIG_ISAPNP=y
    CONFIG_PNPBIOS=y
    # 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_UMEM is not set
    CONFIG_BLK_DEV_LOOP=y
    CONFIG_BLK_DEV_CRYPTOLOOP=y
    CONFIG_BLK_DEV_NBD=y
    CONFIG_BLK_DEV_RAM=y
    CONFIG_BLK_DEV_RAM_SIZE=4096
    CONFIG_BLK_DEV_INITRD=y
    CONFIG_LBD=y
    # ATA/ATAPI/MFM/RLL support
    # CONFIG_IDE is not set
    # SCSI device support
    CONFIG_SCSI=y
    CONFIG_SCSI_PROC_FS=y
    # SCSI support type (disk, tape, CD-ROM)
    CONFIG_BLK_DEV_SD=y
    # CONFIG_CHR_DEV_ST is not set
    # CONFIG_CHR_DEV_OSST is not set
    CONFIG_BLK_DEV_SR=y
    CONFIG_BLK_DEV_SR_VENDOR=y
    CONFIG_CHR_DEV_SG=y
    # Some SCSI devices (e.g. CD jukebox) support multiple LUNs
    # CONFIG_SCSI_MULTI_LUN is not set
    # CONFIG_SCSI_REPORT_LUNS is not set
    # CONFIG_SCSI_CONSTANTS is not set
    # CONFIG_SCSI_LOGGING is not set
    # 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_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_AIC7XXX_DEBUG_ENABLE is not set
    CONFIG_AIC7XXX_DEBUG_MASK=0
    # CONFIG_AIC7XXX_REG_PRETTY_PRINT is not set
    # CONFIG_SCSI_AIC7XXX_OLD is not set
    # CONFIG_SCSI_AIC79XX is not set
    # CONFIG_SCSI_ADVANSYS is not set
    # CONFIG_SCSI_IN2000 is not set
    # CONFIG_SCSI_MEGARAID is not set
    # CONFIG_SCSI_SATA is not set
    # CONFIG_SCSI_BUSLOGIC 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_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_GENERIC_NCR5380_MMIO is not set
    # CONFIG_SCSI_IPS is not set
    # CONFIG_SCSI_INIA100 is not set
    # CONFIG_SCSI_PPA is not set
    # CONFIG_SCSI_IMM is not set
    # CONFIG_SCSI_NCR53C406A is not set
    # CONFIG_SCSI_SYM53C8XX_2 is not set
    # CONFIG_SCSI_PAS16 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_SYM53C416 is not set
    # CONFIG_SCSI_DC395x 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_NSP32 is not set
    # CONFIG_SCSI_DEBUG is not set
    # PCMCIA SCSI adapter support
    # CONFIG_PCMCIA_AHA152X is not set
    # CONFIG_PCMCIA_FDOMAIN is not set
    # CONFIG_PCMCIA_NINJA_SCSI is not set
    # CONFIG_PCMCIA_QLOGIC is not set
    # Old CD-ROM drivers (not SCSI, not IDE)
    # CONFIG_CD_NO_IDESCSI is not set
    # Multi-device support (RAID and LVM)
    # CONFIG_MD is not set
    # Fusion MPT device support
    # CONFIG_FUSION is not set
    # IEEE 1394 (FireWire) support (EXPERIMENTAL)
    # CONFIG_IEEE1394 is not set
    # I2O device support
    # CONFIG_I2O is not set
    # Networking support
    CONFIG_NET=y
    # Networking options
    CONFIG_PACKET=y
    # CONFIG_PACKET_MMAP is not set
    CONFIG_NETLINK_DEV=y
    CONFIG_UNIX=y
    # CONFIG_NET_KEY is not set
    CONFIG_INET=y
    CONFIG_IP_MULTICAST=y
    # CONFIG_IP_ADVANCED_ROUTER is not set
    # CONFIG_IP_PNP is not set
    CONFIG_NET_IPIP=y
    CONFIG_NET_IPGRE=y
    # CONFIG_NET_IPGRE_BROADCAST is not set
    # CONFIG_IP_MROUTE is not set
    # CONFIG_ARPD is not set
    CONFIG_INET_ECN=y
    CONFIG_SYN_COOKIES=y
    # CONFIG_INET_AH is not set
    # CONFIG_INET_ESP is not set
    # CONFIG_INET_IPCOMP is not set
    # IP: Virtual Server Configuration
    # CONFIG_IP_VS is not set
    # CONFIG_IPV6 is not set
    # CONFIG_DECNET is not set
    # CONFIG_BRIDGE is not set
    CONFIG_NETFILTER=y
    # CONFIG_NETFILTER_DEBUG is not set
    # IP: Netfilter Configuration
    CONFIG_IP_NF_CONNTRACK=m
    CONFIG_IP_NF_FTP=m
    CONFIG_IP_NF_IRC=m
    # CONFIG_IP_NF_TFTP is not set
    # CONFIG_IP_NF_AMANDA is not set
    CONFIG_IP_NF_QUEUE=m
    CONFIG_IP_NF_IPTABLES=m
    CONFIG_IP_NF_MATCH_LIMIT=m
    # CONFIG_IP_NF_MATCH_IPRANGE is not set
    CONFIG_IP_NF_MATCH_MAC=m
    # CONFIG_IP_NF_MATCH_PKTTYPE is not set
    CONFIG_IP_NF_MATCH_MARK=m
    CONFIG_IP_NF_MATCH_MULTIPORT=m
    CONFIG_IP_NF_MATCH_TOS=m
    # CONFIG_IP_NF_MATCH_RECENT is not set
    # CONFIG_IP_NF_MATCH_ECN is not set
    # CONFIG_IP_NF_MATCH_DSCP is not set
    # CONFIG_IP_NF_MATCH_AH_ESP is not set
    CONFIG_IP_NF_MATCH_LENGTH=m
    CONFIG_IP_NF_MATCH_TTL=m
    CONFIG_IP_NF_MATCH_TCPMSS=m
    # CONFIG_IP_NF_MATCH_HELPER is not set
    CONFIG_IP_NF_MATCH_STATE=m
    # CONFIG_IP_NF_MATCH_CONNTRACK is not set
    CONFIG_IP_NF_MATCH_OWNER=m
    CONFIG_IP_NF_FILTER=m
    CONFIG_IP_NF_TARGET_REJECT=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_TARGET_NETMAP is not set
    # CONFIG_IP_NF_TARGET_SAME is not set
    # CONFIG_IP_NF_NAT_LOCAL is not set
    CONFIG_IP_NF_NAT_SNMP_BASIC=m
    CONFIG_IP_NF_NAT_IRC=m
    CONFIG_IP_NF_NAT_FTP=m
    CONFIG_IP_NF_MANGLE=m
    CONFIG_IP_NF_TARGET_TOS=m
    # CONFIG_IP_NF_TARGET_ECN is not set
    # CONFIG_IP_NF_TARGET_DSCP is not set
    CONFIG_IP_NF_TARGET_MARK=m
    # CONFIG_IP_NF_TARGET_CLASSIFY is not set
    CONFIG_IP_NF_TARGET_LOG=m
    # CONFIG_IP_NF_TARGET_ULOG is not set
    CONFIG_IP_NF_TARGET_TCPMSS=m
    # CONFIG_IP_NF_ARPTABLES is not set
    CONFIG_IP_NF_COMPAT_IPCHAINS=m
    CONFIG_IP_NF_COMPAT_IPFWADM=m
    CONFIG_XFRM=y
    # CONFIG_XFRM_USER is not set
    # SCTP Configuration (EXPERIMENTAL)
    CONFIG_IPV6_SCTP__=y
    # CONFIG_IP_SCTP is not set
    # CONFIG_ATM is not set
    # CONFIG_VLAN_8021Q is not set
    CONFIG_LLC=y
    # CONFIG_LLC2 is not set
    # CONFIG_IPX is not set
    # CONFIG_ATALK is not set
    # CONFIG_X25 is not set
    # CONFIG_LAPB 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=y
    CONFIG_NET_SCH_HTB=y
    CONFIG_NET_SCH_CSZ=y
    CONFIG_NET_SCH_PRIO=y
    CONFIG_NET_SCH_RED=y
    CONFIG_NET_SCH_SFQ=y
    CONFIG_NET_SCH_TEQL=y
    CONFIG_NET_SCH_TBF=y
    CONFIG_NET_SCH_GRED=y
    CONFIG_NET_SCH_DSMARK=y
    CONFIG_NET_SCH_INGRESS=y
    CONFIG_NET_QOS=y
    CONFIG_NET_ESTIMATOR=y
    CONFIG_NET_CLS=y
    CONFIG_NET_CLS_TCINDEX=y
    CONFIG_NET_CLS_ROUTE4=y
    CONFIG_NET_CLS_ROUTE=y
    CONFIG_NET_CLS_FW=y
    CONFIG_NET_CLS_U32=y
    CONFIG_NET_CLS_RSVP=y
    CONFIG_NET_CLS_RSVP6=y
    CONFIG_NET_CLS_POLICE=y
    # Network testing
    # CONFIG_NET_PKTGEN is not set
    CONFIG_NETDEVICES=y
    # ARCnet devices
    CONFIG_ARCNET=m
    # CONFIG_ARCNET_1201 is not set
    CONFIG_ARCNET_1051=m
    # CONFIG_ARCNET_RAW is not set
    CONFIG_ARCNET_COM90xx=m
    CONFIG_ARCNET_COM90xxIO=m
    CONFIG_ARCNET_RIM_I=m
    CONFIG_ARCNET_COM20020=m
    # CONFIG_ARCNET_COM20020_ISA is not set
    CONFIG_ARCNET_COM20020_PCI=m
    CONFIG_DUMMY=y
    # CONFIG_BONDING is not set
    # CONFIG_EQUALIZER is not set
    # CONFIG_TUN is not set
    # CONFIG_ETHERTAP is not set
    # CONFIG_NET_SB1000 is not set
    # Ethernet (10 or 100Mbit)
    CONFIG_NET_ETHERNET=y
    CONFIG_MII=y
    # CONFIG_HAPPYMEAL is not set
    # CONFIG_SUNGEM is not set
    # CONFIG_NET_VENDOR_3COM is not set
    # CONFIG_LANCE is not set
    # CONFIG_NET_VENDOR_SMC is not set
    # CONFIG_NET_VENDOR_RACAL is not set
    # Tulip family network device support
    CONFIG_NET_TULIP=y
    # CONFIG_DE2104X is not set
    CONFIG_TULIP=y
    CONFIG_TULIP_MWI=y
    CONFIG_TULIP_MMIO=y
    # CONFIG_DE4X5 is not set
    # CONFIG_WINBOND_840 is not set
    # CONFIG_DM9102 is not set
    # CONFIG_PCMCIA_XIRCOM is not set
    # CONFIG_PCMCIA_XIRTULIP 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 is not set
    # CONFIG_NET_POCKET is not set
    # Ethernet (1000 Mbit)
    CONFIG_ACENIC=m
    # CONFIG_ACENIC_OMIT_TIGON_I is not set
    CONFIG_DL2K=m
    # CONFIG_E1000 is not set
    CONFIG_NS83820=m
    CONFIG_HAMACHI=m
    CONFIG_YELLOWFIN=m
    # CONFIG_R8169 is not set
    # CONFIG_SIS190 is not set
    CONFIG_SK98LIN=m
    # CONFIG_TIGON3 is not set
    # Ethernet (10000 Mbit)
    # CONFIG_IXGB is not set
    # CONFIG_FDDI is not set
    # CONFIG_HIPPI is not set
    # CONFIG_PLIP is not set
    CONFIG_PPP=y
    CONFIG_PPP_MULTILINK=y
    CONFIG_PPP_FILTER=y
    # CONFIG_PPP_ASYNC is not set
    # CONFIG_PPP_SYNC_TTY is not set
    CONFIG_PPP_DEFLATE=y
    CONFIG_PPP_BSDCOMP=y
    # CONFIG_PPPOE is not set
    # CONFIG_SLIP is not set
    # Wireless LAN (non-hamradio)
    CONFIG_NET_RADIO=y
    # Obsolete Wireless cards support (pre-802.11)
    CONFIG_STRIP=m
    CONFIG_ARLAN=m
    CONFIG_WAVELAN=m
    # CONFIG_PCMCIA_WAVELAN is not set
    # CONFIG_PCMCIA_NETWAVE is not set
    # Wireless 802.11 Frequency Hopping cards support
    # CONFIG_PCMCIA_RAYCS is not set
    # Wireless 802.11b ISA/PCI cards support
    CONFIG_AIRO=m
    CONFIG_HERMES=m
    CONFIG_PLX_HERMES=m
    # CONFIG_TMD_HERMES is not set
    # CONFIG_PCI_HERMES is not set
    # Wireless 802.11b Pcmcia/Cardbus cards support
    # CONFIG_PCMCIA_HERMES is not set
    # CONFIG_AIRO_CS is not set
    # CONFIG_PCMCIA_ATMEL is not set
    # CONFIG_PCMCIA_WL3501 is not set
    CONFIG_NET_WIRELESS=y
    # Token Ring devices
    CONFIG_TR=y
    CONFIG_IBMTR=m
    CONFIG_IBMOL=m
    CONFIG_IBMLS=m
    # CONFIG_3C359 is not set
    CONFIG_TMS380TR=m
    CONFIG_TMSPCI=m
    # CONFIG_SKISA is not set
    # CONFIG_PROTEON is not set
    CONFIG_ABYSS=m
    # 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
    # PCMCIA network device support
    # CONFIG_NET_PCMCIA is not set
    # Amateur Radio support
    # CONFIG_HAMRADIO is not set
    # IrDA (infrared) support
    # CONFIG_IRDA is not set
    # Bluetooth support
    # CONFIG_BT is not set
    # ISDN subsystem
    # CONFIG_ISDN_BOOL is not set
    # Telephony Support
    # CONFIG_PHONE is not set
    # Input device support
    CONFIG_INPUT=y
    # Userland interfaces
    CONFIG_INPUT_MOUSEDEV=y
    CONFIG_INPUT_MOUSEDEV_PSAUX=y
    CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
    CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
    CONFIG_INPUT_JOYDEV=y
    # CONFIG_INPUT_TSDEV is not set
    CONFIG_INPUT_EVDEV=y
    # CONFIG_INPUT_EVBUG is not set
    # Input I/O drivers
    CONFIG_GAMEPORT=y
    CONFIG_SOUND_GAMEPORT=y
    CONFIG_GAMEPORT_NS558=y
    # CONFIG_GAMEPORT_L4 is not set
    CONFIG_GAMEPORT_EMU10K1=y
    # CONFIG_GAMEPORT_VORTEX is not set
    # CONFIG_GAMEPORT_FM801 is not set
    # CONFIG_GAMEPORT_CS461x is not set
    CONFIG_SERIO=y
    CONFIG_SERIO_I8042=y
    # CONFIG_SERIO_SERPORT is not set
    # CONFIG_SERIO_CT82C710 is not set
    # CONFIG_SERIO_PARKBD is not set
    CONFIG_SERIO_PCIPS2=y
    # Input Device Drivers
    CONFIG_INPUT_KEYBOARD=y
    CONFIG_KEYBOARD_ATKBD=y
    # CONFIG_KEYBOARD_SUNKBD is not set
    # CONFIG_KEYBOARD_XTKBD is not set
    # CONFIG_KEYBOARD_NEWTON is not set
    CONFIG_INPUT_MOUSE=y
    CONFIG_MOUSE_PS2=y
    CONFIG_MOUSE_SERIAL=y
    # CONFIG_MOUSE_INPORT is not set
    # CONFIG_MOUSE_LOGIBM is not set
    # CONFIG_MOUSE_PC110PAD is not set
    CONFIG_INPUT_JOYSTICK=y
    # CONFIG_JOYSTICK_ANALOG is not set
    # CONFIG_JOYSTICK_A3D is not set
    # CONFIG_JOYSTICK_ADI is not set
    # CONFIG_JOYSTICK_COBRA is not set
    # CONFIG_JOYSTICK_GF2K is not set
    CONFIG_JOYSTICK_GRIP=y
    CONFIG_JOYSTICK_GRIP_MP=y
    # CONFIG_JOYSTICK_GUILLEMOT is not set
    # CONFIG_JOYSTICK_INTERACT is not set
    CONFIG_JOYSTICK_SIDEWINDER=y
    # CONFIG_JOYSTICK_TMDC is not set
    # CONFIG_JOYSTICK_IFORCE is not set
    # CONFIG_JOYSTICK_WARRIOR is not set
    # CONFIG_JOYSTICK_MAGELLAN is not set
    # CONFIG_JOYSTICK_SPACEORB is not set
    # CONFIG_JOYSTICK_SPACEBALL is not set
    # CONFIG_JOYSTICK_STINGER is not set
    # CONFIG_JOYSTICK_TWIDDLER is not set
    # CONFIG_JOYSTICK_DB9 is not set
    # CONFIG_JOYSTICK_GAMECON is not set
    # CONFIG_JOYSTICK_TURBOGRAFX is not set
    # CONFIG_INPUT_JOYDUMP is not set
    # CONFIG_INPUT_TOUCHSCREEN is not set
    CONFIG_INPUT_MISC=y
    CONFIG_INPUT_PCSPKR=y
    # CONFIG_INPUT_UINPUT is not set
    # Character devices
    CONFIG_VT=y
    CONFIG_VT_CONSOLE=y
    CONFIG_HW_CONSOLE=y
    # CONFIG_SERIAL_NONSTANDARD is not set
    # Serial drivers
    CONFIG_SERIAL_8250=y
    CONFIG_SERIAL_8250_CONSOLE=y
    # CONFIG_SERIAL_8250_CS is not set
    CONFIG_SERIAL_8250_NR_UARTS=4
    CONFIG_SERIAL_8250_EXTENDED=y
    CONFIG_SERIAL_8250_MANY_PORTS=y
    CONFIG_SERIAL_8250_SHARE_IRQ=y
    CONFIG_SERIAL_8250_DETECT_IRQ=y
    CONFIG_SERIAL_8250_MULTIPORT=y
    CONFIG_SERIAL_8250_RSA=y
    # Non-8250 serial port support
    CONFIG_SERIAL_CORE=y
    CONFIG_SERIAL_CORE_CONSOLE=y
    CONFIG_UNIX98_PTYS=y
    CONFIG_UNIX98_PTY_COUNT=256
    CONFIG_PRINTER=y
    # CONFIG_LP_CONSOLE is not set
    # CONFIG_PPDEV is not set
    # CONFIG_TIPAR is not set
    # I2C support
    CONFIG_I2C=y
    CONFIG_I2C_CHARDEV=y
    # I2C Algorithms
    CONFIG_I2C_ALGOBIT=y
    CONFIG_I2C_ALGOPCF=y
    # I2C Hardware Bus support
    CONFIG_I2C_ALI1535=y
    CONFIG_I2C_ALI15X3=y
    CONFIG_I2C_AMD756=y
    CONFIG_I2C_AMD8111=y
    CONFIG_I2C_ELEKTOR=y
    CONFIG_I2C_ELV=y
    CONFIG_I2C_I801=y
    CONFIG_I2C_I810=y
    CONFIG_I2C_ISA=y
    CONFIG_I2C_NFORCE2=y
    CONFIG_I2C_PHILIPSPAR=y
    CONFIG_I2C_PIIX4=y
    CONFIG_I2C_PROSAVAGE=y
    CONFIG_I2C_SAVAGE4=y
    CONFIG_SCx200_ACB=y
    CONFIG_I2C_SIS5595=y
    CONFIG_I2C_SIS630=y
    CONFIG_I2C_SIS96X=y
    CONFIG_I2C_VELLEMAN=y
    CONFIG_I2C_VIA=y
    CONFIG_I2C_VIAPRO=y
    CONFIG_I2C_VOODOO3=y
    # I2C Hardware Sensors Chip support
    CONFIG_I2C_SENSOR=y
    CONFIG_SENSORS_ADM1021=y
    CONFIG_SENSORS_EEPROM=y
    CONFIG_SENSORS_IT87=y
    CONFIG_SENSORS_LM75=y
    CONFIG_SENSORS_LM78=y
    # CONFIG_SENSORS_LM83 is not set
    CONFIG_SENSORS_LM85=y
    CONFIG_SENSORS_VIA686A=y
    CONFIG_SENSORS_W83781D=y
    # Mice
    CONFIG_BUSMOUSE=y
    # CONFIG_QIC02_TAPE is not set
    # IPMI
    # CONFIG_IPMI_HANDLER is not set
    # Watchdog Cards
    # CONFIG_WATCHDOG is not set
    # CONFIG_HW_RANDOM is not set
    CONFIG_NVRAM=y
    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=y
    # CONFIG_AGP_ALI is not set
    # CONFIG_AGP_ATI is not set
    # CONFIG_AGP_AMD is not set
    # CONFIG_AGP_AMD64 is not set
    # CONFIG_AGP_INTEL is not set
    # CONFIG_AGP_NVIDIA is not set
    # CONFIG_AGP_SIS is not set
    # CONFIG_AGP_SWORKS is not set
    CONFIG_AGP_VIA=y
    CONFIG_DRM=y
    # CONFIG_DRM_TDFX is not set
    # CONFIG_DRM_GAMMA is not set
    # CONFIG_DRM_R128 is not set
    # CONFIG_DRM_RADEON is not set
    # CONFIG_DRM_MGA is not set
    # CONFIG_DRM_SIS is not set
    # PCMCIA character devices
    # CONFIG_SYNCLINK_CS is not set
    # CONFIG_MWAVE is not set
    # CONFIG_RAW_DRIVER is not set
    # CONFIG_HANGCHECK_TIMER is not set
    # Multimedia devices
    CONFIG_VIDEO_DEV=y
    # Video For Linux
    # Video Adapters
    CONFIG_VIDEO_BT848=y
    # CONFIG_VIDEO_PMS is not set
    # CONFIG_VIDEO_BWQCAM is not set
    # CONFIG_VIDEO_CQCAM is not set
    # CONFIG_VIDEO_W9966 is not set
    # CONFIG_VIDEO_CPIA is not set
    # CONFIG_VIDEO_SAA5249 is not set
    # CONFIG_TUNER_3036 is not set
    # CONFIG_VIDEO_STRADIS is not set
    # CONFIG_VIDEO_ZORAN is not set
    # CONFIG_VIDEO_SAA7134 is not set
    # CONFIG_VIDEO_MXB is not set
    # CONFIG_VIDEO_DPC is not set
    # CONFIG_VIDEO_HEXIUM_ORION is not set
    # CONFIG_VIDEO_HEXIUM_GEMINI is not set
    # Radio Adapters
    CONFIG_RADIO_CADET=m
    CONFIG_RADIO_RTRACK=m
    CONFIG_RADIO_RTRACK2=m
    CONFIG_RADIO_AZTECH=m
    CONFIG_RADIO_GEMTEK=m
    CONFIG_RADIO_GEMTEK_PCI=m
    CONFIG_RADIO_MAXIRADIO=m
    CONFIG_RADIO_MAESTRO=m
    CONFIG_RADIO_SF16FMI=m
    CONFIG_RADIO_TERRATEC=m
    CONFIG_RADIO_TRUST=m
    CONFIG_RADIO_TYPHOON=m
    CONFIG_RADIO_TYPHOON_PROC_FS=y
    CONFIG_RADIO_ZOLTRIX=m
    # Digital Video Broadcasting Devices
    # CONFIG_DVB is not set
    CONFIG_VIDEO_TUNER=y
    CONFIG_VIDEO_BUF=y
    CONFIG_VIDEO_BTCX=y
    # Graphics support
    CONFIG_FB=y
    # CONFIG_FB_CYBER2000 is not set
    # CONFIG_FB_IMSTT is not set
    CONFIG_FB_VGA16=y
    CONFIG_FB_VESA=y
    CONFIG_VIDEO_SELECT=y
    # CONFIG_FB_HGA is not set
    CONFIG_FB_RIVA=y
    # CONFIG_FB_MATROX is not set
    # CONFIG_FB_RADEON is not set
    # CONFIG_FB_ATY128 is not set
    # CONFIG_FB_ATY is not set
    # CONFIG_FB_SIS is not set
    # CONFIG_FB_NEOMAGIC 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
    # Console display driver support
    CONFIG_VGA_CONSOLE=y
    # CONFIG_MDA_CONSOLE is not set
    CONFIG_DUMMY_CONSOLE=y
    CONFIG_FRAMEBUFFER_CONSOLE=y
    CONFIG_PCI_CONSOLE=y
    # CONFIG_FONTS is not set
    CONFIG_FONT_8x8=y
    CONFIG_FONT_8x16=y
    # Logo configuration
    CONFIG_LOGO=y
    CONFIG_LOGO_LINUX_MONO=y
    CONFIG_LOGO_LINUX_VGA16=y
    CONFIG_LOGO_LINUX_CLUT224=y
    # Sound
    CONFIG_SOUND=y
    # Advanced Linux Sound Architecture
    CONFIG_SND=y
    CONFIG_SND_SEQUENCER=y
    # CONFIG_SND_SEQ_DUMMY is not set
    CONFIG_SND_OSSEMUL=y
    CONFIG_SND_MIXER_OSS=y
    CONFIG_SND_PCM_OSS=y
    CONFIG_SND_SEQUENCER_OSS=y
    CONFIG_SND_RTCTIMER=y
    # CONFIG_SND_VERBOSE_PRINTK is not set
    # CONFIG_SND_DEBUG is not set
    # Generic devices
    # CONFIG_SND_DUMMY is not set
    # CONFIG_SND_VIRMIDI is not set
    # CONFIG_SND_MTPAV is not set
    # CONFIG_SND_SERIAL_U16550 is not set
    # CONFIG_SND_MPU401 is not set
    # ISA devices
    # CONFIG_SND_AD1816A is not set
    # CONFIG_SND_AD1848 is not set
    # CONFIG_SND_CS4231 is not set
    # CONFIG_SND_CS4232 is not set
    # CONFIG_SND_CS4236 is not set
    # CONFIG_SND_ES968 is not set
    # CONFIG_SND_ES1688 is not set
    # CONFIG_SND_ES18XX is not set
    # CONFIG_SND_GUSCLASSIC is not set
    # CONFIG_SND_GUSEXTREME is not set
    # CONFIG_SND_GUSMAX is not set
    # CONFIG_SND_INTERWAVE is not set
    # CONFIG_SND_INTERWAVE_STB is not set
    # CONFIG_SND_OPTI92X_AD1848 is not set
    # CONFIG_SND_OPTI92X_CS4231 is not set
    # CONFIG_SND_OPTI93X is not set
    # CONFIG_SND_SB8 is not set
    # CONFIG_SND_SB16 is not set
    # CONFIG_SND_SBAWE is not set
    # CONFIG_SND_WAVEFRONT is not set
    # CONFIG_SND_ALS100 is not set
    # CONFIG_SND_AZT2320 is not set
    # CONFIG_SND_CMI8330 is not set
    # CONFIG_SND_DT019X is not set
    # CONFIG_SND_OPL3SA2 is not set
    # CONFIG_SND_SGALAXY is not set
    # CONFIG_SND_SSCAPE is not set
    # PCI devices
    # CONFIG_SND_ALI5451 is not set
    # CONFIG_SND_AZT3328 is not set
    # CONFIG_SND_CS46XX is not set
    # CONFIG_SND_CS4281 is not set
    CONFIG_SND_EMU10K1=y
    # CONFIG_SND_KORG1212 is not set
    # CONFIG_SND_NM256 is not set
    # CONFIG_SND_RME32 is not set
    # CONFIG_SND_RME96 is not set
    # CONFIG_SND_RME9652 is not set
    # CONFIG_SND_HDSP is not set
    # CONFIG_SND_TRIDENT is not set
    # CONFIG_SND_YMFPCI is not set
    # CONFIG_SND_ALS4000 is not set
    # CONFIG_SND_CMIPCI is not set
    # CONFIG_SND_ENS1370 is not set
    # CONFIG_SND_ENS1371 is not set
    # CONFIG_SND_ES1938 is not set
    # CONFIG_SND_ES1968 is not set
    # CONFIG_SND_MAESTRO3 is not set
    # CONFIG_SND_FM801 is not set
    # CONFIG_SND_ICE1712 is not set
    # CONFIG_SND_ICE1724 is not set
    # CONFIG_SND_INTEL8X0 is not set
    # CONFIG_SND_SONICVIBES is not set
    # CONFIG_SND_VIA82XX is not set
    # CONFIG_SND_VX222 is not set
    # ALSA USB devices
    # CONFIG_SND_USB_AUDIO is not set
    # PCMCIA devices
    # CONFIG_SND_VXPOCKET is not set
    # CONFIG_SND_VXP440 is not set
    # Open Sound System
    # CONFIG_SOUND_PRIME is not set
    # USB support
    CONFIG_USB=y
    # CONFIG_USB_DEBUG is not set
    # Miscellaneous USB options
    CONFIG_USB_DEVICEFS=y
    # CONFIG_USB_BANDWIDTH is not set
    # CONFIG_USB_DYNAMIC_MINORS is not set
    # USB Host Controller Drivers
    CONFIG_USB_EHCI_HCD=y
    CONFIG_USB_OHCI_HCD=m
    CONFIG_USB_UHCI_HCD=y
    # USB Device Class drivers
    # CONFIG_USB_AUDIO is not set
    # CONFIG_USB_BLUETOOTH_TTY is not set
    # CONFIG_USB_MIDI is not set
    # CONFIG_USB_ACM is not set
    # CONFIG_USB_PRINTER is not set
    CONFIG_USB_STORAGE=y
    CONFIG_USB_STORAGE_DEBUG=y
    CONFIG_USB_STORAGE_DATAFAB=y
    CONFIG_USB_STORAGE_FREECOM=y
    CONFIG_USB_STORAGE_DPCM=y
    CONFIG_USB_STORAGE_HP8200e=y
    CONFIG_USB_STORAGE_SDDR09=y
    CONFIG_USB_STORAGE_SDDR55=y
    CONFIG_USB_STORAGE_JUMPSHOT=y
    # USB Human Interface Devices (HID)
    CONFIG_USB_HID=y
    CONFIG_USB_HIDINPUT=y
    CONFIG_HID_FF=y
    CONFIG_HID_PID=y
    CONFIG_LOGITECH_FF=y
    CONFIG_THRUSTMASTER_FF=y
    CONFIG_USB_HIDDEV=y
    # CONFIG_USB_AIPTEK is not set
    # CONFIG_USB_WACOM is not set
    # CONFIG_USB_KBTAB is not set
    # CONFIG_USB_POWERMATE is not set
    # CONFIG_USB_XPAD is not set
    # USB Imaging devices
    # 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
    # CONFIG_USB_DABUSB is not set
    # CONFIG_USB_VICAM is not set
    # CONFIG_USB_DSBR is not set
    # CONFIG_USB_IBMCAM is not set
    # CONFIG_USB_KONICAWC is not set
    # CONFIG_USB_OV511 is not set
    # CONFIG_USB_PWC is not set
    # CONFIG_USB_SE401 is not set
    # CONFIG_USB_STV680 is not set
    # CONFIG_USB_W9968CF is not set
    # USB Network adaptors
    # CONFIG_USB_CATC is not set
    # CONFIG_USB_KAWETH is not set
    # CONFIG_USB_PEGASUS is not set
    # CONFIG_USB_RTL8150 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=m
    CONFIG_USB_SERIAL_GENERIC=y
    CONFIG_USB_SERIAL_BELKIN=m
    CONFIG_USB_SERIAL_WHITEHEAT=m
    CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
    CONFIG_USB_SERIAL_EMPEG=m
    CONFIG_USB_SERIAL_FTDI_SIO=m
    CONFIG_USB_SERIAL_VISOR=m
    CONFIG_USB_SERIAL_IPAQ=m
    CONFIG_USB_SERIAL_IR=m
    CONFIG_USB_SERIAL_EDGEPORT=m
    # CONFIG_USB_SERIAL_EDGEPORT_TI is not set
    CONFIG_USB_SERIAL_KEYSPAN_PDA=m
    CONFIG_USB_SERIAL_KEYSPAN=m
    # CONFIG_USB_SERIAL_KEYSPAN_MPR 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_USA19QW is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA19QI is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA49W is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA49WLC is not set
    CONFIG_USB_SERIAL_KLSI=m
    # CONFIG_USB_SERIAL_KOBIL_SCT is not set
    CONFIG_USB_SERIAL_MCT_U232=m
    CONFIG_USB_SERIAL_PL2303=m
    CONFIG_USB_SERIAL_SAFE=m
    CONFIG_USB_SERIAL_SAFE_PADDED=y
    CONFIG_USB_SERIAL_CYBERJACK=m
    CONFIG_USB_SERIAL_XIRCOM=m
    CONFIG_USB_SERIAL_OMNINET=m
    CONFIG_USB_EZUSB=y
    # USB Miscellaneous drivers
    # CONFIG_USB_TIGL is not set
    # CONFIG_USB_AUERSWALD is not set
    # CONFIG_USB_RIO500 is not set
    # CONFIG_USB_LEGOTOWER is not set
    # CONFIG_USB_BRLVGER is not set
    # CONFIG_USB_LCD is not set
    # CONFIG_USB_TEST is not set
    # CONFIG_USB_GADGET is not set
    # File systems
    CONFIG_EXT2_FS=y
    CONFIG_EXT2_FS_XATTR=y
    CONFIG_EXT2_FS_POSIX_ACL=y
    CONFIG_EXT2_FS_SECURITY=y
    CONFIG_EXT3_FS=y
    CONFIG_EXT3_FS_XATTR=y
    CONFIG_EXT3_FS_POSIX_ACL=y
    CONFIG_EXT3_FS_SECURITY=y
    CONFIG_JBD=y
    # CONFIG_JBD_DEBUG is not set
    CONFIG_FS_MBCACHE=y
    # CONFIG_REISERFS_FS is not set
    # CONFIG_JFS_FS is not set
    CONFIG_FS_POSIX_ACL=y
    CONFIG_XFS_FS=y
    CONFIG_XFS_RT=y
    # CONFIG_XFS_QUOTA is not set
    CONFIG_XFS_POSIX_ACL=y
    # CONFIG_MINIX_FS is not set
    CONFIG_ROMFS_FS=y
    # CONFIG_QUOTA is not set
    CONFIG_AUTOFS_FS=y
    CONFIG_AUTOFS4_FS=y
    # CD-ROM/DVD Filesystems
    CONFIG_ISO9660_FS=y
    CONFIG_JOLIET=y
    CONFIG_ZISOFS=y
    CONFIG_ZISOFS_FS=y
    CONFIG_UDF_FS=y
    # DOS/FAT/NT Filesystems
    CONFIG_FAT_FS=y
    CONFIG_MSDOS_FS=y
    CONFIG_VFAT_FS=y
    CONFIG_NTFS_FS=y
    # CONFIG_NTFS_DEBUG is not set
    CONFIG_NTFS_RW=y
    # Pseudo filesystems
    CONFIG_PROC_FS=y
    CONFIG_PROC_KCORE=y
    CONFIG_DEVFS_FS=y
    CONFIG_DEVFS_MOUNT=y
    # CONFIG_DEVFS_DEBUG is not set
    CONFIG_DEVPTS_FS=y
    # CONFIG_DEVPTS_FS_XATTR is not set
    CONFIG_TMPFS=y
    # CONFIG_HUGETLBFS is not set
    # CONFIG_HUGETLB_PAGE is not set
    CONFIG_RAMFS=y
    # Miscellaneous filesystems
    # CONFIG_ADFS_FS is not set
    # CONFIG_AFFS_FS is not set
    # CONFIG_HFS_FS is not set
    CONFIG_BEFS_FS=y
    # CONFIG_BEFS_DEBUG is not set
    # CONFIG_BFS_FS is not set
    # CONFIG_EFS_FS is not set
    CONFIG_CRAMFS=y
    # CONFIG_VXFS_FS is not set
    # CONFIG_HPFS_FS is not set
    # CONFIG_QNX4FS_FS is not set
    # CONFIG_SYSV_FS is not set
    # CONFIG_UFS_FS is not set
    # Network File Systems
    CONFIG_NFS_FS=y
    CONFIG_NFS_V3=y
    CONFIG_NFS_V4=y
    CONFIG_NFS_DIRECTIO=y
    CONFIG_NFSD=y
    CONFIG_NFSD_V3=y
    CONFIG_NFSD_V4=y
    CONFIG_NFSD_TCP=y
    CONFIG_LOCKD=y
    CONFIG_LOCKD_V4=y
    CONFIG_EXPORTFS=y
    CONFIG_SUNRPC=y
    # CONFIG_SUNRPC_GSS is not set
    CONFIG_SMB_FS=y
    # CONFIG_SMB_NLS_DEFAULT is not set
    CONFIG_CIFS=y
    # CONFIG_NCP_FS is not set
    CONFIG_CODA_FS=y
    CONFIG_CODA_FS_OLD_API=y
    # CONFIG_INTERMEZZO_FS is not set
    # CONFIG_AFS_FS is not set
    # Partition Types
    # CONFIG_PARTITION_ADVANCED is not set
    CONFIG_MSDOS_PARTITION=y
    # Native Language Support
    CONFIG_NLS=y
    CONFIG_NLS_DEFAULT="cp437"
    # CONFIG_NLS_CODEPAGE_437 is not set
    # CONFIG_NLS_CODEPAGE_737 is not set
    # CONFIG_NLS_CODEPAGE_775 is not set
    CONFIG_NLS_CODEPAGE_850=y
    # CONFIG_NLS_CODEPAGE_852 is not set
    # 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=y
    # 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=y
    # CONFIG_NLS_KOI8_R is not set
    # CONFIG_NLS_KOI8_U is not set
    CONFIG_NLS_UTF8=y
    # Profiling support
    # CONFIG_PROFILING is not set
    # Kernel hacking
    # CONFIG_DEBUG_KERNEL is not set
    # CONFIG_DEBUG_SPINLOCK_SLEEP is not set
    # CONFIG_FRAME_POINTER is not set
    CONFIG_X86_EXTRA_IRQS=y
    CONFIG_X86_FIND_SMP_CONFIG=y
    CONFIG_X86_MPPARSE=y
    # Security options
    CONFIG_SECURITY=y
    CONFIG_SECURITY_NETWORK=y
    CONFIG_SECURITY_CAPABILITIES=y
    CONFIG_SECURITY_ROOTPLUG=y
    CONFIG_SECURITY_SELINUX=y
    CONFIG_SECURITY_SELINUX_BOOTPARAM=y
    CONFIG_SECURITY_SELINUX_DEVELOP=y
    CONFIG_SECURITY_SELINUX_MLS=y
    # Cryptographic options
    CONFIG_CRYPTO=y
    CONFIG_CRYPTO_HMAC=y
    CONFIG_CRYPTO_NULL=y
    CONFIG_CRYPTO_MD4=y
    CONFIG_CRYPTO_MD5=y
    CONFIG_CRYPTO_SHA1=y
    CONFIG_CRYPTO_SHA256=y
    CONFIG_CRYPTO_SHA512=y
    CONFIG_CRYPTO_DES=y
    CONFIG_CRYPTO_BLOWFISH=y
    CONFIG_CRYPTO_TWOFISH=y
    CONFIG_CRYPTO_SERPENT=y
    CONFIG_CRYPTO_AES=y
    CONFIG_CRYPTO_CAST5=y
    CONFIG_CRYPTO_CAST6=y
    CONFIG_CRYPTO_DEFLATE=y
    CONFIG_CRYPTO_TEST=y
    # Library routines
    CONFIG_CRC32=y
    CONFIG_ZLIB_INFLATE=y
    CONFIG_ZLIB_DEFLATE=y
    CONFIG_X86_BIOS_REBOOT=y
    CONFIG_PC=y
    Fstab:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    none /proc proc defaults 0 0
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    tmpfs /tmp tmpfs defaults 0 0
    #sysfs /sys sysfs defaults 0 0
    usbdevfs /proc/bus/usb usbdevfs defaults 0 0
    /dev/cdroms/cdrom0 /mnt/cdrom iso9660,udf ro,user,noauto,unhide 0 0
    /dev/cdroms/cdrom1 /mnt/cdrec iso9660,udf ro,user,noauto,unhide 0 0
    /dev/cdroms/cdrom2 /mnt/dvdrom iso9660,udf ro,user,noauto,unhide 0 0
    /dev/floppy/0 /mnt/floppy vfat user,noauto,unhide 0 0
    /dev/discs/disc1/part1 swap swap defaults 0 0
    /dev/discs/disc4/part1 / ext3 defaults 0 1
    /dev/discs/disc3/part1 /usr ext3 defaults 0 1
    /dev/discs/disc2/part1 /var ext3 defaults 0 1
    /dev/discs/disc0/part2 /usr/src ext3 defaults 0 1
    /dev/discs/disc0/part1 /boot ext3 defaults 0 1

    darkcoder wrote:...  Anyway after those changes I was able to mount windoze floppies as a normal user with # mount /mnt/fl
    What about the ext3 floppies? I have no problem with vfat ones, I can mount them as you mention but when I try to mount ext3 floppies as a regular user I get:
    [florin@guns /mnt]$ mount /mnt/floppy
    mount: wrong fs type, bad option, bad superblock on /dev/fd0,
           or too many mounted file systems
    [florin@guns ~]$ mount /dev/fd0 /mnt/floppy
    mount: only root can do that
    [florin@guns ~]$ mount -t ext3 /dev/fd0 /mnt/floppy
    mount: only root can do that
    I can mount an ext3 floppy as root:
    [root@guns /mnt]# mount /mnt/floppy
    mount: wrong fs type, bad option, bad superblock on /dev/fd0,
           or too many mounted file systems
    [root@guns /mnt]# mount /dev/fd0 /mnt/floppy
    [root@guns /mnt]# cd floppy/
    [root@guns /mnt/floppy]# ls
    lost+found  test
    What am I missing here? What should I do to be able to mount ext3 floppies as a regular user too?
    Info:
    fstab entry:
    /dev/fd0          /mnt/floppy   vfat,ext3     rw,user,noauto      0      0
    User Id:
    [root@guns /etc]# id florin
    uid=1002(florin) gid=1002(users3) groups=1002(users3),92(audio)
    udev.permissions line:
    # floppy devices
    fd[01]*:root:users3:0660

  • Returning an array type from a local method in Web Dynpro Java application

    Hi,
    In my project, we have a requirement to display 18 rolling months along with the year, starting from current month.
    How I am going to approach is that I will get the system date and get the current month and send the month and year value to a local method which will return 18 rolling months along with the year.
    But, when I tried to create a new method there is no option to return an array type. It was greyed out.
    So, we can not return an array type from a method from Web Dynpro for Java application?
    If so, what is the alternative and how am I going to achieve it?
    I will appreciate your help!
    Regards
    Ram

    HI
    You can create new methods in
      //@@begin others
      private ArrayList MyMethod(){
           // ** Put your code here
           return new ArrayList();
      //@@end
    Other option are create a context node with cardinality 0...n with one or more attributes, and in your method create the needed registers into this node. To read this values, you only need to read your context node.
    Best regards
    Edited by: Xavier Aranda on Dec 2, 2010 9:41 AM

  • Return PO box ticked for return PO document type

    HI All,
    There is a help need for Badi.  While creating a return PO in T Code ME21N, i want to get return PO field  ( EKPO-RETPO) box ticked for Return PO document type. I found one BADI for ME_COMMITMENT_RETURN. I need help to use this badi.
    Regards,
    Madhu.

    Hi
    Why don't use the BADI ME_PROCESS_PO_CUST, method PROCESS_ITEM? You have a demo. The idea is:
      data: ls_mepoitem type mepoitem,
            ls_header type ref to if_purchase_order_mm,
            ls_data_header type mepoheader.
      ls_mepoitem = im_item->get_data( ).
      ls_header = im_item->get_header( ).
      ls_data_header = ls_header->get_data( ).
      IF condition IS TRUE.    "with LS_MEPOITEM, LS_DATA_HEADER
        ls_mepoitem-retpo = 'X'.
      ENDIF.
      im_item->set_data( ls_mepoitem ).
    I hope this helps you
    Regards
    Eduardo

Maybe you are looking for