Help building JNI libraries

All -
I'm currently working on a program which will solve Linear Programming problems. To do so, I would like to use the COIN-OR libraries which are implemented in C++ and I've decided to use JNI to do so. I've successfully compilied my java app, created my .h file using the javah -jni command and created and complited my c++ program. However, I get an error when attempting to build the library.
My CreateMPS.h file looks like this:
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class CreateMPS */
#ifndef IncludedCreateMPS
#define IncludedCreateMPS
#ifdef __cplusplus
extern "C" {
#endif
* Class: CreateMPS
* Method: clpSolve
* Signature: (Ljava/lang/String;)V
JNIEXPORT void JNICALL Java_CreateMPS_clpSolve
(JNIEnv *, jobject, jstring);
#ifdef __cplusplus
#endif
#endif
My ClpCaller.cpp, the implementation of this .h file looks like so:
#include <jni.h>
#include "CreateMPS.h"
#include "/Users/drew/COIN/Clp/include/ClpSimplex.hpp"
JNIEXPORT void JNICALL
Java_CreateMPS_clpSolve (JNIEnv *env, jobject obj, jstring prompt)
char buf[128];
const char *str = env->GetStringUTFChars(prompt, 0);
ClpSimplex model;
int status;
status = model.readMps(str);
if (!status) {
     model.primal();
env->ReleaseStringUTFChars(prompt, str);
Both the java app and the c++ app are compiled and I'm using the following command to build the libraries. I had success with this when building and running the HelloWorld sample on the JNI tutorial on this site. I am using OS X Tiger.
drew$ cc -dynamiclib -o libmps.jnilib ClpCaller.o -framework JavaVM
The name of my library is "mps". I get the following error when running the code:
ld: Undefined symbols:
__ZN10ClpSimplex6primalEii
__ZN10ClpSimplex7readMpsEPKcbb
__ZN10ClpSimplexC1Ev
__ZN10ClpSimplexD1Ev
__ZNSt8ios_base4InitC1Ev
__ZNSt8ios_base4InitD1Ev
___gxx_personality_v0
/usr/bin/libtool: internal link edit command failed
I am assuming these errors are coming from the COIN libraries I have included. Any help would be VERY appreciated!
Thanks,
Drew

>
ld: Undefined symbols:
__ZN10ClpSimplex6primalEii
__ZN10ClpSimplex7readMpsEPKcbb
__ZN10ClpSimplexC1Ev
__ZN10ClpSimplexD1Ev
__ZNSt8ios_base4InitC1Ev
__ZNSt8ios_base4InitD1Ev
___gxx_personality_v0
/usr/bin/libtool: internal link edit command failed
I am assuming these errors are coming from the COIN
libraries I have included. Any help would be VERY
appreciated!Building the library is entirely function of the other language. Java's involvement (in building the lib) is limited to producing the .h file. You will probably do better asking in a C++ forum.
However, a few possibilities:
- You should specify the external library to link with this, using -l option
- Or, if you want to load COIN at run time, tell link loader to not resolve all symbols at the time of linking. This might be handled by -dyanamiclib option.

Similar Messages

  • 1.3 JNI libraries compatible with 1.4?

    I'm having some problems migrating my software from J2SE 1.3 to 1.4 (on Linux).
    I've not recompiled anything, hoping for Sun's binary code compatibility...
    Strangely enough, the first time I executed my program with the 1.4 VM,
    everything worked just fine. The same program had been running in the 1.3 VM just before that.
    But after rebooting the machine I encountered the first problem - the java program could
    not find my JNI libraries anymore, generating a UnresolvedLinkError.
    *Why did my 1.3- but not the 1.4-environment find the JNI ?
    Before, I didn't need the LD_LIBRARY_PATH variable, but now I used it and set it to the directory where the JNI libs are. This solved the UnresolvedLinkError problem - fine!
    BUT, when I now start up my program it takes about 2 minutes to get it up and after that it works
    real slow....
    Running with the -verbose flag I see that it hangs for a long while after loading the PlainSocketImpl
    <snip>
    [Loaded java.util.Vector$1 from /usr/j2re1.4.0/lib/rt.jar]
    [Loaded java.net.Socket from /usr/j2re1.4.0/lib/rt.jar]
    [Loaded java.net.ServerSocket from /usr/j2re1.4.0/lib/rt.jar]
    [Loaded java.net.SocketOptions from /usr/j2re1.4.0/lib/rt.jar]
    [Loaded java.net.SocketImpl from /usr/j2re1.4.0/lib/rt.jar]
    [Loaded java.net.PlainSocketImpl from /usr/j2re1.4.0/lib/rt.jar]
    *Why is it hanging after that line?
    *Is it necessary for me to recompile my JNI libs?
    *Why is it working so slowly?
    Please help me out!
    Regards
    / Lelle

    I just wanted to tell you that now I've recompiled my Java files but the program still
    stalls on start-up as before.
    I've not yet recompiled the JNI files, although I can't see why that should be needed.
    My command line looks as follows:
    /usr/j2re1.4.0/bin/java -server -verbose -verbose:jni -classpath /usr/Shared.jar:/usr/Server.jar ServerClass 123 JNIlib1 JNIlib2 JNIlib3 JNIlib4
    (123 is the port number for the server to listen to.)
    Something fishy is obviously happening during or after loading java.net.PlainSocketImpl
    <snip>
    [Loaded java.net.SocketImpl from /usr/j2re1.4.0/lib/rt.jar]
    [Loaded java.net.PlainSocketImpl from /usr/j2re1.4.0/lib/rt.jar]
    [Dynamic-linking native method java.net.PlainSocketImpl.initProto ... JNI]
    Any ideas anyone?
    / Lelle

  • How to use g++ to build shared libraries for labview in linux?

    does anyone knows if it's possible to compile a shared library in linux with g++ that could be recognized by labview?
    thks
    JP

    Hi JP,
    Yes you can use g++ to build shared libraries that labview can use. You'll want to give your C++ library a C interface. This is really common practice. You can do this by simply declaring functions as 'extern "C"'. Here is a link with more information:
    http://www.parashift.com/c++-faq-lite/mixing-c-and-cpp.html#faq-30.8
    I've personally worked on projects that do exactly what you want to do.

  • [Newbie] Bundling App classes+ util jars with jni libraries

    Hi,
    first off, im a noob if it gets to creating archives... I can make a simple archive if I dont have special depedancies but beyond that... :)
    I have my app's classes and two utility jar files which also need respective jni libraries.
    Can I pack all of it in an archive for zero deploy or do the jni libraries need to be installed?
    Thanks,
    Dominik

    Since the jni-Libraries (or .so/.dll if you're doing a multi-platform deploy) contain native code, they have to be loaded and memory-mapped by the OS, so I'd guess that they have to be deployed seperately from your .jar file.
    They don't however need to be installed into the system and can reside in a seperate directory in the applications directory structure. Then you will only have to tell the JRE about this directory (let's call it "./lib"):
    java -Djava.library.path=./lib -jar myapp.jar
    HTH :)
    Marcus

  • Help Building libraries

    I cannot get iTunes to properly build the library.
    After installing iTunes, I moved music files around that were already on my hard drive. Now all the files reside in the iTunes music folder. I was also messing around with an external drive at the time. I then deleted all the music listings in iTunes and tried to rebuild it from scratch using "Add folder to Library" -> iTunes Music.
    When I do this some of the subdirectories (artists) appear in the library but not all. If I move directories around in Windows sometimes more will be found, but I can't get them all without selecting each artists directory individually.
    Why wont iTunes find all songs in the subdirectories? I have tried to reinstall itunes, but that didn't help.

    >
    ld: Undefined symbols:
    __ZN10ClpSimplex6primalEii
    __ZN10ClpSimplex7readMpsEPKcbb
    __ZN10ClpSimplexC1Ev
    __ZN10ClpSimplexD1Ev
    __ZNSt8ios_base4InitC1Ev
    __ZNSt8ios_base4InitD1Ev
    ___gxx_personality_v0
    /usr/bin/libtool: internal link edit command failed
    I am assuming these errors are coming from the COIN
    libraries I have included. Any help would be VERY
    appreciated!Building the library is entirely function of the other language. Java's involvement (in building the lib) is limited to producing the .h file. You will probably do better asking in a C++ forum.
    However, a few possibilities:
    - You should specify the external library to link with this, using -l option
    - Or, if you want to load COIN at run time, tell link loader to not resolve all symbols at the time of linking. This might be handled by -dyanamiclib option.

  • Need Help build my ati custom kernel

    Hello.
    I have been trying to build a custom kernel based on kernel2612-cko2-swsusp2 but modified:
    -2.6.10 version for better compatibility with Ati drivers
    -without swsusp2
    -without cdburning.patch
    Here are PKGBUILD:
    # Contributor: dibblethewrecker <dibblethewrecker.at.jiwe.org>
    pkgname=kernel2610-cko2-ati
    pkgver=2.6.10
    pkgrel=1
    pkgdesc="The Linux Kernel 2.6.10 and modules (IDE support) with -cko2 patchset and ati support"
    url="http://www.kernel.org"
    backup=('boot/kconfig26')
    depends=('module-init-tools')
    install=kernel26.install
    source=(http://kem.p.lodz.pl/~peter/cko/rel/patch-2.6.10-cko2.bz2 ftp://ftp.kernel.org/pub/linux/kernel/v … er.tar.bz2 config)
    build() {
      cd $startdir/src/linux-$pkgver
      patch -Np1 -i ../patch-2.6.10-cko2 || return 1
      # get rid of the 'i' in i686
      carch=`echo $CARCH | sed 's|i||'`
      cat ../config | sed "s|#CARCH#|$carch|g" >./.config
      # build the full kernel version to use in pathnames
      . ./.config
      _kernsuffix="-cko2${CONFIG_LOCALVERSION}"
      _kernver="${pkgver}${_kernsuffix}"
      # load configuration
      yes "" | make config
      # build!
      make clean bzImage modules || return 1
      mkdir -p $startdir/pkg/{lib/modules,boot}
      make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
      cp System.map $startdir/pkg/boot/System.map2612${_kernsuffix}
      cp arch/i386/boot/bzImage $startdir/pkg/boot/vmlinuz2612${_kernsuffix}
      install -D -m644 Makefile
        $startdir/pkg/usr/src/linux-${_kernver}/Makefile
      install -D -m644 .config
        $startdir/pkg/usr/src/linux-${_kernver}/.config
      install -D -m644 .config $startdir/pkg/boot/kconfig2612${_kernsuffix}
      mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/include
      mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/arch/i386/kernel
      for i in acpi asm-generic asm-i386 config linux math-emu net pcmcia scsi video; do
        cp -a include/$i $startdir/pkg/usr/src/linux-${_kernver}/include/
      done
      # copy files necessary for later builds, like nvidia and vmware
      cp Module.symvers $startdir/pkg/usr/src/linux-${_kernver}
      cp -a scripts $startdir/pkg/usr/src/linux-${_kernver}
      mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/.tmp_versions
      cp arch/i386/Makefile $startdir/pkg/usr/src/linux-${_kernver}/arch/i386/
      cp arch/i386/kernel/asm-offsets.s
        $startdir/pkg/usr/src/linux-${_kernver}/arch/i386/kernel/
      # copy in Kconfig files
      for i in `find . -name "Kconfig*"`; do
        mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/`echo $i | sed 's|/Kconfig.*||'`
        cp $i $startdir/pkg/usr/src/linux-${_kernver}/$i
      done
      cd $startdir/pkg/usr/src/linux-${_kernver}/include && ln -s asm-i386 asm
      chown -R root.root $startdir/pkg/usr/src/linux-${_kernver}
      cd $startdir/pkg/lib/modules/${_kernver} &&
        (rm -f source build; ln -sf /usr/src/linux-${_kernver} build)
    md5sums=('a1e4a2337efb657d48dc3861e8bd40b6' 'cffcd2919d9c8ef793ce1ac07a440eda'
             '8c9bfd3774ee0bce71984623420a828d')
    and the config:
    # Automatically generated make config: don't edit
    # Linux kernel version: 2.6.12-cko2
    # Sun Jul  3 21:21:40 2005
    CONFIG_X86=y
    CONFIG_MMU=y
    CONFIG_UID16=y
    CONFIG_GENERIC_ISA_DMA=y
    CONFIG_GENERIC_IOMAP=y
    # Code maturity level options
    CONFIG_EXPERIMENTAL=y
    # CONFIG_CLEAN_COMPILE is not set
    CONFIG_BROKEN=y
    CONFIG_BROKEN_ON_SMP=y
    CONFIG_LOCK_KERNEL=y
    CONFIG_INIT_ENV_ARG_LIMIT=32
    # General setup
    CONFIG_LOCALVERSION="-swsusp2"
    CONFIG_SWAP=y
    CONFIG_SYSVIPC=y
    CONFIG_POSIX_MQUEUE=y
    # CONFIG_BSD_PROCESS_ACCT is not set
    CONFIG_SYSCTL=y
    # CONFIG_AUDIT is not set
    CONFIG_HOTPLUG=y
    CONFIG_KOBJECT_UEVENT=y
    CONFIG_IKCONFIG=y
    CONFIG_IKCONFIG_PROC=y
    # CONFIG_CPUSETS is not set
    # CONFIG_EMBEDDED is not set
    CONFIG_KALLSYMS=y
    # CONFIG_KALLSYMS_ALL is not set
    # CONFIG_KALLSYMS_EXTRA_PASS is not set
    CONFIG_PRINTK=y
    CONFIG_BUG=y
    CONFIG_BASE_FULL=y
    CONFIG_FUTEX=y
    CONFIG_EPOLL=y
    CONFIG_SHMEM=y
    CONFIG_CC_ALIGN_FUNCTIONS=0
    CONFIG_CC_ALIGN_LABELS=0
    CONFIG_CC_ALIGN_LOOPS=0
    CONFIG_CC_ALIGN_JUMPS=0
    # CONFIG_TINY_SHMEM is not set
    CONFIG_BASE_SMALL=0
    # Loadable module support
    CONFIG_MODULES=y
    CONFIG_MODULE_UNLOAD=y
    # CONFIG_MODULE_FORCE_UNLOAD is not set
    CONFIG_OBSOLETE_MODPARM=y
    CONFIG_MODVERSIONS=y
    CONFIG_MODULE_SRCVERSION_ALL=y
    CONFIG_KMOD=y
    CONFIG_STOP_MACHINE=y
    # Processor type and features
    CONFIG_X86_PC=y
    # CONFIG_X86_ELAN is not set
    # 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=y
    # CONFIG_MPENTIUMII is not set
    # CONFIG_MPENTIUMIII is not set
    # CONFIG_MPENTIUMM is not set
    # CONFIG_MPENTIUM4 is not set
    # CONFIG_MK6 is not set
    # CONFIG_MK7 is not set
    # CONFIG_MK8 is not set
    # CONFIG_MCRUSOE is not set
    # CONFIG_MEFFICEON is not set
    # CONFIG_MWINCHIPC6 is not set
    # CONFIG_MWINCHIP2 is not set
    # CONFIG_MWINCHIP3D is not set
    # CONFIG_MGEODEGX1 is not set
    # CONFIG_MCYRIXIII is not set
    # CONFIG_MVIAC3_2 is not set
    CONFIG_X86_GENERIC=y
    CONFIG_X86_CMPXCHG=y
    CONFIG_X86_XADD=y
    CONFIG_X86_L1_CACHE_SHIFT=7
    CONFIG_RWSEM_XCHGADD_ALGORITHM=y
    CONFIG_GENERIC_CALIBRATE_DELAY=y
    CONFIG_X86_PPRO_FENCE=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_HPET_TIMER=y
    CONFIG_SMP=y
    CONFIG_NR_CPUS=4
    CONFIG_MAX_IO_APICS=8
    CONFIG_SCHED_SMT=y
    CONFIG_PREEMPT=y
    CONFIG_PREEMPT_BKL=y
    CONFIG_X86_LOCAL_APIC=y
    CONFIG_X86_IO_APIC=y
    CONFIG_X86_TSC=y
    CONFIG_X86_MCE=y
    CONFIG_X86_MCE_NONFATAL=m
    CONFIG_X86_MCE_P4THERMAL=y
    CONFIG_TOSHIBA=m
    CONFIG_I8K=m
    CONFIG_X86_REBOOTFIXUPS=y
    # CONFIG_MICROCODE is not set
    # CONFIG_X86_MSR is not set
    # CONFIG_X86_CPUID is not set
    # Firmware Drivers
    # CONFIG_EDD is not set
    # CONFIG_NOHIGHMEM is not set
    CONFIG_HIGHMEM4G=y
    # CONFIG_HIGHMEM64G is not set
    CONFIG_HIGHMEM=y
    CONFIG_PROC_MM=y
    # CONFIG_PROC_MM_DUMPABLE is not set
    # CONFIG_HIGHPTE is not set
    # CONFIG_MATH_EMULATION is not set
    CONFIG_MTRR=y
    # CONFIG_EFI is not set
    CONFIG_IRQBALANCE=y
    CONFIG_HAVE_DEC_LOCK=y
    # CONFIG_REGPARM is not set
    CONFIG_SECCOMP=y
    CONFIG_HZ_1000=y
    # CONFIG_HZ_500 is not set
    # CONFIG_HZ_250 is not set
    # CONFIG_HZ_100 is not set
    CONFIG_HZ=1000
    # Power management options (ACPI, APM)
    CONFIG_PM=y
    # CONFIG_PM_DEBUG is not set
    CONFIG_SOFTWARE_SUSPEND=y
    CONFIG_PM_STD_PARTITION=""
    CONFIG_SUSPEND2=y
    # Image Storage (you need at least one writer)
    # CONFIG_SUSPEND2_FILEWRITER is not set
    CONFIG_SUSPEND2_SWAPWRITER=y
    # Page Transformers? We now use Cryptoapi.
    # User Interface Options
    CONFIG_SUSPEND2_USERSPACE_UI=y
    CONFIG_SUSPEND2_TEXT_MODE=y
    # General Options
    CONFIG_SUSPEND2_DEFAULT_RESUME2=""
    # CONFIG_SUSPEND2_KEEP_IMAGE is not set
    CONFIG_SUSPEND2_CHECK_RESUME_SAFE=y
    # ACPI (Advanced Configuration and Power Interface) Support
    CONFIG_ACPI=y
    CONFIG_ACPI_BOOT=y
    CONFIG_ACPI_INTERPRETER=y
    CONFIG_ACPI_SLEEP=y
    CONFIG_ACPI_SLEEP_PROC_FS=y
    # CONFIG_ACPI_SLEEP_PROC_SLEEP is not set
    CONFIG_ACPI_AC=y
    CONFIG_ACPI_BATTERY=y
    CONFIG_ACPI_BUTTON=y
    CONFIG_ACPI_VIDEO=y
    CONFIG_ACPI_FAN=y
    CONFIG_ACPI_PROCESSOR=y
    CONFIG_ACPI_THERMAL=y
    CONFIG_ACPI_ASUS=m
    CONFIG_ACPI_IBM=m
    CONFIG_ACPI_TOSHIBA=m
    CONFIG_ACPI_BLACKLIST_YEAR=0
    # CONFIG_ACPI_DEBUG is not set
    CONFIG_ACPI_BUS=y
    CONFIG_ACPI_EC=y
    CONFIG_ACPI_POWER=y
    CONFIG_ACPI_PCI=y
    CONFIG_ACPI_SYSTEM=y
    CONFIG_X86_PM_TIMER=y
    CONFIG_ACPI_CONTAINER=m
    # APM (Advanced Power Management) BIOS Support
    CONFIG_APM=y
    # CONFIG_APM_IGNORE_USER_SUSPEND is not set
    CONFIG_APM_DO_ENABLE=y
    # 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=y
    CONFIG_CPU_FREQ_TABLE=m
    # CONFIG_CPU_FREQ_DEBUG is not set
    CONFIG_CPU_FREQ_STAT=m
    CONFIG_CPU_FREQ_STAT_DETAILS=y
    CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
    # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
    CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
    CONFIG_CPU_FREQ_GOV_POWERSAVE=m
    CONFIG_CPU_FREQ_GOV_USERSPACE=m
    CONFIG_CPU_FREQ_GOV_ONDEMAND=m
    CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m
    # CPUFreq processor drivers
    CONFIG_X86_ACPI_CPUFREQ=m
    CONFIG_X86_POWERNOW_K6=m
    CONFIG_X86_POWERNOW_K7=m
    CONFIG_X86_POWERNOW_K7_ACPI=y
    CONFIG_X86_POWERNOW_K8=m
    CONFIG_X86_POWERNOW_K8_ACPI=y
    CONFIG_X86_GX_SUSPMOD=m
    CONFIG_X86_SPEEDSTEP_CENTRINO=m
    CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI=y
    CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y
    CONFIG_X86_SPEEDSTEP_ICH=m
    CONFIG_X86_SPEEDSTEP_SMI=m
    CONFIG_X86_P4_CLOCKMOD=m
    CONFIG_X86_CPUFREQ_NFORCE2=m
    CONFIG_X86_LONGRUN=m
    CONFIG_X86_LONGHAUL=m
    # shared options
    # CONFIG_X86_ACPI_CPUFREQ_PROC_INTF is not set
    CONFIG_X86_SPEEDSTEP_LIB=m
    CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK=y
    # Bus options (PCI, PCMCIA, EISA, MCA, ISA)
    CONFIG_PCI=y
    # CONFIG_PCI_GOBIOS is not set
    # CONFIG_PCI_GOMMCONFIG is not set
    # CONFIG_PCI_GODIRECT is not set
    CONFIG_PCI_GOANY=y
    CONFIG_PCI_BIOS=y
    CONFIG_PCI_DIRECT=y
    CONFIG_PCI_MMCONFIG=y
    CONFIG_PCIEPORTBUS=y
    CONFIG_HOTPLUG_PCI_PCIE=m
    # CONFIG_HOTPLUG_PCI_PCIE_POLL_EVENT_MODE is not set
    # CONFIG_PCI_MSI is not set
    CONFIG_PCI_LEGACY_PROC=y
    CONFIG_PCI_NAMES=y
    # CONFIG_PCI_DEBUG is not set
    CONFIG_ISA_DMA_API=y
    CONFIG_ISA=y
    # CONFIG_EISA is not set
    # CONFIG_MCA is not set
    # CONFIG_SCx200 is not set
    # PCCARD (PCMCIA/CardBus) support
    CONFIG_PCCARD=m
    # CONFIG_PCMCIA_DEBUG is not set
    CONFIG_PCMCIA=m
    CONFIG_CARDBUS=y
    # PC-card bridges
    CONFIG_YENTA=m
    CONFIG_PD6729=m
    CONFIG_I82092=m
    CONFIG_I82365=m
    CONFIG_TCIC=m
    CONFIG_PCMCIA_PROBE=y
    CONFIG_PCCARD_NONSTATIC=m
    # PCI Hotplug Support
    CONFIG_HOTPLUG_PCI=m
    CONFIG_HOTPLUG_PCI_FAKE=m
    CONFIG_HOTPLUG_PCI_COMPAQ=m
    # CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set
    CONFIG_HOTPLUG_PCI_IBM=m
    CONFIG_HOTPLUG_PCI_ACPI=m
    CONFIG_HOTPLUG_PCI_ACPI_IBM=m
    CONFIG_HOTPLUG_PCI_CPCI=y
    CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m
    CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m
    CONFIG_HOTPLUG_PCI_SHPC=m
    # CONFIG_HOTPLUG_PCI_SHPC_POLL_EVENT_MODE is not set
    # Executable file formats
    CONFIG_BINFMT_ELF=y
    CONFIG_BINFMT_AOUT=y
    CONFIG_BINFMT_MISC=y
    # Device Drivers
    # Generic Driver Options
    CONFIG_STANDALONE=y
    CONFIG_PREVENT_FIRMWARE_BUILD=y
    CONFIG_FW_LOADER=y
    # CONFIG_DEBUG_DRIVER is not set
    # Memory Technology Devices (MTD)
    # CONFIG_MTD is not set
    # Parallel port support
    CONFIG_PARPORT=m
    CONFIG_PARPORT_PC=m
    CONFIG_PARPORT_SERIAL=m
    # CONFIG_PARPORT_PC_FIFO is not set
    # CONFIG_PARPORT_PC_SUPERIO is not set
    CONFIG_PARPORT_PC_PCMCIA=m
    CONFIG_PARPORT_NOT_PC=y
    # CONFIG_PARPORT_GSC is not set
    CONFIG_PARPORT_1284=y
    # Plug and Play support
    CONFIG_PNP=y
    # CONFIG_PNP_DEBUG is not set
    # Protocols
    CONFIG_ISAPNP=y
    CONFIG_PNPBIOS=y
    CONFIG_PNPBIOS_PROC_FS=y
    CONFIG_PNPACPI=y
    # Block devices
    CONFIG_BLK_DEV_FD=y
    # CONFIG_BLK_DEV_XD is not set
    # CONFIG_PARIDE is not set
    CONFIG_BLK_CPQ_DA=m
    CONFIG_BLK_CPQ_CISS_DA=m
    # CONFIG_CISS_SCSI_TAPE is not set
    CONFIG_BLK_DEV_DAC960=m
    # CONFIG_BLK_DEV_UMEM is not set
    # CONFIG_BLK_DEV_COW_COMMON is not set
    CONFIG_BLK_DEV_LOOP=y
    CONFIG_BLK_DEV_CRYPTOLOOP=y
    CONFIG_BLK_DEV_NBD=m
    CONFIG_BLK_DEV_SX8=m
    # CONFIG_BLK_DEV_UB is not set
    CONFIG_BLK_DEV_RAM=y
    CONFIG_BLK_DEV_RAM_COUNT=16
    CONFIG_BLK_DEV_RAM_SIZE=4096
    CONFIG_BLK_DEV_INITRD=y
    CONFIG_INITRAMFS_SOURCE=""
    # CONFIG_LBD is not set
    CONFIG_CDROM_PKTCDVD=m
    CONFIG_CDROM_PKTCDVD_BUFFERS=8
    # CONFIG_CDROM_PKTCDVD_WCACHE is not set
    # IO Schedulers
    CONFIG_IOSCHED_NOOP=y
    CONFIG_IOSCHED_AS=y
    CONFIG_IOSCHED_DEADLINE=y
    CONFIG_IOSCHED_CFQ=y
    CONFIG_ATA_OVER_ETH=m
    # ATA/ATAPI/MFM/RLL support
    CONFIG_IDE=y
    CONFIG_BLK_DEV_IDE=y
    # Please see Documentation/ide.txt for help/info on IDE drives
    # CONFIG_BLK_DEV_IDE_SATA is not set
    # CONFIG_BLK_DEV_HD_IDE is not set
    CONFIG_BLK_DEV_IDEDISK=y
    CONFIG_IDEDISK_MULTI_MODE=y
    CONFIG_BLK_DEV_IDECS=m
    CONFIG_BLK_DEV_IDECD=y
    CONFIG_BLK_DEV_IDETAPE=m
    CONFIG_BLK_DEV_IDEFLOPPY=m
    CONFIG_BLK_DEV_IDESCSI=m
    # CONFIG_IDE_TASK_IOCTL is not set
    # IDE chipset support/bugfixes
    CONFIG_IDE_GENERIC=y
    CONFIG_BLK_DEV_CMD640=y
    CONFIG_BLK_DEV_CMD640_ENHANCED=y
    # CONFIG_BLK_DEV_IDEPNP is not set
    CONFIG_BLK_DEV_IDEPCI=y
    CONFIG_IDEPCI_SHARE_IRQ=y
    # CONFIG_BLK_DEV_OFFBOARD is not set
    CONFIG_BLK_DEV_GENERIC=y
    # CONFIG_BLK_DEV_OPTI621 is not set
    CONFIG_BLK_DEV_RZ1000=y
    CONFIG_BLK_DEV_IDEDMA_PCI=y
    # CONFIG_BLK_DEV_IDEDMA_FORCED is not set
    CONFIG_IDEDMA_PCI_AUTO=y
    # CONFIG_IDEDMA_ONLYDISK is not set
    CONFIG_BLK_DEV_AEC62XX=y
    CONFIG_BLK_DEV_ALI15X3=y
    # CONFIG_WDC_ALI15X3 is not set
    CONFIG_BLK_DEV_AMD74XX=y
    CONFIG_BLK_DEV_ATIIXP=y
    CONFIG_BLK_DEV_CMD64X=y
    CONFIG_BLK_DEV_TRIFLEX=y
    CONFIG_BLK_DEV_CY82C693=y
    # CONFIG_BLK_DEV_CS5520 is not set
    CONFIG_BLK_DEV_CS5530=y
    CONFIG_BLK_DEV_HPT34X=y
    # CONFIG_HPT34X_AUTODMA is not set
    CONFIG_BLK_DEV_HPT366=y
    CONFIG_BLK_DEV_SC1200=y
    CONFIG_BLK_DEV_PIIX=y
    CONFIG_BLK_DEV_NS87415=y
    CONFIG_BLK_DEV_PDC202XX_OLD=y
    CONFIG_PDC202XX_BURST=y
    CONFIG_BLK_DEV_PDC202XX_NEW=y
    CONFIG_PDC202XX_FORCE=y
    CONFIG_BLK_DEV_SVWKS=y
    CONFIG_BLK_DEV_SIIMAGE=y
    CONFIG_BLK_DEV_SIS5513=y
    CONFIG_BLK_DEV_SLC90E66=y
    CONFIG_BLK_DEV_TRM290=y
    CONFIG_BLK_DEV_VIA82CXXX=y
    # CONFIG_IDE_ARM is not set
    # CONFIG_IDE_CHIPSETS is not set
    CONFIG_BLK_DEV_IDEDMA=y
    # CONFIG_IDEDMA_IVB is not set
    CONFIG_IDEDMA_AUTO=y
    # CONFIG_BLK_DEV_HD 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=m
    CONFIG_CHR_DEV_OSST=m
    CONFIG_BLK_DEV_SR=m
    CONFIG_BLK_DEV_SR_VENDOR=y
    CONFIG_CHR_DEV_SG=m
    # CONFIG_CHR_DEV_SCH is not set
    # Some SCSI devices (e.g. CD jukebox) support multiple LUNs
    CONFIG_SCSI_MULTI_LUN=y
    # CONFIG_SCSI_CONSTANTS is not set
    # CONFIG_SCSI_LOGGING is not set
    # SCSI Transport Attributes
    CONFIG_SCSI_SPI_ATTRS=m
    # CONFIG_SCSI_FC_ATTRS is not set
    # CONFIG_SCSI_ISCSI_ATTRS is not set
    # SCSI low-level drivers
    # CONFIG_BLK_DEV_3W_XXXX_RAID is not set
    # CONFIG_SCSI_3W_9XXX is not set
    # CONFIG_SCSI_7000FASST is not set
    # CONFIG_SCSI_ACARD is not set
    CONFIG_SCSI_AHA152X=m
    CONFIG_SCSI_AHA1542=m
    # CONFIG_SCSI_AACRAID is not set
    CONFIG_SCSI_AIC7XXX=m
    CONFIG_AIC7XXX_CMDS_PER_DEVICE=32
    CONFIG_AIC7XXX_RESET_DELAY_MS=15000
    CONFIG_AIC7XXX_DEBUG_ENABLE=y
    CONFIG_AIC7XXX_DEBUG_MASK=0
    CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
    # CONFIG_SCSI_AIC7XXX_OLD is not set
    CONFIG_SCSI_AIC79XX=m
    CONFIG_AIC79XX_CMDS_PER_DEVICE=32
    CONFIG_AIC79XX_RESET_DELAY_MS=15000
    # CONFIG_AIC79XX_ENABLE_RD_STRM is not set
    CONFIG_AIC79XX_DEBUG_ENABLE=y
    CONFIG_AIC79XX_DEBUG_MASK=0
    CONFIG_AIC79XX_REG_PRETTY_PRINT=y
    # CONFIG_SCSI_DPT_I2O is not set
    CONFIG_SCSI_ADVANSYS=m
    # CONFIG_SCSI_IN2000 is not set
    # CONFIG_MEGARAID_NEWGEN is not set
    # CONFIG_MEGARAID_LEGACY is not set
    CONFIG_SCSI_SATA=y
    CONFIG_SCSI_SATA_AHCI=y
    CONFIG_SCSI_SATA_SVW=y
    CONFIG_SCSI_ATA_PIIX=y
    CONFIG_SCSI_SATA_NV=y
    CONFIG_SCSI_SATA_PROMISE=y
    CONFIG_SCSI_SATA_QSTOR=y
    CONFIG_SCSI_SATA_SX4=y
    CONFIG_SCSI_SATA_SIL=y
    CONFIG_SCSI_SATA_SIS=y
    CONFIG_SCSI_SATA_ULI=y
    CONFIG_SCSI_SATA_VIA=y
    CONFIG_SCSI_SATA_VITESSE=y
    # 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_INITIO 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_IPR 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_QLA2XXX=y
    # CONFIG_SCSI_QLA21XX is not set
    # CONFIG_SCSI_QLA22XX is not set
    # CONFIG_SCSI_QLA2300 is not set
    # CONFIG_SCSI_QLA2322 is not set
    # CONFIG_SCSI_QLA6312 is not set
    # CONFIG_SCSI_LPFC is not set
    # CONFIG_SCSI_SEAGATE 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=m
    CONFIG_PCMCIA_FDOMAIN=m
    CONFIG_PCMCIA_NINJA_SCSI=m
    CONFIG_PCMCIA_QLOGIC=m
    CONFIG_PCMCIA_SYM53C500=m
    # Old CD-ROM drivers (not SCSI, not IDE)
    # CONFIG_CD_NO_IDESCSI is not set
    # Multi-device support (RAID and LVM)
    CONFIG_MD=y
    CONFIG_BLK_DEV_MD=y
    CONFIG_MD_LINEAR=y
    CONFIG_MD_RAID0=y
    CONFIG_MD_RAID1=y
    CONFIG_MD_RAID10=y
    CONFIG_MD_RAID5=y
    CONFIG_MD_RAID6=y
    CONFIG_MD_MULTIPATH=y
    # CONFIG_MD_FAULTY is not set
    CONFIG_BLK_DEV_DM=y
    CONFIG_DM_CRYPT=y
    CONFIG_DM_SNAPSHOT=y
    CONFIG_DM_MIRROR=y
    CONFIG_DM_ZERO=y
    # CONFIG_DM_MULTIPATH is not set
    # Fusion MPT device support
    # CONFIG_FUSION is not set
    # IEEE 1394 (FireWire) support
    CONFIG_IEEE1394=m
    # Subsystem Options
    # CONFIG_IEEE1394_VERBOSEDEBUG is not set
    # CONFIG_IEEE1394_OUI_DB is not set
    CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y
    CONFIG_IEEE1394_CONFIG_ROM_IP1394=y
    # Device Drivers
    CONFIG_IEEE1394_PCILYNX=m
    CONFIG_IEEE1394_OHCI1394=m
    # Protocol Drivers
    CONFIG_IEEE1394_VIDEO1394=m
    CONFIG_IEEE1394_SBP2=m
    # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set
    CONFIG_IEEE1394_ETH1394=m
    CONFIG_IEEE1394_DV1394=m
    CONFIG_IEEE1394_RAWIO=m
    CONFIG_IEEE1394_CMP=m
    CONFIG_IEEE1394_AMDTP=m
    # I2O device support
    CONFIG_I2O=m
    CONFIG_I2O_CONFIG=m
    CONFIG_I2O_BLOCK=m
    CONFIG_I2O_SCSI=m
    CONFIG_I2O_PROC=m
    # Networking support
    CONFIG_NET=y
    # Networking options
    CONFIG_PACKET=y
    CONFIG_PACKET_MMAP=y
    CONFIG_UNIX=y
    CONFIG_NET_KEY=m
    CONFIG_INET=y
    CONFIG_IP_MULTICAST=y
    # CONFIG_IP_ADVANCED_ROUTER is not set
    # CONFIG_IP_PNP is not set
    CONFIG_NET_IPIP=m
    CONFIG_NET_IPGRE=m
    # CONFIG_NET_IPGRE_BROADCAST is not set
    # CONFIG_IP_MROUTE is not set
    # CONFIG_ARPD is not set
    CONFIG_SYN_COOKIES=y
    CONFIG_INET_AH=m
    CONFIG_INET_ESP=m
    CONFIG_INET_IPCOMP=m
    CONFIG_INET_TUNNEL=m
    CONFIG_IP_TCPDIAG=y
    CONFIG_IP_TCPDIAG_IPV6=y
    # IP: Virtual Server Configuration
    CONFIG_IP_VS=m
    # CONFIG_IP_VS_DEBUG is not set
    CONFIG_IP_VS_TAB_BITS=12
    # IPVS transport protocol load balancing support
    CONFIG_IP_VS_PROTO_TCP=y
    CONFIG_IP_VS_PROTO_UDP=y
    CONFIG_IP_VS_PROTO_ESP=y
    CONFIG_IP_VS_PROTO_AH=y
    # IPVS scheduler
    CONFIG_IP_VS_RR=m
    CONFIG_IP_VS_WRR=m
    CONFIG_IP_VS_LC=m
    CONFIG_IP_VS_WLC=m
    CONFIG_IP_VS_LBLC=m
    CONFIG_IP_VS_LBLCR=m
    CONFIG_IP_VS_DH=m
    CONFIG_IP_VS_SH=m
    CONFIG_IP_VS_SED=m
    CONFIG_IP_VS_NQ=m
    # IPVS application helper
    CONFIG_IP_VS_FTP=m
    CONFIG_IPV6=y
    CONFIG_IPV6_PRIVACY=y
    CONFIG_INET6_AH=m
    CONFIG_INET6_ESP=m
    CONFIG_INET6_IPCOMP=m
    CONFIG_INET6_TUNNEL=m
    CONFIG_IPV6_TUNNEL=m
    CONFIG_NETFILTER=y
    # CONFIG_NETFILTER_DEBUG is not set
    CONFIG_BRIDGE_NETFILTER=y
    # IP: Netfilter Configuration
    CONFIG_IP_NF_CONNTRACK=m
    # CONFIG_IP_NF_CT_ACCT is not set
    # CONFIG_IP_NF_CONNTRACK_MARK is not set
    # CONFIG_IP_NF_CT_PROTO_SCTP is not set
    CONFIG_IP_NF_FTP=m
    CONFIG_IP_NF_IRC=m
    CONFIG_IP_NF_TFTP=m
    CONFIG_IP_NF_AMANDA=m
    CONFIG_IP_NF_QUEUE=m
    CONFIG_IP_NF_IPTABLES=m
    CONFIG_IP_NF_MATCH_LIMIT=m
    CONFIG_IP_NF_MATCH_IPRANGE=m
    CONFIG_IP_NF_MATCH_MAC=m
    CONFIG_IP_NF_MATCH_PKTTYPE=m
    CONFIG_IP_NF_MATCH_MARK=m
    CONFIG_IP_NF_MATCH_MULTIPORT=m
    CONFIG_IP_NF_MATCH_TOS=m
    CONFIG_IP_NF_MATCH_RECENT=m
    CONFIG_IP_NF_MATCH_ECN=m
    CONFIG_IP_NF_MATCH_DSCP=m
    CONFIG_IP_NF_MATCH_AH_ESP=m
    CONFIG_IP_NF_MATCH_LENGTH=m
    CONFIG_IP_NF_MATCH_TTL=m
    CONFIG_IP_NF_MATCH_TCPMSS=m
    CONFIG_IP_NF_MATCH_HELPER=m
    CONFIG_IP_NF_MATCH_STATE=m
    CONFIG_IP_NF_MATCH_CONNTRACK=m
    CONFIG_IP_NF_MATCH_OWNER=m
    CONFIG_IP_NF_MATCH_PHYSDEV=m
    CONFIG_IP_NF_MATCH_ADDRTYPE=m
    CONFIG_IP_NF_MATCH_REALM=m
    CONFIG_IP_NF_MATCH_SCTP=m
    CONFIG_IP_NF_MATCH_COMMENT=m
    # CONFIG_IP_NF_MATCH_HASHLIMIT is not set
    CONFIG_IP_NF_FILTER=m
    CONFIG_IP_NF_TARGET_REJECT=m
    CONFIG_IP_NF_TARGET_LOG=m
    CONFIG_IP_NF_TARGET_ULOG=m
    CONFIG_IP_NF_TARGET_TCPMSS=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=m
    CONFIG_IP_NF_TARGET_SAME=m
    CONFIG_IP_NF_NAT_SNMP_BASIC=m
    CONFIG_IP_NF_NAT_IRC=m
    CONFIG_IP_NF_NAT_FTP=m
    CONFIG_IP_NF_NAT_TFTP=m
    CONFIG_IP_NF_NAT_AMANDA=m
    CONFIG_IP_NF_MANGLE=m
    CONFIG_IP_NF_TARGET_TOS=m
    CONFIG_IP_NF_TARGET_ECN=m
    CONFIG_IP_NF_TARGET_DSCP=m
    CONFIG_IP_NF_TARGET_MARK=m
    CONFIG_IP_NF_TARGET_CLASSIFY=m
    CONFIG_IP_NF_RAW=m
    CONFIG_IP_NF_TARGET_NOTRACK=m
    CONFIG_IP_NF_ARPTABLES=m
    CONFIG_IP_NF_ARPFILTER=m
    CONFIG_IP_NF_ARP_MANGLE=m
    # IPv6: Netfilter Configuration (EXPERIMENTAL)
    CONFIG_IP6_NF_QUEUE=m
    CONFIG_IP6_NF_IPTABLES=m
    CONFIG_IP6_NF_MATCH_LIMIT=m
    CONFIG_IP6_NF_MATCH_MAC=m
    CONFIG_IP6_NF_MATCH_RT=m
    CONFIG_IP6_NF_MATCH_OPTS=m
    CONFIG_IP6_NF_MATCH_FRAG=m
    CONFIG_IP6_NF_MATCH_HL=m
    CONFIG_IP6_NF_MATCH_MULTIPORT=m
    CONFIG_IP6_NF_MATCH_OWNER=m
    CONFIG_IP6_NF_MATCH_MARK=m
    CONFIG_IP6_NF_MATCH_IPV6HEADER=m
    CONFIG_IP6_NF_MATCH_AHESP=m
    CONFIG_IP6_NF_MATCH_LENGTH=m
    CONFIG_IP6_NF_MATCH_EUI64=m
    CONFIG_IP6_NF_MATCH_PHYSDEV=m
    CONFIG_IP6_NF_FILTER=m
    CONFIG_IP6_NF_TARGET_LOG=m
    CONFIG_IP6_NF_MANGLE=m
    CONFIG_IP6_NF_TARGET_MARK=m
    CONFIG_IP6_NF_RAW=m
    # Bridge: Netfilter Configuration
    CONFIG_BRIDGE_NF_EBTABLES=m
    CONFIG_BRIDGE_EBT_BROUTE=m
    CONFIG_BRIDGE_EBT_T_FILTER=m
    CONFIG_BRIDGE_EBT_T_NAT=m
    CONFIG_BRIDGE_EBT_802_3=m
    CONFIG_BRIDGE_EBT_AMONG=m
    CONFIG_BRIDGE_EBT_ARP=m
    CONFIG_BRIDGE_EBT_IP=m
    CONFIG_BRIDGE_EBT_LIMIT=m
    CONFIG_BRIDGE_EBT_MARK=m
    CONFIG_BRIDGE_EBT_PKTTYPE=m
    CONFIG_BRIDGE_EBT_STP=m
    CONFIG_BRIDGE_EBT_VLAN=m
    CONFIG_BRIDGE_EBT_ARPREPLY=m
    CONFIG_BRIDGE_EBT_DNAT=m
    CONFIG_BRIDGE_EBT_MARK_T=m
    CONFIG_BRIDGE_EBT_REDIRECT=m
    CONFIG_BRIDGE_EBT_SNAT=m
    CONFIG_BRIDGE_EBT_LOG=m
    # CONFIG_BRIDGE_EBT_ULOG is not set
    CONFIG_XFRM=y
    CONFIG_XFRM_USER=m
    # SCTP Configuration (EXPERIMENTAL)
    CONFIG_IP_SCTP=m
    # CONFIG_SCTP_DBG_MSG is not set
    # CONFIG_SCTP_DBG_OBJCNT is not set
    # CONFIG_SCTP_HMAC_NONE is not set
    CONFIG_SCTP_HMAC_SHA1=y
    # CONFIG_SCTP_HMAC_MD5 is not set
    CONFIG_ATM=m
    CONFIG_ATM_CLIP=m
    # CONFIG_ATM_CLIP_NO_ICMP is not set
    CONFIG_ATM_LANE=m
    CONFIG_ATM_MPOA=m
    CONFIG_ATM_BR2684=m
    # CONFIG_ATM_BR2684_IPFILTER is not set
    CONFIG_BRIDGE=m
    CONFIG_VLAN_8021Q=m
    # CONFIG_DECNET is not set
    CONFIG_LLC=m
    CONFIG_LLC2=m
    CONFIG_IPX=m
    # CONFIG_IPX_INTERN is not set
    CONFIG_ATALK=m
    # CONFIG_DEV_APPLETALK 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
    # QoS and/or fair queueing
    CONFIG_NET_SCHED=y
    CONFIG_NET_SCH_CLK_JIFFIES=y
    # CONFIG_NET_SCH_CLK_GETTIMEOFDAY is not set
    # CONFIG_NET_SCH_CLK_CPU is not set
    CONFIG_NET_SCH_CBQ=m
    CONFIG_NET_SCH_HTB=m
    CONFIG_NET_SCH_HFSC=m
    CONFIG_NET_SCH_ATM=m
    CONFIG_NET_SCH_PRIO=m
    CONFIG_NET_SCH_RED=m
    CONFIG_NET_SCH_SFQ=m
    CONFIG_NET_SCH_TEQL=m
    CONFIG_NET_SCH_TBF=m
    CONFIG_NET_SCH_GRED=m
    CONFIG_NET_SCH_DSMARK=m
    CONFIG_NET_SCH_NETEM=m
    CONFIG_NET_SCH_INGRESS=m
    CONFIG_NET_QOS=y
    CONFIG_NET_ESTIMATOR=y
    CONFIG_NET_CLS=y
    # CONFIG_NET_CLS_BASIC is not set
    CONFIG_NET_CLS_TCINDEX=m
    CONFIG_NET_CLS_ROUTE4=m
    CONFIG_NET_CLS_ROUTE=y
    CONFIG_NET_CLS_FW=m
    CONFIG_NET_CLS_U32=m
    # CONFIG_CLS_U32_PERF is not set
    # CONFIG_NET_CLS_IND is not set
    # CONFIG_CLS_U32_MARK is not set
    CONFIG_NET_CLS_RSVP=m
    CONFIG_NET_CLS_RSVP6=m
    # CONFIG_NET_EMATCH is not set
    # CONFIG_NET_CLS_ACT is not set
    CONFIG_NET_CLS_POLICE=y
    # Network testing
    CONFIG_NET_PKTGEN=m
    CONFIG_NETPOLL=y
    # CONFIG_NETPOLL_RX is not set
    # CONFIG_NETPOLL_TRAP is not set
    CONFIG_NET_POLL_CONTROLLER=y
    # CONFIG_HAMRADIO is not set
    CONFIG_IRDA=m
    # IrDA protocols
    CONFIG_IRLAN=m
    CONFIG_IRNET=m
    CONFIG_IRCOMM=m
    CONFIG_IRDA_ULTRA=y
    # IrDA options
    CONFIG_IRDA_CACHE_LAST_LSAP=y
    CONFIG_IRDA_FAST_RR=y
    # CONFIG_IRDA_DEBUG is not set
    # Infrared-port device drivers
    # SIR device drivers
    CONFIG_IRTTY_SIR=m
    # Dongle support
    CONFIG_DONGLE=y
    CONFIG_ESI_DONGLE=m
    CONFIG_ACTISYS_DONGLE=m
    CONFIG_TEKRAM_DONGLE=m
    CONFIG_LITELINK_DONGLE=m
    CONFIG_MA600_DONGLE=m
    CONFIG_GIRBIL_DONGLE=m
    CONFIG_MCP2120_DONGLE=m
    CONFIG_OLD_BELKIN_DONGLE=m
    CONFIG_ACT200L_DONGLE=m
    # Old SIR device drivers
    CONFIG_IRPORT_SIR=m
    # Old Serial dongle support
    CONFIG_DONGLE_OLD=y
    CONFIG_ESI_DONGLE_OLD=m
    CONFIG_ACTISYS_DONGLE_OLD=m
    CONFIG_TEKRAM_DONGLE_OLD=m
    CONFIG_GIRBIL_DONGLE_OLD=m
    CONFIG_LITELINK_DONGLE_OLD=m
    CONFIG_MCP2120_DONGLE_OLD=m
    CONFIG_OLD_BELKIN_DONGLE_OLD=m
    CONFIG_ACT200L_DONGLE_OLD=m
    CONFIG_MA600_DONGLE_OLD=m
    # FIR device drivers
    CONFIG_USB_IRDA=m
    CONFIG_SIGMATEL_FIR=m
    CONFIG_NSC_FIR=m
    CONFIG_WINBOND_FIR=m
    CONFIG_TOSHIBA_FIR=m
    CONFIG_SMC_IRCC_FIR=m
    CONFIG_ALI_FIR=m
    CONFIG_VLSI_FIR=m
    CONFIG_VIA_FIR=m
    CONFIG_BT=m
    CONFIG_BT_L2CAP=m
    CONFIG_BT_SCO=m
    CONFIG_BT_RFCOMM=m
    CONFIG_BT_RFCOMM_TTY=y
    CONFIG_BT_BNEP=m
    # CONFIG_BT_BNEP_MC_FILTER is not set
    # CONFIG_BT_BNEP_PROTO_FILTER is not set
    CONFIG_BT_CMTP=m
    CONFIG_BT_HIDP=m
    # Bluetooth device drivers
    CONFIG_BT_HCIUSB=m
    CONFIG_BT_HCIUSB_SCO=y
    CONFIG_BT_HCIUART=m
    CONFIG_BT_HCIUART_H4=y
    CONFIG_BT_HCIUART_BCSP=y
    CONFIG_BT_HCIUART_BCSP_TXCRC=y
    CONFIG_BT_HCIBCM203X=m
    # CONFIG_BT_HCIBPA10X is not set
    CONFIG_BT_HCIBFUSB=m
    CONFIG_BT_HCIDTL1=m
    CONFIG_BT_HCIBT3C=m
    CONFIG_BT_HCIBLUECARD=m
    CONFIG_BT_HCIBTUART=m
    CONFIG_BT_HCIVHCI=m
    CONFIG_NETDEVICES=y
    CONFIG_DUMMY=m
    CONFIG_BONDING=m
    CONFIG_EQUALIZER=m
    CONFIG_TUN=m
    # CONFIG_NET_SB1000 is not set
    # ARCnet devices
    # CONFIG_ARCNET is not set
    # Ethernet (10 or 100Mbit)
    CONFIG_NET_ETHERNET=y
    CONFIG_MII=m
    CONFIG_HAPPYMEAL=m
    CONFIG_SUNGEM=m
    CONFIG_NET_VENDOR_3COM=y
    CONFIG_EL1=m
    CONFIG_EL2=m
    CONFIG_ELPLUS=m
    CONFIG_EL16=m
    CONFIG_EL3=m
    CONFIG_3C515=m
    CONFIG_VORTEX=m
    CONFIG_TYPHOON=m
    CONFIG_LANCE=m
    CONFIG_NET_VENDOR_SMC=y
    CONFIG_WD80x3=m
    CONFIG_ULTRA=m
    CONFIG_SMC9194=m
    CONFIG_NET_VENDOR_RACAL=y
    CONFIG_NI5010=m
    CONFIG_NI52=m
    CONFIG_NI65=m
    # Tulip family network device support
    CONFIG_NET_TULIP=y
    CONFIG_DE2104X=m
    CONFIG_TULIP=m
    # CONFIG_TULIP_MWI is not set
    # CONFIG_TULIP_MMIO is not set
    # CONFIG_TULIP_NAPI is not set
    CONFIG_DE4X5=m
    CONFIG_WINBOND_840=m
    CONFIG_DM9102=m
    CONFIG_PCMCIA_XIRCOM=m
    # CONFIG_PCMCIA_XIRTULIP is not set
    CONFIG_AT1700=m
    CONFIG_DEPCA=m
    CONFIG_HP100=m
    CONFIG_NET_ISA=y
    CONFIG_E2100=m
    CONFIG_EWRK3=m
    CONFIG_EEXPRESS=m
    CONFIG_EEXPRESS_PRO=m
    CONFIG_HPLAN_PLUS=m
    CONFIG_HPLAN=m
    CONFIG_LP486E=m
    CONFIG_ETH16I=m
    CONFIG_NE2000=m
    CONFIG_ZNET=m
    CONFIG_SEEQ8005=m
    CONFIG_NET_PCI=y
    CONFIG_PCNET32=m
    CONFIG_AMD8111_ETH=m
    # CONFIG_AMD8111E_NAPI is not set
    CONFIG_ADAPTEC_STARFIRE=m
    # CONFIG_ADAPTEC_STARFIRE_NAPI is not set
    CONFIG_AC3200=m
    CONFIG_APRICOT=m
    CONFIG_B44=m
    CONFIG_FORCEDETH=m
    CONFIG_CS89x0=m
    CONFIG_DGRS=m
    CONFIG_EEPRO100=m
    CONFIG_E100=m
    CONFIG_FEALNX=m
    CONFIG_NATSEMI=m
    CONFIG_NE2K_PCI=m
    CONFIG_8139CP=m
    CONFIG_8139TOO=m
    # CONFIG_8139TOO_PIO is not set
    CONFIG_8139TOO_TUNE_TWISTER=y
    CONFIG_8139TOO_8129=y
    # CONFIG_8139_OLD_RX_RESET is not set
    CONFIG_SIS900=m
    CONFIG_EPIC100=m
    CONFIG_SUNDANCE=m
    # CONFIG_SUNDANCE_MMIO is not set
    CONFIG_TLAN=m
    CONFIG_VIA_RHINE=m
    # CONFIG_VIA_RHINE_MMIO is not set
    CONFIG_NET_POCKET=y
    CONFIG_ATP=m
    CONFIG_DE600=m
    CONFIG_DE620=m
    # Ethernet (1000 Mbit)
    CONFIG_ACENIC=m
    # CONFIG_ACENIC_OMIT_TIGON_I is not set
    CONFIG_DL2K=m
    CONFIG_E1000=m
    # CONFIG_E1000_NAPI is not set
    CONFIG_NS83820=m
    CONFIG_HAMACHI=m
    CONFIG_YELLOWFIN=m
    CONFIG_R8169=m
    # CONFIG_R8169_NAPI is not set
    # CONFIG_R8169_VLAN is not set
    CONFIG_SK98LIN=m
    CONFIG_VIA_VELOCITY=m
    CONFIG_TIGON3=m
    CONFIG_BNX2=m
    # Ethernet (10000 Mbit)
    CONFIG_IXGB=m
    # CONFIG_IXGB_NAPI is not set
    CONFIG_S2IO=m
    # CONFIG_S2IO_NAPI is not set
    # CONFIG_2BUFF_MODE is not set
    # Token Ring devices
    # CONFIG_TR is not set
    # Wireless LAN (non-hamradio)
    CONFIG_NET_RADIO=y
    # Obsolete Wireless cards support (pre-802.11)
    # CONFIG_STRIP is not set
    # CONFIG_ARLAN is not set
    # CONFIG_WAVELAN is not set
    # CONFIG_PCMCIA_WAVELAN is not set
    # CONFIG_PCMCIA_NETWAVE is not set
    # Wireless 802.11 Frequency Hopping cards support
    CONFIG_PCMCIA_RAYCS=m
    # Wireless 802.11b ISA/PCI cards support
    CONFIG_AIRO=m
    CONFIG_HERMES=m
    CONFIG_PLX_HERMES=m
    CONFIG_TMD_HERMES=m
    CONFIG_PCI_HERMES=m
    CONFIG_ATMEL=m
    CONFIG_PCI_ATMEL=m
    # Wireless 802.11b Pcmcia/Cardbus cards support
    CONFIG_PCMCIA_HERMES=m
    CONFIG_AIRO_CS=m
    CONFIG_PCMCIA_ATMEL=m
    CONFIG_PCMCIA_WL3501=m
    # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support
    CONFIG_PRISM54=m
    CONFIG_NET_WIRELESS=y
    # PCMCIA network device support
    CONFIG_NET_PCMCIA=y
    CONFIG_PCMCIA_3C589=m
    CONFIG_PCMCIA_3C574=m
    CONFIG_PCMCIA_FMVJ18X=m
    CONFIG_PCMCIA_PCNET=m
    CONFIG_PCMCIA_NMCLAN=m
    CONFIG_PCMCIA_SMC91C92=m
    CONFIG_PCMCIA_XIRC2PS=m
    CONFIG_PCMCIA_AXNET=m
    # Wan interfaces
    # CONFIG_WAN is not set
    # ATM drivers
    CONFIG_ATM_TCP=m
    CONFIG_ATM_LANAI=m
    CONFIG_ATM_ENI=m
    # CONFIG_ATM_ENI_DEBUG is not set
    # CONFIG_ATM_ENI_TUNE_BURST is not set
    CONFIG_ATM_FIRESTREAM=m
    CONFIG_ATM_ZATM=m
    # CONFIG_ATM_ZATM_DEBUG is not set
    CONFIG_ATM_NICSTAR=m
    # CONFIG_ATM_NICSTAR_USE_SUNI is not set
    # CONFIG_ATM_NICSTAR_USE_IDT77105 is not set
    CONFIG_ATM_IDT77252=m
    # CONFIG_ATM_IDT77252_DEBUG is not set
    # CONFIG_ATM_IDT77252_RCV_ALL is not set
    CONFIG_ATM_IDT77252_USE_SUNI=y
    CONFIG_ATM_AMBASSADOR=m
    # CONFIG_ATM_AMBASSADOR_DEBUG is not set
    CONFIG_ATM_HORIZON=m
    # CONFIG_ATM_HORIZON_DEBUG is not set
    CONFIG_ATM_IA=m
    # CONFIG_ATM_IA_DEBUG is not set
    CONFIG_ATM_FORE200E_MAYBE=m
    # CONFIG_ATM_FORE200E_PCA is not set
    CONFIG_ATM_HE=m
    # CONFIG_ATM_HE_USE_SUNI is not set
    # CONFIG_FDDI is not set
    # CONFIG_HIPPI is not set
    CONFIG_PLIP=m
    CONFIG_PPP=m
    CONFIG_PPP_MULTILINK=y
    CONFIG_PPP_FILTER=y
    CONFIG_PPP_ASYNC=m
    CONFIG_PPP_SYNC_TTY=m
    CONFIG_PPP_DEFLATE=m
    CONFIG_PPP_BSDCOMP=m
    CONFIG_PPPOE=m
    CONFIG_PPPOATM=m
    CONFIG_SLIP=m
    # CONFIG_SLIP_COMPRESSED is not set
    # CONFIG_SLIP_SMART is not set
    # CONFIG_SLIP_MODE_SLIP6 is not set
    # CONFIG_NET_FC is not set
    CONFIG_SHAPER=m
    CONFIG_NETCONSOLE=m
    # ISDN subsystem
    CONFIG_ISDN=m
    # Old ISDN4Linux
    CONFIG_ISDN_I4L=m
    CONFIG_ISDN_PPP=y
    # CONFIG_ISDN_PPP_VJ is not set
    # CONFIG_ISDN_MPP is not set
    # CONFIG_IPPP_FILTER is not set
    CONFIG_ISDN_PPP_BSDCOMP=m
    CONFIG_ISDN_AUDIO=y
    CONFIG_ISDN_TTY_FAX=y
    # ISDN feature submodules
    # CONFIG_ISDN_DRV_LOOP is not set
    # CONFIG_ISDN_DIVERSION is not set
    # ISDN4Linux hardware drivers
    # Passive cards
    CONFIG_ISDN_DRV_HISAX=m
    # D-channel protocol features
    CONFIG_HISAX_EURO=y
    CONFIG_DE_AOC=y
    # CONFIG_HISAX_NO_SENDCOMPLETE is not set
    # CONFIG_HISAX_NO_LLC is not set
    # CONFIG_HISAX_NO_KEYPAD is not set
    CONFIG_HISAX_1TR6=y
    CONFIG_HISAX_NI1=y
    CONFIG_HISAX_MAX_CARDS=8
    # HiSax supported cards
    CONFIG_HISAX_16_0=y
    CONFIG_HISAX_16_3=y
    CONFIG_HISAX_TELESPCI=y
    CONFIG_HISAX_S0BOX=y
    CONFIG_HISAX_AVM_A1=y
    CONFIG_HISAX_FRITZPCI=y
    CONFIG_HISAX_AVM_A1_PCMCIA=y
    CONFIG_HISAX_ELSA=y
    CONFIG_HISAX_IX1MICROR2=y
    CONFIG_HISAX_DIEHLDIVA=y
    CONFIG_HISAX_ASUSCOM=y
    CONFIG_HISAX_TELEINT=y
    CONFIG_HISAX_HFCS=y
    CONFIG_HISAX_SEDLBAUER=y
    CONFIG_HISAX_SPORTSTER=y
    CONFIG_HISAX_MIC=y
    CONFIG_HISAX_NETJET=y
    CONFIG_HISAX_NETJET_U=y
    CONFIG_HISAX_NICCY=y
    CONFIG_HISAX_ISURF=y
    CONFIG_HISAX_HSTSAPHIR=y
    CONFIG_HISAX_BKM_A4T=y
    CONFIG_HISAX_SCT_QUADRO=y
    CONFIG_HISAX_GAZEL=y
    CONFIG_HISAX_HFC_PCI=y
    CONFIG_HISAX_W6692=y
    CONFIG_HISAX_HFC_SX=y
    CONFIG_HISAX_ENTERNOW_PCI=y
    # CONFIG_HISAX_DEBUG is not set
    # HiSax PCMCIA card service modules
    CONFIG_HISAX_SEDLBAUER_CS=m
    CONFIG_HISAX_ELSA_CS=m
    CONFIG_HISAX_AVM_A1_CS=m
    CONFIG_HISAX_TELES_CS=m
    # HiSax sub driver modules
    CONFIG_HISAX_ST5481=m
    CONFIG_HISAX_HFCUSB=m
    # CONFIG_HISAX_HFC4S8S is not set
    CONFIG_HISAX_FRITZ_PCIPNP=m
    CONFIG_HISAX_HDLC=y
    # Active cards
    CONFIG_ISDN_DRV_ICN=m
    CONFIG_ISDN_DRV_PCBIT=m
    CONFIG_ISDN_DRV_SC=m
    CONFIG_ISDN_DRV_ACT2000=m
    CONFIG_HYSDN=m
    CONFIG_HYSDN_CAPI=y
    # CAPI subsystem
    CONFIG_ISDN_CAPI=m
    CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y
    CONFIG_ISDN_CAPI_MIDDLEWARE=y
    CONFIG_ISDN_CAPI_CAPI20=m
    CONFIG_ISDN_CAPI_CAPIFS_BOOL=y
    CONFIG_ISDN_CAPI_CAPIFS=m
    CONFIG_ISDN_CAPI_CAPIDRV=m
    # CAPI hardware drivers
    # Active AVM cards
    CONFIG_CAPI_AVM=y
    CONFIG_ISDN_DRV_AVMB1_B1ISA=m
    CONFIG_ISDN_DRV_AVMB1_B1PCI=m
    CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
    CONFIG_ISDN_DRV_AVMB1_T1ISA=m
    CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m
    CONFIG_ISDN_DRV_AVMB1_AVM_CS=m
    CONFIG_ISDN_DRV_AVMB1_T1PCI=m
    CONFIG_ISDN_DRV_AVMB1_C4=m
    # Active Eicon DIVA Server cards
    CONFIG_CAPI_EICON=y
    CONFIG_ISDN_DIVAS=m
    CONFIG_ISDN_DIVAS_BRIPCI=y
    CONFIG_ISDN_DIVAS_PRIPCI=y
    CONFIG_ISDN_DIVAS_DIVACAPI=m
    CONFIG_ISDN_DIVAS_USERIDI=m
    CONFIG_ISDN_DIVAS_MAINT=m
    # 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=m
    CONFIG_INPUT_TSDEV=m
    CONFIG_INPUT_TSDEV_SCREEN_X=240
    CONFIG_INPUT_TSDEV_SCREEN_Y=320
    CONFIG_INPUT_EVDEV=m
    # CONFIG_INPUT_EVBUG is not set
    # Input Device Drivers
    CONFIG_INPUT_KEYBOARD=y
    CONFIG_KEYBOARD_ATKBD=y
    # CONFIG_KEYBOARD_SUNKBD is not set
    # CONFIG_KEYBOARD_LKKBD 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 is not set
    # CONFIG_MOUSE_INPORT is not set
    # CONFIG_MOUSE_LOGIBM is not set
    # CONFIG_MOUSE_PC110PAD is not set
    # CONFIG_MOUSE_VSXXXAA is not set
    CONFIG_INPUT_JOYSTICK=y
    CONFIG_JOYSTICK_ANALOG=m
    CONFIG_JOYSTICK_A3D=m
    CONFIG_JOYSTICK_ADI=m
    CONFIG_JOYSTICK_COBRA=m
    CONFIG_JOYSTICK_GF2K=m
    CONFIG_JOYSTICK_GRIP=m
    CONFIG_JOYSTICK_GRIP_MP=m
    CONFIG_JOYSTICK_GUILLEMOT=m
    CONFIG_JOYSTICK_INTERACT=m
    CONFIG_JOYSTICK_SIDEWINDER=m
    CONFIG_JOYSTICK_TMDC=m
    CONFIG_JOYSTICK_IFORCE=m
    CONFIG_JOYSTICK_IFORCE_USB=y
    CONFIG_JOYSTICK_IFORCE_232=y
    CONFIG_JOYSTICK_WARRIOR=m
    CONFIG_JOYSTICK_MAGELLAN=m
    CONFIG_JOYSTICK_SPACEORB=m
    CONFIG_JOYSTICK_SPACEBALL=m
    CONFIG_JOYSTICK_STINGER=m
    CONFIG_JOYSTICK_TWIDJOY=m
    CONFIG_JOYSTICK_DB9=m
    CONFIG_JOYSTICK_GAMECON=m
    CONFIG_JOYSTICK_TURBOGRAFX=m
    # CONFIG_JOYSTICK_JOYDUMP is not set
    CONFIG_INPUT_TOUCHSCREEN=y
    CONFIG_TOUCHSCREEN_GUNZE=m
    CONFIG_TOUCHSCREEN_ELO=m
    CONFIG_TOUCHSCREEN_MTOUCH=m
    CONFIG_TOUCHSCREEN_MK712=m
    CONFIG_INPUT_MISC=y
    CONFIG_INPUT_PCSPKR=m
    CONFIG_INPUT_UINPUT=m
    # Hardware I/O ports
    CONFIG_SERIO=y
    CONFIG_SERIO_I8042=y
    CONFIG_SERIO_SERPORT=m
    CONFIG_SERIO_CT82C710=m
    CONFIG_SERIO_PARKBD=m
    CONFIG_SERIO_PCIPS2=m
    CONFIG_SERIO_LIBPS2=y
    # CONFIG_SERIO_RAW is not set
    CONFIG_GAMEPORT=m
    CONFIG_GAMEPORT_NS558=m
    CONFIG_GAMEPORT_L4=m
    CONFIG_GAMEPORT_EMU10K1=m
    CONFIG_GAMEPORT_VORTEX=m
    CONFIG_GAMEPORT_FM801=m
    CONFIG_GAMEPORT_CS461X=m
    # Character devices
    CONFIG_VT=y
    CONFIG_VT_CONSOLE=y
    CONFIG_HW_CONSOLE=y
    CONFIG_SERIAL_NONSTANDARD=y
    # CONFIG_COMPUTONE is not set
    CONFIG_ROCKETPORT=m
    CONFIG_CYCLADES=m
    # CONFIG_CYZ_INTR is not set
    # CONFIG_DIGIEPCA is not set
    # CONFIG_ESPSERIAL is not set
    # CONFIG_MOXA_INTELLIO is not set
    # CONFIG_MOXA_SMARTIO is not set
    # CONFIG_ISI is not set
    CONFIG_SYNCLINK=m
    CONFIG_SYNCLINKMP=m
    CONFIG_N_HDLC=m
    # CONFIG_RISCOM8 is not set
    # CONFIG_SPECIALIX is not set
    # CONFIG_SX is not set
    # CONFIG_RIO is not set
    # CONFIG_STALDRV is not set
    # Serial drivers
    CONFIG_SERIAL_8250=y
    CONFIG_SERIAL_8250_CONSOLE=y
    CONFIG_SERIAL_8250_CS=m
    # CONFIG_SERIAL_8250_ACPI is not set
    CONFIG_SERIAL_8250_NR_UARTS=4
    # CONFIG_SERIAL_8250_EXTENDED is not set
    # Non-8250 serial port support
    CONFIG_SERIAL_CORE=y
    CONFIG_SERIAL_CORE_CONSOLE=y
    # CONFIG_SERIAL_JSM is not set
    CONFIG_UNIX98_PTYS=y
    CONFIG_LEGACY_PTYS=y
    CONFIG_LEGACY_PTY_COUNT=256
    CONFIG_PRINTER=m
    # CONFIG_LP_CONSOLE is not set
    CONFIG_PPDEV=m
    # CONFIG_TIPAR is not set
    # IPMI
    CONFIG_IPMI_HANDLER=m
    # CONFIG_IPMI_PANIC_EVENT is not set
    CONFIG_IPMI_DEVICE_INTERFACE=m
    CONFIG_IPMI_SI=m
    CONFIG_IPMI_WATCHDOG=m
    CONFIG_IPMI_POWEROFF=m
    # Watchdog Cards
    # CONFIG_WATCHDOG is not set
    CONFIG_HW_RANDOM=m
    CONFIG_NVRAM=m
    CONFIG_RTC=m
    CONFIG_GEN_RTC=m
    # CONFIG_GEN_RTC_X is not set
    CONFIG_DTLK=m
    CONFIG_R3964=m
    CONFIG_APPLICOM=m
    CONFIG_SONYPI=m
    # Ftape, the floppy tape device driver
    # CONFIG_FTAPE is not set
    CONFIG_AGP=m
    CONFIG_AGP_ALI=m
    CONFIG_AGP_ATI=m
    CONFIG_AGP_AMD=m
    CONFIG_AGP_AMD64=m
    CONFIG_AGP_INTEL=m
    CONFIG_AGP_NVIDIA=m
    CONFIG_AGP_SIS=m
    CONFIG_AGP_SWORKS=m
    CONFIG_AGP_VIA=m
    CONFIG_AGP_EFFICEON=m
    CONFIG_DRM=m
    CONFIG_DRM_TDFX=m
    # CONFIG_DRM_GAMMA is not set
    CONFIG_DRM_R128=m
    CONFIG_DRM_RADEON=m
    CONFIG_DRM_I810=m
    CONFIG_DRM_I830=m
    CONFIG_DRM_I915=m
    CONFIG_DRM_MGA=m
    CONFIG_DRM_SIS=m
    # PCMCIA character devices
    CONFIG_SYNCLINK_CS=m
    CONFIG_MWAVE=m
    # CONFIG_RAW_DRIVER is not set
    # CONFIG_HPET is not set
    CONFIG_HANGCHECK_TIMER=m
    # TPM devices
    CONFIG_TCG_TPM=m
    CONFIG_TCG_NSC=m
    CONFIG_TCG_ATMEL=m
    # Linux InfraRed Controller
    # CONFIG_LIRC_SUPPORT is not set
    # I2C support
    CONFIG_I2C=m
    CONFIG_I2C_CHARDEV=m
    # I2C Algorithms
    CONFIG_I2C_ALGOBIT=m
    CONFIG_I2C_ALGOPCF=m
    CONFIG_I2C_ALGOPCA=m
    # I2C Hardware Bus support
    CONFIG_I2C_ALI1535=m
    CONFIG_I2C_ALI1563=m
    CONFIG_I2C_ALI15X3=m
    CONFIG_I2C_AMD756=m
    CONFIG_I2C_AMD756_S4882=m
    CONFIG_I2C_AMD8111=m
    # CONFIG_I2C_ELEKTOR is not set
    CONFIG_I2C_I801=m
    CONFIG_I2C_I810=m
    CONFIG_I2C_PIIX4=m
    CONFIG_I2C_ISA=m
    CONFIG_I2C_NFORCE2=m
    CONFIG_I2C_PARPORT=m
    CONFIG_I2C_PARPORT_LIGHT=m
    CONFIG_I2C_PROSAVAGE=m
    CONFIG_I2C_SAVAGE4=m
    CONFIG_SCx200_ACB=m
    CONFIG_I2C_SIS5595=m
    CONFIG_I2C_SIS630=m
    CONFIG_I2C_SIS96X=m
    # CONFIG_I2C_STUB is not set
    CONFIG_I2C_VIA=m
    CONFIG_I2C_VIAPRO=m
    CONFIG_I2C_VOODOO3=m
    CONFIG_I2C_PCA_ISA=m
    # Hardware Sensors Chip support
    CONFIG_I2C_SENSOR=m
    CONFIG_SENSORS_ADM1021=m
    CONFIG_SENSORS_ADM1025=m
    CONFIG_SENSORS_ADM1026=m
    CONFIG_SENSORS_ADM1031=m
    CONFIG_SENSORS_ASB100=m
    CONFIG_SENSORS_DS1621=m
    CONFIG_SENSORS_FSCHER=m
    CONFIG_SENSORS_FSCPOS=m
    CONFIG_SENSORS_GL518SM=m
    CONFIG_SENSORS_GL520SM=m
    CONFIG_SENSORS_IT87=m
    CONFIG_SENSORS_LM63=m
    CONFIG_SENSORS_LM75=m
    CONFIG_SENSORS_LM77=m
    CONFIG_SENSORS_LM78=m
    CONFIG_SENSORS_LM80=m
    CONFIG_SENSORS_LM83=m
    CONFIG_SENSORS_LM85=m
    CONFIG_SENSORS_LM87=m
    CONFIG_SENSORS_LM90=m
    CONFIG_SENSORS_LM92=m
    CONFIG_SENSORS_MAX1619=m
    CONFIG_SENSORS_PC87360=m
    CONFIG_SENSORS_SMSC47B397=m
    CONFIG_SENSORS_SIS5595=m
    CONFIG_SENSORS_SMSC47M1=m
    CONFIG_SENSORS_VIA686A=m
    CONFIG_SENSORS_W83781D=m
    CONFIG_SENSORS_W83L785TS=m
    CONFIG_SENSORS_W83627HF=m
    # Other I2C Chip support
    CONFIG_SENSORS_DS1337=m
    CONFIG_SENSORS_EEPROM=m
    CONFIG_SENSORS_PCF8574=m
    CONFIG_SENSORS_PCF8591=m
    CONFIG_SENSORS_RTC8564=m
    # CONFIG_I2C_DEBUG_CORE is not set
    # CONFIG_I2C_DEBUG_ALGO is not set
    # CONFIG_I2C_DEBUG_BUS is not set
    # CONFIG_I2C_DEBUG_CHIP is not set
    # Dallas's 1-wire bus
    CONFIG_W1=m
    CONFIG_W1_MATROX=m
    CONFIG_W1_DS9490=m
    CONFIG_W1_DS9490_BRIDGE=m
    CONFIG_W1_THERM=m
    CONFIG_W1_SMEM=m
    # Misc devices
    # CONFIG_IBM_ASM is not set
    # Multimedia devices
    CONFIG_VIDEO_DEV=m
    # Video For Linux
    # Video Adapters
    CONFIG_VIDEO_BT848=m
    CONFIG_VIDEO_PMS=m
    CONFIG_VIDEO_BWQCAM=m
    CONFIG_VIDEO_CQCAM=m
    CONFIG_VIDEO_W9966=m
    CONFIG_VIDEO_CPIA=m
    CONFIG_VIDEO_CPIA_PP=m
    CONFIG_VIDEO_CPIA_USB=m
    CONFIG_VIDEO_SAA5246A=m
    CONFIG_VIDEO_SAA5249=m
    CONFIG_TUNER_3036=m
    CONFIG_VIDEO_STRADIS=m
    # CONFIG_VIDEO_ZORAN is not set
    # CONFIG_VIDEO_ZR36120 is not set
    CONFIG_VIDEO_MEYE=m
    CONFIG_VIDEO_SAA7134=m
    CONFIG_VIDEO_SAA7134_DVB=m
    CONFIG_VIDEO_MXB=m
    CONFIG_VIDEO_DPC=m
    CONFIG_VIDEO_HEXIUM_ORION=m
    CONFIG_VIDEO_HEXIUM_GEMINI=m
    CONFIG_VIDEO_CX88=m
    CONFIG_VIDEO_CX88_DVB=m
    CONFIG_VIDEO_OVCAMCHIP=m
    # 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_SF16FMR2=m
    CONFIG_RADIO_TERRATEC=m
    CONFIG_RADIO_TRUST=m
    CONFIG_RADIO_TYPHOON=m
    # CONFIG_RADIO_TYPHOON_PROC_FS is not set
    CONFIG_RADIO_ZOLTRIX=m
    # Digital Video Broadcasting Devices
    CONFIG_DVB=y
    CONFIG_DVB_CORE=m
    # Supported SAA7146 based PCI Adapters
    CONFIG_DVB_AV7110=m
    CONFIG_DVB_AV7110_OSD=y
    CONFIG_DVB_BUDGET=m
    CONFIG_DVB_BUDGET_CI=m
    CONFIG_DVB_BUDGET_AV=m
    CONFIG_DVB_BUDGET_PATCH=m
    # Supported USB Adapters
    CONFIG_DVB_TTUSB_BUDGET=m
    CONFIG_DVB_TTUSB_DEC=m
    CONFIG_DVB_DIBUSB=m
    CONFIG_DVB_DIBUSB_MISDESIGNED_DEVICES=y
    # CONFIG_DVB_DIBCOM_DEBUG is not set
    CONFIG_DVB_CINERGYT2=m
    CONFIG_DVB_CINERGYT2_TUNING=y
    CONFIG_DVB_CINERGYT2_STREAM_URB_COUNT=32
    CONFIG_DVB_CINERGYT2_STREAM_BUF_SIZE=512
    CONFIG_DVB_CINERGYT2_QUERY_INTERVAL=250
    CONFIG_DVB_CINERGYT2_ENABLE_RC_INPUT_DEVICE=y
    CONFIG_DVB_CINERGYT2_RC_QUERY_INTERVAL=100
    # Supported FlexCopII (B2C2) Adapters
    CONFIG_DVB_B2C2_FLEXCOP=m
    CONFIG_DVB_B2C2_FLEXCOP_PCI=m
    CONFIG_DVB_B2C2_FLEXCOP_USB=m
    # CONFIG_DVB_B2C2_FLEXCOP_DEBUG is not set
    CONFIG_DVB_B2C2_SKYSTAR=m
    # Supported BT878 Adapters
    CONFIG_DVB_BT8XX=m
    # Supported DVB Frontends
    # Customise DVB Frontends
    # DVB-S (satellite) frontends
    CONFIG_DVB_STV0299=m
    CONFIG_DVB_CX24110=m
    CONFIG_DVB_TDA8083=m
    CONFIG_DVB_TDA80XX=m
    CONFIG_DVB_MT312=m
    CONFIG_DVB_VES1X93=m
    # DVB-T (terrestrial) frontends
    CONFIG_DVB_SP8870=m
    CONFIG_DVB_SP887X=m
    CONFIG_DVB_CX22700=m
    CONFIG_DVB_CX22702=m
    CONFIG_DVB_L64781=m
    CONFIG_DVB_TDA1004X=m
    CONFIG_DVB_NXT6000=m
    CONFIG_DVB_MT352=m
    CONFIG_DVB_DIB3000MB=m
    CONFIG_DVB_DIB3000MC=m
    # DVB-C (cable) frontends
    CONFIG_DVB_ATMEL_AT76C651=m
    CONFIG_DVB_VES1820=m
    CONFIG_DVB_TDA10021=m
    CONFIG_DVB_STV0297=m
    # ATSC (North American/Korean Terresterial DTV) frontends
    CONFIG_DVB_NXT2002=m
    CONFIG_DVB_OR51211=m
    CONFIG_DVB_OR51132=m
    CONFIG_VIDEO_SAA7146=m
    CONFIG_VIDEO_SAA7146_VV=m
    CONFIG_VIDEO_VIDEOBUF=m
    CONFIG_VIDEO_TUNER=m
    CONFIG_VIDEO_BUF=m
    CONFIG_VIDEO_BUF_DVB=m
    CONFIG_VIDEO_BTCX=m
    CONFIG_VIDEO_IR=m
    CONFIG_VIDEO_TVEEPROM=m
    # Graphics support
    CONFIG_FB=y
    CONFIG_FB_CFB_FILLRECT=y
    CONFIG_FB_CFB_COPYAREA=y
    CONFIG_FB_CFB_IMAGEBLIT=y
    CONFIG_FB_SOFT_CURSOR=y
    # CONFIG_FB_MACMODES is not set
    CONFIG_FB_MODE_HELPERS=y
    # CONFIG_FB_TILEBLITTING is not set
    # CONFIG_FB_CIRRUS is not set
    # CONFIG_FB_PM2 is not set
    # CONFIG_FB_CYBER2000 is not set
    # CONFIG_FB_ASILIANT is not set
    # CONFIG_FB_IMSTT is not set
    # CONFIG_FB_VGA16 is not set
    CONFIG_FB_VESA=y
    CONFIG_FB_VESA_STD=y
    # CONFIG_FB_VESA_TNG is not set
    CONFIG_VIDEO_SELECT=y
    # CONFIG_FB_HGA is not set
    # CONFIG_FB_NVIDIA is not set
    # CONFIG_FB_RIVA is not set
    CONFIG_FB_I810=m
    CONFIG_FB_I810_GTF=y
    CONFIG_FB_INTEL=m
    # CONFIG_FB_INTEL_DEBUG is not set
    # CONFIG_FB_MATROX is not set
    # CONFIG_FB_RADEON_OLD is not set
    # CONFIG_FB_RADEON is not set
    # CONFIG_FB_ATY128 is not set
    # CONFIG_FB_ATY is not set
    # CONFIG_FB_SAVAGE is not set
    # CONFIG_FB_SIS is not set
    # CONFIG_FB_NEOMAGIC is not set
    # CONFIG_FB_KYRO is not set
    # CONFIG_FB_3DFX is not set
    # CONFIG_FB_VOODOO1 is not set
    # CONFIG_FB_TRIDENT is not set
    # CONFIG_FB_PM3 is not set
    # CONFIG_FB_GEODE is not set
    # CONFIG_FB_S1D13XXX 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_FONTS=y
    # CONFIG_FONT_8x8 is not set
    CONFIG_FONT_8x16=y
    # CONFIG_FONT_6x11 is not set
    # CONFIG_FONT_PEARL_8x8 is not set
    # CONFIG_FONT_ACORN_8x8 is not set
    # CONFIG_FONT_MINI_4x6 is not set
    # CONFIG_FONT_SUN8x16 is not set
    # CONFIG_FONT_SUN12x22 is not set
    # Logo configuration
    # CONFIG_LOGO is not set
    CONFIG_BACKLIGHT_LCD_SUPPORT=y
    CONFIG_BACKLIGHT_CLASS_DEVICE=m
    CONFIG_BACKLIGHT_DEVICE=y
    CONFIG_LCD_CLASS_DEVICE=m
    CONFIG_LCD_DEVICE=y
    CONFIG_FB_SPLASH=y
    # Sound
    CONFIG_SOUND=m
    # Advanced Linux Sound Architecture
    CONFIG_SND=m
    CONFIG_SND_TIMER=m
    CONFIG_SND_PCM=m
    CONFIG_SND_HWDEP=m
    CONFIG_SND_RAWMIDI=m
    CONFIG_SND_SEQUENCER=m
    # CONFIG_SND_SEQ_DUMMY is not set
    CONFIG_SND_OSSEMUL=y
    CONFIG_SND_MIXER_OSS=m
    CONFIG_SND_PCM_OSS=m
    CONFIG_SND_SEQUENCER_OSS=y
    CONFIG_SND_RTCTIMER=m
    # CONFIG_SND_VERBOSE_PRINTK is not set
    # CONFIG_SND_DEBUG is not set
    CONFIG_SND_GENERIC_PM=y
    # Generic devices
    CONFIG_SND_MPU401_UART=m
    CONFIG_SND_OPL3_LIB=m
    CONFIG_SND_OPL4_LIB=m
    CONFIG_SND_VX_LIB=m
    CONFIG_SND_DUMMY=m
    CONFIG_SND_VIRMIDI=m
    CONFIG_SND_MTPAV=m
    CONFIG_SND_SERIAL_U16550=m
    CONFIG_SND_MPU401=m
    # ISA devices
    CONFIG_SND_AD1848_LIB=m
    CONFIG_SND_CS4231_LIB=m
    CONFIG_SND_AD1816A=m
    CONFIG_SND_AD1848=m
    CONFIG_SND_CS4231=m
    CONFIG_SND_CS4232=m
    CONFIG_SND_CS4236=m
    CONFIG_SND_ES968=m
    CONFIG_SND_ES1688=m
    CONFIG_SND_ES18XX=m
    CONFIG_SND_GUS_SYNTH=m
    CONFIG_SND_GUSCLASSIC=m
    CONFIG_SND_GUSEXTREME=m
    CONFIG_SND_GUSMAX=m
    CONFIG_SND_INTERWAVE=m
    CONFIG_SND_INTERWAVE_STB=m
    CONFIG_SND_OPTI92X_AD1848=m
    CONFIG_SND_OPTI92X_CS4231=m
    CONFIG_SND_OPTI93X=m
    CONFIG_SND_SB8=m
    CONFIG_SND_SB16=m
    CONFIG_SND_SBAWE=m
    CONFIG_SND_SB16_CSP=y
    CONFIG_SND_WAVEFRONT=m
    CONFIG_SND_ALS100=m
    CONFIG_SND_AZT2320=m
    CONFIG_SND_CMI8330=m
    CONFIG_SND_DT019X=m
    CONFIG_SND_OPL3SA2=m
    CONFIG_SND_SGALAXY=m
    CONFIG_SND_SSCAPE=m
    # PCI devices
    CONFIG_SND_AC97_CODEC=m
    CONFIG_SND_ALI5451=m
    CONFIG_SND_ATIIXP=m
    CONFIG_SND_ATIIXP_MODEM=m
    CONFIG_SND_AU8810=m
    CONFIG_SND_AU8820=m
    CONFIG_SND_AU8830=m
    CONFIG_SND_AZT3328=m
    CONFIG_SND_BT87X=m
    # CONFIG_SND_BT87X_OVERCLOCK is not set
    CONFIG_SND_CS46XX=m
    CONFIG_SND_CS46XX_NEW_DSP=y
    CONFIG_SND_CS4281=m
    CONFIG_SND_EMU10K1=m
    CONFIG_SND_EMU10K1X=m
    CONFIG_SND_CA0106=m
    CONFIG_SND_KORG1212=m
    CONFIG_SND_MIXART=m
    CONFIG_SND_NM256=m
    CONFIG_SND_RME32=m
    CONFIG_SND_RME96=m
    CONFIG_SND_RME9652=m
    CONFIG_SND_HDSP=m
    CONFIG_SND_TRIDENT=m
    CONFIG_SND_YMFPCI=m
    CONFIG_SND_ALS4000=m
    CONFIG_SND_CMIPCI=m
    CONFIG_SND_ENS1370=m
    CONFIG_SND_ENS1371=m
    CONFIG_SND_ES1938=m
    CONFIG_SND_ES1968=m
    CONFIG_SND_MAESTRO3=m
    CONFIG_SND_FM801=m
    CONFIG_SND_FM801_TEA575X=m
    CONFIG_SND_ICE1712=m
    CONFIG_SND_ICE1724=m
    CONFIG_SND_INTEL8X0=m
    CONFIG_SND_INTEL8X0M=m
    CONFIG_SND_SONICVIBES=m
    CONFIG_SND_VIA82XX=m
    CONFIG_SND_VIA82XX_MODEM=m
    CONFIG_SND_VX222=m
    CONFIG_SND_HDA_INTEL=m
    # USB devices
    CONFIG_SND_USB_AUDIO=m
    CONFIG_SND_USB_USX2Y=m
    # PCMCIA devices
    CONFIG_SND_VXPOCKET=m
    CONFIG_SND_VXP440=m
    CONFIG_SND_PDAUDIOCF=m
    # Open Sound System
    # CONFIG_SOUND_PRIME is not set
    # USB support
    CONFIG_USB_ARCH_HAS_HCD=y
    CONFIG_USB_ARCH_HAS_OHCI=y
    CONFIG_USB=m
    # CONFIG_USB_DEBUG is not set
    # Miscellaneous USB options
    CONFIG_USB_DEVICEFS=y
    CONFIG_USB_BANDWIDTH=y
    CONFIG_USB_DYNAMIC_MINORS=y
    CONFIG_USB_SUSPEND=y
    # CONFIG_USB_OTG is not set
    # USB Host Controller Drivers
    CONFIG_USB_EHCI_HCD=m
    CONFIG_USB_EHCI_SPLIT_ISO=y
    CONFIG_USB_EHCI_ROOT_HUB_TT=y
    CONFIG_USB_OHCI_HCD=m
    # CONFIG_USB_OHCI_BIG_ENDIAN is not set
    CONFIG_USB_OHCI_LITTLE_ENDIAN=y
    CONFIG_USB_UHCI_HCD=m
    CONFIG_USB_SL811_HCD=m
    CONFIG_USB_SL811_CS=m
    # USB Device Class drivers
    CONFIG_USB_AUDIO=m
    # USB Bluetooth TTY can only be used with disabled Bluetooth subsystem
    CONFIG_USB_MIDI=m
    CONFIG_USB_ACM=m
    CONFIG_USB_PRINTER=m
    # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information
    CONFIG_USB_STORAGE=m
    # CONFIG_USB_STORAGE_DEBUG is not set
    CONFIG_USB_STORAGE_DATAFAB=y
    CONFIG_USB_STORAGE_FREECOM=y
    CONFIG_USB_STORAGE_ISD200=y
    CONFIG_USB_STORAGE_DPCM=y
    # CONFIG_USB_STORAGE_USBAT is not set
    CONFIG_USB_STORAGE_SDDR09=y
    CONFIG_USB_STORAGE_SDDR55=y
    CONFIG_USB_STORAGE_JUMPSHOT=y
    # USB Input Devices
    CONFIG_USB_HID=m
    CONFIG_USB_HIDINPUT=y
    CONFIG_HID_FF=y
    CONFIG_HID_PID=y
    CONFIG_LOGITECH_FF=y
    CONFIG_THRUSTMASTER_FF=y
    CONFIG_USB_HIDDEV=y
    # USB HID Boot Protocol drivers
    # CONFIG_USB_KBD is not set
    # CONFIG_USB_MOUSE is not set
    CONFIG_USB_AIPTEK=m
    CONFIG_USB_WACOM=m
    CONFIG_USB_KBTAB=m
    CONFIG_USB_POWERMATE=m
    CONFIG_USB_MTOUCH=m
    CONFIG_USB_EGALAX=m
    CONFIG_USB_XPAD=m
    CONFIG_USB_ATI_REMOTE=m
    # USB Imaging devices
    CONFIG_USB_MDC800=m
    CONFIG_USB_MICROTEK=m
    # USB Multimedia devices
    CONFIG_USB_DABUSB=m
    CONFIG_USB_VICAM=m
    CONFIG_USB_DSBR=m
    CONFIG_USB_IBMCAM=m
    CONFIG_USB_KONICAWC=m
    CONFIG_USB_OV511=m
    CONFIG_USB_SE401=m
    CONFIG_USB_SN9C102=m
    CONFIG_USB_STV680=m
    CONFIG_USB_W9968CF=m
    CONFIG_USB_PWC=m
    # USB Network Adapters
    CONFIG_USB_CATC=m
    CONFIG_USB_KAWETH=m
    CONFIG_USB_PEGASUS=m
    CONFIG_USB_RTL8150=m
    CONFIG_USB_USBNET=m
    # USB Host-to-Host Cables
    CONFIG_USB_ALI_M5632=y
    CONFIG_USB_AN2720=y
    CONFIG_USB_BELKIN=y
    CONFIG_USB_GENESYS=y
    CONFIG_USB_NET1080=y
    CONFIG_USB_PL2301=y
    CONFIG_USB_KC2190=y
    # Intelligent USB Devices/Gadgets
    CONFIG_USB_ARMLINUX=y
    CONFIG_USB_EPSON2888=y
    CONFIG_USB_ZAURUS=y
    CONFIG_USB_CDCETHER=y
    # USB Network Adapters
    CONFIG_USB_AX8817X=y
    CONFIG_USB_ZD1201=m
    CONFIG_USB_MON=m
    # USB port drivers
    CONFIG_USB_USS720=m
    # USB Serial Converter support
    CONFIG_USB_SERIAL=m
    CONFIG_USB_SERIAL_GENERIC=y
    CONFIG_USB_SERIAL_AIRPRIME=m
    CONFIG_USB_SERIAL_BELKIN=m
    CONFIG_USB_SERIAL_WHITEHEAT=m
    CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
    CONFIG_USB_SERIAL_CP2101=m
    CONFIG_USB_SERIAL_CYPRESS_M8=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=m
    CONFIG_USB_SERIAL_GARMIN=m
    CONFIG_USB_SERIAL_IPW=m
    CONFIG_USB_SERIAL_KEYSPAN_PDA=m
    CONFIG_USB_SERIAL_KEYSPAN=m
    CONFIG_USB_SERIAL_KEYSPAN_MPR=y
    CONFIG_USB_SERIAL_KEYSPAN_USA28=y
    CONFIG_USB_SERIAL_KEYSPAN_USA28X=y
    CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y
    CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y
    CONFIG_USB_SERIAL_KEYSPAN_USA19=y
    CONFIG_USB_SERIAL_KEYSPAN_USA18X=y
    CONFIG_USB_SERIAL_KEYSPAN_USA19W=y
    CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y
    CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y
    CONFIG_USB_SERIAL_KEYSPAN_USA49W=y
    CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y
    CONFIG_USB_SERIAL_KLSI=m
    CONFIG_USB_SERIAL_KOBIL_SCT=m
    CONFIG_USB_SERIAL_MCT_U232=m
    CONFIG_USB_SERIAL_PL2303=m
    CONFIG_USB_SERIAL_HP4X=m
    CONFIG_USB_SERIAL_SAFE=m
    CONFIG_USB_SERIAL_SAFE_PADDED=y
    CONFIG_USB_SERIAL_TI=m
    CONFIG_USB_SERIAL_CYBERJACK=m
    CONFIG_USB_SERIAL_XIRCOM=m
    CONFIG_USB_SERIAL_OPTION=m
    CONFIG_USB_SERIAL_OMNINET=m
    CONFIG_USB_EZUSB=y
    # USB Miscellaneous drivers
    CONFIG_USB_EMI62=m
    CONFIG_USB_EMI26=m
    CONFIG_USB_AUERSWALD=m
    CONFIG_USB_RIO500=m
    CONFIG_USB_LEGOTOWER=m
    CONFIG_USB_LCD=m
    CONFIG_USB_LED=m
    CONFIG_USB_CYTHERM=m
    CONFIG_USB_PHIDGETKIT=m
    CONFIG_USB_PHIDGETSERVO=m
    CONFIG_USB_IDMOUSE=m
    CONFIG_USB_SISUSBVGA=m
    CONFIG_USB_TEST=m
    # USB ATM/DSL drivers
    CONFIG_USB_ATM=m
    CONFIG_USB_SPEEDTOUCH=m
    # USB Gadget Support
    CONFIG_USB_GADGET=m
    # CONFIG_USB_GADGET_DEBUG_FILES is not set
    CONFIG_USB_GADGET_NET2280=y
    CONFIG_USB_NET2280=m
    # CONFIG_USB_GADGET_PXA2XX is not set
    # CONFIG_USB_GADGET_GOKU is not set
    # CONFIG_USB_GADGET_LH7A40X is not set
    # CONFIG_USB_GADGET_OMAP is not set
    # CONFIG_USB_GADGET_DUMMY_HCD is not set
    CONFIG_USB_GADGET_DUALSPEED=y
    # CONFIG_USB_ZERO is not set
    CONFIG_USB_ETH=m
    CONFIG_USB_ETH_RNDIS=y
    CONFIG_USB_GADGETFS=m
    CONFIG_USB_FILE_STORAGE=m
    # CONFIG_USB_FILE_STORAGE_TEST is not set
    CONFIG_USB_G_SERIAL=m
    # MMC/SD Card support
    CONFIG_MMC=m
    # CONFIG_MMC_DEBUG is not set
    CONFIG_MMC_BLOCK=m
    CONFIG_MMC_WBSD=m
    # InfiniBand support
    # CONFIG_INFINIBAND 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_REISER4_FS=y
    # CONFIG_REISER4_DEBUG is not set
    CONFIG_REISERFS_FS=y
    # CONFIG_REISERFS_CHECK is not set
    # CONFIG_REISERFS_PROC_INFO is not set
    CONFIG_REISERFS_FS_XATTR=y
    CONFIG_REISERFS_FS_POSIX_ACL=y
    CONFIG_REISERFS_FS_SECURITY=y
    CONFIG_JFS_FS=y
    CONFIG_JFS_POSIX_ACL=y
    # CONFIG_JFS_SECURITY is not set
    # CONFIG_JFS_DEBUG is not set
    # CONFIG_JFS_STATISTICS is not set
    CONFIG_FS_POSIX_ACL=y
    # XFS support
    CONFIG_XFS_FS=y
    CONFIG_XFS_EXPORT=y
    # CONFIG_XFS_RT is not set
    CONFIG_XFS_QUOTA=y
    CONFIG_XFS_SECURITY=y
    CONFIG_XFS_POSIX_ACL=y
    # CONFIG_MINIX_FS is not set
    # CONFIG_ROMFS_FS is not set
    CONFIG_INOTIFY=y
    CONFIG_QUOTA=y
    CONFIG_QFMT_V1=m
    CONFIG_QFMT_V2=m
    CONFIG_QUOTACTL=y
    CONFIG_DNOTIFY=y
    # CONFIG_AUTOFS_FS is not set
    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
    CONFIG_UDF_NLS=y
    # DOS/FAT/NT Filesystems
    CONFIG_FAT_FS=m
    CONFIG_MSDOS_FS=m
    CONFIG_VFAT_FS=m
    CONFIG_FAT_DEFAULT_CODEPAGE=437
    CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
    CONFIG_NTFS_FS=m
    # CONFIG_NTFS_DEBUG is not set
    CONFIG_NTFS_RW=y
    # Pseudo filesystems
    CONFIG_PROC_FS=y
    CONFIG_PROC_KCORE=y
    CONFIG_SYSFS=y
    CONFIG_DEVFS_FS=y
    CONFIG_DEVFS_MOUNT=y
    # CONFIG_DEVFS_DEBUG is not set
    # CONFIG_DEVPTS_FS_XATTR is not set
    CONFIG_TMPFS=y
    # CONFIG_TMPFS_XATTR is not set
    # 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_HFSPLUS_FS is not set
    # CONFIG_BEFS_FS is not set
    # CONFIG_BFS_FS is not set
    # CONFIG_EFS_FS is not set
    # CONFIG_CRAMFS is not set
    # 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=m
    # CONFIG_UFS_FS_WRITE is not set
    # Network File Systems
    CONFIG_NFS_FS=y
    CONFIG_NFS_V3=y
    CONFIG_NFS_V4=y
    # CONFIG_NFS_DIRECTIO is not set
    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=y
    CONFIG_RPCSEC_GSS_KRB5=y
    # CONFIG_RPCSEC_GSS_SPKM3 is not set
    CONFIG_SMB_FS=m
    # CONFIG_SMB_NLS_DEFAULT is not set
    CONFIG_CIFS=m
    # CONFIG_CIFS_STATS is not set
    # CONFIG_CIFS_XATTR is not set
    # CONFIG_CIFS_EXPERIMENTAL is not set
    CONFIG_NCP_FS=m
    # CONFIG_NCPFS_PACKET_SIGNING is not set
    # CONFIG_NCPFS_IOCTL_LOCKING is not set
    # CONFIG_NCPFS_STRONG is not set
    CONFIG_NCPFS_NFS_NS=y
    CONFIG_NCPFS_OS2_NS=y
    CONFIG_NCPFS_SMALLDOS=y
    CONFIG_NCPFS_NLS=y
    # CONFIG_NCPFS_EXTRAS is not set
    CONFIG_CODA_FS=m
    # CONFIG_CODA_FS_OLD_API is not set
    CONFIG_AFS_FS=m
    # CONFIG_SH_FS is not set
    CONFIG_RXRPC=m
    # Partition Types
    # CONFIG_PARTITION_ADVANCED is not set
    CONFIG_MSDOS_PARTITION=y
    # Native Language Support
    CONFIG_NLS=y
    CONFIG_NLS_DEFAULT="iso8859-1"
    CONFIG_NLS_CODEPAGE_437=m
    CONFIG_NLS_CODEPAGE_737=m
    CONFIG_NLS_CODEPAGE_775=m
    CONFIG_NLS_CODEPAGE_850=m
    CONFIG_NLS_CODEPAGE_852=m
    CONFIG_NLS_CODEPAGE_855=m
    CONFIG_NLS_CODEPAGE_857=m
    CONFIG_NLS_CODEPAGE_860=m
    CONFIG_NLS_CODEPAGE_861=m
    CONFIG_NLS_CODEPAGE_862=m
    CONFIG_NLS_CODEPAGE_863=m
    CONFIG_NLS_CODEPAGE_864=m
    CONFIG_NLS_CODEPAGE_865=m
    CONFIG_NLS_CODEPAGE_866=m
    CONFIG_NLS_CODEPAGE_869=m
    CONFIG_NLS_CODEPAGE_936=m
    CONFIG_NLS_CODEPAGE_950=m
    CONFIG_NLS_CODEPAGE_932=m
    CONFIG_NLS_CODEPAGE_949=m
    CONFIG_NLS_CODEPAGE_874=m
    CONFIG_NLS_ISO8859_8=m
    CONFIG_NLS_CODEPAGE_1250=m
    CONFIG_NLS_CODEPAGE_1251=m
    CONFIG_NLS_ASCII=m
    CONFIG_NLS_ISO8859_1=y
    CONFIG_NLS_ISO8859_2=m
    CONFIG_NLS_ISO8859_3=m
    CONFIG_NLS_ISO8859_4=m
    CONFIG_NLS_ISO8859_5=m
    CONFIG_NLS_ISO8859_6=m
    CONFIG_NLS_ISO8859_7=m
    CONFIG_NLS_ISO8859_9=m
    CONFIG_NLS_ISO8859_13=m
    CONFIG_NLS_ISO8859_14=m
    CONFIG_NLS_ISO8859_15=m
    CONFIG_NLS_KOI8_R=m
    CONFIG_NLS_KOI8_U=m
    CONFIG_NLS_UTF8=y
    # Profiling support
    # CONFIG_PROFILING is not set
    # Kernel hacking
    # CONFIG_PRINTK_TIME is not set
    CONFIG_DEBUG_KERNEL=y
    CONFIG_MAGIC_SYSRQ=y
    CONFIG_LOG_BUF_SHIFT=15
    # CONFIG_SCHEDSTATS is not set
    # CONFIG_DEBUG_SLAB is not set
    # CONFIG_DEBUG_PREEMPT is not set
    # CONFIG_DEBUG_SPINLOCK is not set
    # CONFIG_DEBUG_SPINLOCK_SLEEP is not set
    # CONFIG_DEBUG_KOBJECT is not set
    # CONFIG_DEBUG_HIGHMEM is not set
    CONFIG_DEBUG_BUGVERBOSE=y
    # CONFIG_DEBUG_INFO is not set
    # CONFIG_DEBUG_FS is not set
    # CONFIG_FRAME_POINTER is not set
    CONFIG_EARLY_PRINTK=y
    # CONFIG_DEBUG_STACKOVERFLOW is not set
    # CONFIG_KPROBES is not set
    # CONFIG_DEBUG_STACK_USAGE is not set
    # Page alloc debug is incompatible with Software Suspend on i386
    # CONFIG_4KSTACKS is not set
    CONFIG_X86_FIND_SMP_CONFIG=y
    CONFIG_X86_MPPARSE=y
    # Security options
    # CONFIG_KEYS is not set
    CONFIG_SECURITY=y
    # CONFIG_SECURITY_NETWORK is not set
    CONFIG_SECURITY_CAPABILITIES=m
    CONFIG_SECURITY_ROOTPLUG=m
    CONFIG_SECURITY_SECLVL=m
    # CONFIG_SECURITY_REALTIME is not set
    # CONFIG_SECURITY_SELINUX is not set
    # Cryptographic options
    CONFIG_CRYPTO=y
    CONFIG_CRYPTO_HMAC=y
    CONFIG_CRYPTO_NULL=m
    CONFIG_CRYPTO_MD4=m
    CONFIG_CRYPTO_MD5=y
    CONFIG_CRYPTO_SHA1=y
    CONFIG_CRYPTO_SHA256=m
    CONFIG_CRYPTO_SHA512=m
    CONFIG_CRYPTO_WP512=m
    CONFIG_CRYPTO_TGR192=m
    CONFIG_CRYPTO_DES=y
    CONFIG_CRYPTO_BLOWFISH=m
    CONFIG_CRYPTO_TWOFISH=m
    CONFIG_CRYPTO_SERPENT=m
    CONFIG_CRYPTO_AES_586=m
    CONFIG_CRYPTO_CAST5=m
    CONFIG_CRYPTO_CAST6=m
    CONFIG_CRYPTO_TEA=m
    CONFIG_CRYPTO_ARC4=m
    CONFIG_CRYPTO_KHAZAD=m
    CONFIG_CRYPTO_ANUBIS=m
    CONFIG_CRYPTO_DEFLATE=y
    CONFIG_CRYPTO_LZF=y
    CONFIG_CRYPTO_MICHAEL_MIC=m
    CONFIG_CRYPTO_CRC32C=m
    CONFIG_CRYPTO_TEST=m
    # Hardware crypto devices
    CONFIG_CRYPTO_DEV_PADLOCK=m
    CONFIG_CRYPTO_DEV_PADLOCK_AES=y
    # Library routines
    CONFIG_CRC_CCITT=m
    CONFIG_CRC32=y
    CONFIG_LIBCRC32C=m
    CONFIG_ZLIB_INFLATE=y
    CONFIG_ZLIB_DEFLATE=y
    CONFIG_GENERIC_HARDIRQS=y
    CONFIG_GENERIC_IRQ_PROBE=y
    CONFIG_X86_SMP=y
    CONFIG_X86_HT=y
    CONFIG_X86_BIOS_REBOOT=y
    CONFIG_X86_TRAMPOLINE=y
    CONFIG_PC=y
    The build does not finish with an error.
    Any ideas?

    I have successfully build my kernel2612-ati with this PKGBUILD:
    # Contributor: giorgosc61
    pkgname=kernel2612-ati
    pkgver=2.6.12
    pkgrel=2
    pkgdesc="The Linux Kernel 2.6.12 with modules (IDE support),ATI Enabled"
    url="http://www.kernel.org"
    depends=('module-init-tools')
    install=kernel26.install
    ##### add any patch sources to this section
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$pkgver.tar.bz2
            http://www.kernel.org/pub/linux/kernel/ … gver.2.bz2
            config logo_linux_clut224.ppm ndevfs.patch
            #acpi-20050408-2.6.12-rc2.diff.fixup
            http://www.kernel.org/pub/linux/kernel/ … 6-13.patch
            ftp://ftp.kernel.org/pub/linux/kernel/p … 2.diff.bz2
            http://ck.kolivas.org/patches/2.6/2.6.1 … mpat2.diff
            http://gaugusch.at/acpi-dsdt-initrd-pat … 6.9.patch)
    # Function to grab var from src
    getvar() {
    old=$(cat Makefile | grep "^$1")
    echo $(echo ${old/"$1 ="/} | sed -e "s/[ ]*(.*)[ ]*/1/g")
    return 0
    build() {
    cd $startdir/src/linux-$pkgver
    ##### Uncomment and apply any patches here
      patch -Np1 -i ../patch-$pkgver.2 || return 1
      patch -Np1 -i ../ndevfs.patch || return 1
      patch -Np1 -i ../inotify-0.23-rml-2.6.12-rc6-13.patch || return 1
      patch -Np1 -i ../acpi-20050408-2.6.12.diff || return 1
      patch -Np1 -i ../nvidia_6111-6629_compat2.diff || return 1
      patch -Np1 -i ../acpi-dsdt-initrd-patch-v0.7d-2.6.9.patch || return 1
    ##### Arch logo - not compatible with gensplash!
    cp ../logo_linux_clut224.ppm drivers/video/logo/
    # get rid of the 'i' in i686
    carch=`echo $CARCH | sed 's|i||'`
    cat ../config | sed "s|#CARCH#|$carch|g" >./.config
    ##### Load config - uncomment your preferred config method
    yes "" | make config
    #make oldconfig || return 1
    #make menuconfig
    #make xconfig
    #make gconfig
    ##### NO USER CHANGES BELOW HERE #####
    # save the current pkgname
    old_pkgname=$pkgname
    # set pkgname for build purposes - DO NOT alter!
    pkgname=kernel26
    # save the updated config to build with today's date
    cp ./.config $startdir/config-$(date +%b%d-%Hh)
    # get EXTRAVERSION from Makefile to create a unique pkgname and /usr/src directory
    #_kernextra=$(getvar "EXTRAVERSION")
    # grab the 2.6.x.y version suffix from pkgver
    # _y="`echo $pkgver | cut --delim "." --fields 4`"
    # remove .y version suffix from _kernextra
    #_kernextra="`echo $_kernextra | sed "s|.$_y||g"`"
    # Read the full kernel version info from new config to use in pathnames and pkgname
    . ./.config
    # Kernel custom - to create a unique pkgname (see below)
    #_kerncust="${_kernextra}${CONFIG_LOCALVERSION}"
    _kerncust="${CONFIG_LOCALVERSION}"
    # Kernel release - will be the same as Makefile
    _kernrel="${pkgver}${_kerncust}"
    # Get the pkgver suffix for unique pkgname and /boot file suffices
    _pkgversuf="`echo $pkgver | sed "s|2.6.||g" | sed "s|.||g"`"
    # Set /boot file suffices from kernel release and pkgver suffix
    _kernboot="${_pkgversuf}${_kerncust}"
    # Set a new pkgname from kernel release and pkgver suffix
    pkgname="${pkgname}${_pkgversuf}${_kerncust}"
    # build!
    # echo
    # echo -n "Do you want to make clean (default YES)? (YES/NO): "
    # read choice
    # echo
    # echo -n "Press any key to start make or CTRL+C to quit"
    # read anykey
    # if [ "${choice}" = "NO" ] ; then
    # make bzImage modules || return 1
    # else
    make clean bzImage modules || return 1
    # fi
    mkdir -p $startdir/pkg/{lib/modules,boot}
    make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
    cp System.map $startdir/pkg/boot/System.map26${_kernboot}
    cp arch/i386/boot/bzImage $startdir/pkg/boot/vmlinuz26${_kernboot}
    install -D -m644 Makefile
      $startdir/pkg/usr/src/linux-${_kernrel}/Makefile
    install -D -m644 .config
      $startdir/pkg/usr/src/linux-${_kernrel}/.config
    install -D -m644 .config $startdir/pkg/boot/kconfig26${_kernboot}
    mkdir -p $startdir/pkg/usr/src/linux-${_kernrel}/include
    mkdir -p $startdir/pkg/usr/src/linux-${_kernrel}/arch/i386/kernel
    for i in acpi asm-generic asm-i386 config linux math-emu net pcmcia scsi video; do
      cp -a include/$i $startdir/pkg/usr/src/linux-${_kernrel}/include/
    done
    # copy files necessary for later builds, like nvidia and vmware
    cp Module.symvers $startdir/pkg/usr/src/linux-${_kernrel}
    cp -a scripts $startdir/pkg/usr/src/linux-${_kernrel}
    mkdir -p $startdir/pkg/usr/src/linux-${_kernrel}/.tmp_versions
    cp arch/i386/Makefile $startdir/pkg/usr/src/linux-${_kernrel}/arch/i386/
    cp arch/i386/kernel/asm-offsets.s
      $startdir/pkg/usr/src/linux-${_kernrel}/arch/i386/kernel/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
      mkdir -p $startdir/pkg/usr/src/linux-${_kernrel}/`echo $i | sed 's|/Kconfig.*||'`
      cp $i $startdir/pkg/usr/src/linux-${_kernrel}/$i
    done
    cd $startdir/pkg/usr/src/linux-${_kernrel}/include && ln -s asm-i386 asm
    chown -R root.root $startdir/pkg/usr/src/linux-${_kernrel}
    cd $startdir/pkg/lib/modules/${_kernrel} &&
      (rm -f source build; ln -sf /usr/src/linux-${_kernrel} build)
    # Correct the pkgname in our PKGBUILD - this allows correct gensync operation
    # NOTE: pkgname variable must be declared with first 10 lines of PKGBUILD!
    cd $startdir
    sed -i "1,11 s|pkgname=$old_pkgname|pkgname=$pkgname|" ./PKGBUILD
    md5sums=('c5d2a1b62e1dad502c871bba267337d5' '3a4225e9dff9d6d03da41327e972f161'
             '2548307be940987c23545c7a65188b5f' '5a62bcc7e96601052c7405459b483826'
             '0ea10324c7e9a78e6633dc8c784e8deb' '39e751f6c4eaeb2bde1e78c0e9e9d7a9'
             '597f8944cf6a65c41373e952e8f46a56' '82488604906bbba37a412c78d7b5c5f0'
             '977bc6069e122e5f07b0311e094b5733')
    In this kernel I have made the modifications for ati-drivers in the kernel26 config as shown in the wiki. I used the PKGBUILD from the wiki for custom kernels.
    I installed it and now I am posting from it.
    I downloaded the ati-drivers-5 PKGBUILD to build my ati drivers.In the PKGBUILD I used
    _kernel=2.6.12-ati
    When I makepkg I get:
    [root@myhost ati-drivers]# makepkg -f
    ==> Making package: ati-drivers 8.14.13-5 (Mon Jul 25 19:40:59 UTC 2005)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    ==>     Using local copy of fglrx_6_8_0-8.14.13-1.i386.rpm
    ==>     Using local copy of fglrx-2.6-agpgart.patch
    ==>     Using local copy of fglrx-2.6.12-inter_module_get.patch
    ==>     Using local copy of fglrx-2.6.12-new-agpgart.patch
    ==>     Found fireglcontrol.desktop in build dir
    ==> Validating source files with MD5sums
        fglrx_6_8_0-8.14.13-1.i386.rpm ... Passed
        fglrx-2.6-agpgart.patch ... Passed
        fglrx-2.6.12-inter_module_get.patch ... Passed
        fglrx-2.6.12-new-agpgart.patch ... Passed
        fireglcontrol.desktop ... Passed
    ==> Extracting Sources...
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    ./lib/modules/fglrx/build_mod/2.6.x/Makefile
    ./lib/modules/fglrx/build_mod/agp.h
    ./lib/modules/fglrx/build_mod/agp3.c
    ./lib/modules/fglrx/build_mod/agp_backend.h
    ./lib/modules/fglrx/build_mod/agpgart.h
    ./lib/modules/fglrx/build_mod/agpgart_be.c
    ./lib/modules/fglrx/build_mod/drm.h
    ./lib/modules/fglrx/build_mod/drmP.h
    ./lib/modules/fglrx/build_mod/drm_compat.h
    ./lib/modules/fglrx/build_mod/drm_os_linux.h
    ./lib/modules/fglrx/build_mod/drm_proc.h
    ./lib/modules/fglrx/build_mod/firegl_public.c
    ./lib/modules/fglrx/build_mod/firegl_public.h
    ./lib/modules/fglrx/build_mod/i7505-agp.c
    ./lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC2
    ./lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC3
    ./lib/modules/fglrx/build_mod/make.sh
    ./lib/modules/fglrx/build_mod/nvidia-agp.c
    ./lib/modules/fglrx/make_install.sh
    ./opt/kde3/share/applnk/fireglcontrol_kde3.desktop
    ./usr/X11R6/bin/fgl_glxgears
    ./usr/X11R6/bin/fglrx_xgamma
    ./usr/X11R6/bin/fglrxconfig
    ./usr/X11R6/bin/fglrxinfo
    ./usr/X11R6/bin/fireglcontrolpanel
    ./usr/X11R6/include/X11/extensions/fglrx_gamma.h
    ./usr/X11R6/lib/libGL.so.1.2
    ./usr/X11R6/lib/libfglrx_gamma.a
    ./usr/X11R6/lib/libfglrx_gamma.so.1.0
    ./usr/X11R6/lib/modules/dri/atiogl_a_dri.so
    ./usr/X11R6/lib/modules/dri/fglrx_dri.so
    ./usr/X11R6/lib/modules/drivers/fglrx_drv.o
    ./usr/X11R6/lib/modules/linux/libfglrxdrm.a
    ./usr/include/GL/glxATI.h
    ./usr/share/applnk/fireglcontrol.kdelnk
    ./usr/share/doc/fglrx/ATI_LICENSE.TXT
    ./usr/share/doc/fglrx/LICENSE.GPL
    ./usr/share/doc/fglrx/LICENSE.QPL
    ./usr/share/doc/fglrx/articles/1gbhang.html
    ./usr/share/doc/fglrx/articles/4461.html
    ./usr/share/doc/fglrx/articles/4462.html
    ./usr/share/doc/fglrx/articles/4463.html
    ./usr/share/doc/fglrx/articles/4464.html
    ./usr/share/doc/fglrx/articles/4469.html
    ./usr/share/doc/fglrx/articles/4470.html
    ./usr/share/doc/fglrx/articles/4475.html
    ./usr/share/doc/fglrx/articles/4478.html
    ./usr/share/doc/fglrx/articles/4479.html
    ./usr/share/doc/fglrx/articles/4480.html
    ./usr/share/doc/fglrx/articles/4481.html
    ./usr/share/doc/fglrx/articles/4482.html
    ./usr/share/doc/fglrx/articles/4483.html
    ./usr/share/doc/fglrx/articles/4484.html
    ./usr/share/doc/fglrx/articles/4485.html
    ./usr/share/doc/fglrx/articles/corruptstereo.html
    ./usr/share/doc/fglrx/articles/corruptvtswitch.html
    ./usr/share/doc/fglrx/articles/devshm.html
    ./usr/share/doc/fglrx/articles/dga3dhang.html
    ./usr/share/doc/fglrx/articles/doom3corrupt.html
    ./usr/share/doc/fglrx/articles/dualheadvideo.html
    ./usr/share/doc/fglrx/articles/laptopsuspend.html
    ./usr/share/doc/fglrx/articles/missingdrmheaders.html
    ./usr/share/doc/fglrx/articles/mousecursorhang.html
    ./usr/share/doc/fglrx/articles/no3d-aiw8500dv.html
    ./usr/share/doc/fglrx/articles/no3d-kt400.html
    ./usr/share/doc/fglrx/articles/nomembercount.html
    ./usr/share/doc/fglrx/articles/pcie3dmemoryleak.html
    ./usr/share/doc/fglrx/articles/r420blankdisplay.html
    ./usr/share/doc/fglrx/articles/rv280dviblankdisplay.html
    ./usr/share/doc/fglrx/articles/rv350springdale.html
    ./usr/share/doc/fglrx/articles/secondheadcorruption.html
    ./usr/share/doc/fglrx/articles/xf86_enodev.html
    ./usr/share/doc/fglrx/articles/xrestartpcie.html
    ./usr/share/doc/fglrx/articles/xvsatshift.html
    ./usr/share/doc/fglrx/driverfaq.html
    ./usr/share/doc/fglrx/index.html
    ./usr/share/doc/fglrx/issues.html
    ./usr/share/doc/fglrx/linuxfaq.html
    ./usr/share/doc/fglrx/release-notes/images/backgrnd.gif
    ./usr/share/doc/fglrx/release-notes/images/caution.gif
    ./usr/share/doc/fglrx/release-notes/images/clipbrd.gif
    ./usr/share/doc/fglrx/release-notes/images/noboarder.gif
    ./usr/share/doc/fglrx/release-notes/index.html
    ./usr/share/doc/fglrx/tips-linux.html
    ./usr/share/doc/fglrx/user-manual/index.html
    ./usr/share/gnome/apps/fireglcontrol.desktop
    ./usr/share/icons/ati.xpm
    ./usr/src/ATI/fglrx_panel_sources.tgz
    ./usr/src/ATI/fglrx_sample_source.tgz
    50672 blocks
    patching file firegl_public.c
    Hunk #1 succeeded at 340 (offset -1 lines).
    patching file firegl_public.c
    Hunk #1 succeeded at 997 (offset -5 lines).
    Hunk #3 succeeded at 2940 (offset -5 lines).
    patching file agpgart_be.c
    Hunk #1 succeeded at 7067 (offset -14 lines).
    Hunk #3 succeeded at 7153 (offset -14 lines).
    Hunk #5 succeeded at 7204 (offset -14 lines).
    make: Entering directory `/usr/src/linux-2.6.12-ati'
      CC [M]  /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/agpgart_be.o
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/agpgart_be.c: In function `__fgl_agp_init':
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/agpgart_be.c:7613: warning: `pm_register' is deprecated (declared at include/linux/pm.h:106)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/agpgart_be.c: In function `__fgl_agp_cleanup':
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/agpgart_be.c:7623: warning: `pm_unregister_all' is deprecated (declared at include/linux/pm.h:116)
      CC [M]  /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.o
    In file included from /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:125:
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.h:56:48: warning: backslash and newline separated by space
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.h:57:6: warning: backslash and newline separated by space
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.h:58:41: warning: backslash and newline separated by space
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c: In function `firegl_stub_putminor':
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:508: warning: `inter_module_put' is deprecated (declared at include/linux/module.h:568)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:510: warning: `inter_module_unregister' is deprecated (declared at include/linux/module.h:565)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c: In function `firegl_stub_register':
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:530: warning: `inter_module_register' is deprecated (declared at include/linux/module.h:564)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:561: warning: `inter_module_put' is deprecated (declared at include/linux/module.h:568)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c: In function `__ke_verify_area':
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:1446: warning: `verify_area' is deprecated (declared at include/asm/uaccess.h:105)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c: At top level:
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:2655: warning: initialization from incompatible pointer type
      LD [M]  /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/fglrx.o
      Building modules, stage 2.
      MODPOST
    Warning: could not find /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/.libfglrx_ip.a.GCC3.cmd for /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC3
      LD [M]  /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/fglrx.ko
    make: Leaving directory `/usr/src/linux-2.6.12-ati'
    ==> Compressing man pages...
    ==> Stripping debugging symbols from libraries...
    ==> Stripping symbols from binaries...
    ==> Generating .PKGINFO file...
    ==> Copying install script...
    ==> Generating .FILELIST file...
    ==> Compressing package...
    ==> Finished making: ati-drivers  (Mon Jul 25 19:41:25 UTC 2005)
    modprobe fglrx says fglrx not found.
    What exactly could be the problem?

  • Need help building boost_1_37_0 on Solaris 10 U6 with Sun Studio 12

    Hi,
    Ok, please bear with me here. I've tried many different sets of instructions, and haven't had success with any of them (including the ones at http://blogs.sun.com/sga/category/Boost).
    Operating System: Solaris 10 x86 U6
    Compiler: Sun Studio 12 (SUNCC version 5.9)
    Boost version: 1.37.0
    The ONLY part of boost that I need is regex. I've never built external libraries before and building boost on Solaris seems a rather daunting task. So, could someone please explain, as clearly as possible, how do I build the boost::regex library using SUNCC?
    I know this is a very broad topic, but since I haven't had any luck with any existing instructions that google turns up, alas I am here.
    Thanks in advance if someone can help me,
    ~Slow
    Note: I don't need any special options, any special, non-standard install paths, nothing. Just a straight, stock, boost install.
    Edited by: SlowToady on Nov 10, 2008 2:18 PM

    First, be sure you have the current patches for Sun Studio 12. You can get them here:
    http://developers.sun.com/sunstudio/downloads/patches/
    Please install the current C++ compiler patch, the C compiler patch, and the common back-end compiler patch.
    You should then be able to build BOOST 1.37.0. The only problem I know of has been filed as CR 6767881, which results in an incorrect complaint about a constructor not being accessible. But I don't think that one affects regex.
    If you running into some other problem after patching the compiler, please post enough detail that we can investigate it.
    Questions about how to build just a portion of BOOST are probably best addressed to a BOOST forum.

  • Building Shared Libraries: Python Extension Using C++ and SWIG

    I am working through the tutorial examples from http://www.swig.org/ and have run into some problems. I took the following command instructions from the tutorial on swig.org:
    http://www.swig.org/tutorial.html
    I have written example.c and example.i as described in the above tutorial. My first attempt at compiling the libraries was this:
    swig -python example.i
    gcc -c example.c example_wrap.c \
    -I /System/Library/Frameworks/Python.framework/Versions/Current/Headers
    ld -shared example.o example_wrap.o -o _example.so
    this last command fails with the following error:
    ld: unknown option: -shared
    Any help?

    Hi, newbie73
    I'm also running into trouble with manually linking and creating .so objects using swig.
    The good news is, for python there's a shortcut, using the distutils module. Using the example.c and example.i codes from the tutorial, make a python script called 'setup.py':
    <pre>
    from distutils.core import setup, Extension
    setup(name='example',
    version='1.0',
    ext_modules = [
    Extension('example', ['example.c','example.i'] )
    </pre>
    edit: The discussion markup is messing up this code snippet: line 5 should read:
    Extension('example', LEFT BRACKET 'example.c' , 'example.i' ] )
    Then run:
    python setup.py build_ext
    Python will do the compiling and linking for you, and create an example.so file inside a new 'build' directory. To use the .so file, move or rename this file to _example.so in your $PYTHONPATH.
    (By the way, I found this information in the excellent textbook Beginning Python by M. Hetland)
    I hope that helps!
    Caleb
    Message was edited by: Caleb Mattoon

  • Using buildclient to build static libraries under Windows

    Hi All,
    I have been trying to use buildclient to build a static library
    but in vain. When i run the following command on the command line
    "buildclient -w -v -o GenSvcWrapper.lib -f GenSvcWrapper.cpp" ,
    i get the error (LINK : fatal error LNK1561: entry point must be
    defined), which i guess is asking for a main() in the program.
    I tried using the VC++ IDE to build the library, now i am able
    to build the library but the call to tpinit() fails.
    My conclusion is that buildclient can be used only to build
    exe's. Am i wrong in my conclusion? If not how do I build
    libraries using buildclient or VC++ IDE? What i want is to wrap
    Tuxedo ATMI calls like (tpinit() and tpcall()) and provide it as
    a library.
    Please help me out in this problem. I have pasted the build
    output below.
    Thanks,
    Santhosh
    Build Output <<<<<<<<<<<<<<<<<<<<<<<<<<<<<E:\Code\VC\GenSvcWrapper>buildclient -w -v -o GenSvcWrapper.lib -f
    GenSvcWrapper
    .cpp
    cl /MD -I"%TUXDIR%"\include -FeGenSvcWrapper.lib GenSvcWrapper.cpp
    "%TUXDIR%
    "\lib\libwsc.lib "%TUXDIR%"\lib\libbuft.lib "%TUXDIR%"\lib\libfml.lib
    "%TUXDIR
    %"\lib\libfml32.lib "%TUXDIR%"\lib\libengine.lib wsock32.lib kernel32.lib
    advap
    i32.lib user32.lib gdi32.lib comdlg32.lib
    winspool.lib -link -implib:BC-7b0.li
    b
    Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for 80x86
    Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
    GenSvcWrapper.cpp
    Will automatically link with libbuft.lib
    Will automatically link with libwsc.lib
    Will automatically link with libengine.lib
    Will automatically link with libfml.lib
    Will automatically link with libfml32.lib
    Microsoft (R) Incremental Linker Version 6.00.8447
    Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
    /out:GenSvcWrapper.lib
    -implib:BC-7b0.lib
    GenSvcWrapper.obj
    "E:\Program Files\bea\tuxedo8.0\lib\libwsc.lib"
    "E:\Program Files\bea\tuxedo8.0\lib\libbuft.lib"
    "E:\Program Files\bea\tuxedo8.0\lib\libfml.lib"
    "E:\Program Files\bea\tuxedo8.0\lib\libfml32.lib"
    "E:\Program Files\bea\tuxedo8.0\lib\libengine.lib"
    wsock32.lib
    kernel32.lib
    advapi32.lib
    user32.lib
    gdi32.lib
    comdlg32.lib
    winspool.lib
    LINK : fatal error LNK1561: entry point must be defined
    TUXNT_CAT:77: ERROR: Can't execute cl
    /MD -I"%TUXDIR%"\include -FeGenSvcWrapper
    .lib GenSvcWrapper.cpp "%TUXDIR%"\lib\libwsc.lib
    "%TUXDIR%"\lib\libbuft.lib
    "%TUXDIR%"\lib\libfml.lib "%TUXDIR%"\lib\libfml32.lib
    "%TUXDIR%"\lib\libengine.
    lib wsock32.lib kernel32.lib advapi32.lib user32.lib gdi32.lib comdlg32.lib
    win
    spool.lib -link -implib:BC-7b0.lib

    You can build libraries using buildclient by working out the VC++ command line
    argument used to build a static library and passing that in the -f option of buildclient.
    There's no real point in using buildclient to build a tuxedo client because the
    only thing it does for you is specify the tuxedo libraries that get linked into
    the exe or lib that you are creating, and complain if you don't have a valid SDK
    license. I just specify the tuxedo libraries myself to VC++ and completely forget
    about using buildclient. The only thing to keep in mind is to make sure you are
    using the correct tuxedo libraries for a native or workstation tuxedo client (pretty
    much libtux.lib for native and libwsc.lib for a workstation client followed by
    the other tuxedo libraries you need, libbuft.lib libfml.lib libfml32.lib libengine.lib
    etc. ).
    "Santhosh" <[email protected]> wrote:
    >
    Hi All,
    I have been trying to use buildclient to build a static library
    but in vain. When i run the following command on the command line
    "buildclient -w -v -o GenSvcWrapper.lib -f GenSvcWrapper.cpp" ,
    i get the error (LINK : fatal error LNK1561: entry point must be
    defined), which i guess is asking for a main() in the program.
    I tried using the VC++ IDE to build the library, now i am able
    to build the library but the call to tpinit() fails.
    My conclusion is that buildclient can be used only to build
    exe's. Am i wrong in my conclusion? If not how do I build
    libraries using buildclient or VC++ IDE? What i want is to wrap
    Tuxedo ATMI calls like (tpinit() and tpcall()) and provide it as
    a library.
    Please help me out in this problem. I have pasted the build
    output below.
    Thanks,
    Santhosh
    Build Output <<<<<<<<<<<<<<<<<<<<<<<<<<<<<E:\Code\VC\GenSvcWrapper>buildclient -w -v -o GenSvcWrapper.lib -f
    GenSvcWrapper
    .cpp
    cl /MD -I"%TUXDIR%"\include -FeGenSvcWrapper.lib GenSvcWrapper.cpp
    "%TUXDIR%
    "\lib\libwsc.lib "%TUXDIR%"\lib\libbuft.lib "%TUXDIR%"\lib\libfml.lib
    "%TUXDIR
    %"\lib\libfml32.lib "%TUXDIR%"\lib\libengine.lib wsock32.lib kernel32.lib
    advap
    i32.lib user32.lib gdi32.lib comdlg32.lib
    winspool.lib -link -implib:BC-7b0.li
    b
    Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for
    80x86
    Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
    GenSvcWrapper.cpp
    Will automatically link with libbuft.lib
    Will automatically link with libwsc.lib
    Will automatically link with libengine.lib
    Will automatically link with libfml.lib
    Will automatically link with libfml32.lib
    Microsoft (R) Incremental Linker Version 6.00.8447
    Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
    /out:GenSvcWrapper.lib
    -implib:BC-7b0.lib
    GenSvcWrapper.obj
    "E:\Program Files\bea\tuxedo8.0\lib\libwsc.lib"
    "E:\Program Files\bea\tuxedo8.0\lib\libbuft.lib"
    "E:\Program Files\bea\tuxedo8.0\lib\libfml.lib"
    "E:\Program Files\bea\tuxedo8.0\lib\libfml32.lib"
    "E:\Program Files\bea\tuxedo8.0\lib\libengine.lib"
    wsock32.lib
    kernel32.lib
    advapi32.lib
    user32.lib
    gdi32.lib
    comdlg32.lib
    winspool.lib
    LINK : fatal error LNK1561: entry point must be defined
    TUXNT_CAT:77: ERROR: Can't execute cl
    /MD -I"%TUXDIR%"\include -FeGenSvcWrapper
    .lib GenSvcWrapper.cpp "%TUXDIR%"\lib\libwsc.lib
    "%TUXDIR%"\lib\libbuft.lib
    "%TUXDIR%"\lib\libfml.lib "%TUXDIR%"\lib\libfml32.lib
    "%TUXDIR%"\lib\libengine.
    lib wsock32.lib kernel32.lib advapi32.lib user32.lib gdi32.lib comdlg32.lib
    win
    spool.lib -link -implib:BC-7b0.lib

  • Help with Shared Libraries?

    I don't have a "Look for Shared Libraries" under Preferences >  Sharing (which the other two computers in my home do have), all I have is the  "Shared Libraries" under Preferences > General > Sources (which  this is checked).  I have uninstalled iTunes and then installed it again, this did not work.  The other two computers in my home are running off of Windows XP, but the trouble computer is running off of Windows Vista.  Not sure if this could be the problem. Please help.

    krysto wrote:Yes, I have used pacman before to install software, but what if I want to contribute to the development of a project?
    Usually when you are developing software you don't install the package every time you compile it. You just make sure that you can run it from the location where you compiled it. That way you can keep the latest stable version that you can use for leisure time and the development version for testing. Also for contributing to a project you should directly interact with the project's repository (svn, git, ...). So I refer back to my first post here where the PKGBUILD can give you an idea how to go about compiling the source code yourself.
    Just don't run "make install" because that will leave your system in a messy state, a simple "make" (with the proper configuration) should result in a locally build binary that you can run from where it was compiled.

  • HELP IN JNI (1.4) : how to get informations from a jclass pointer ?

    Hi,
    I am integrating a JVM inside an already built product in C and Objective C. I need to build hash tables of jclass pointers. The problem is :
    On two different JNI interactions, when for instance you ask for the jclass pointer of "java/lang/String", you get different pointers. So I cannot built a hash key based on the jclass value. Only
    (*env)->IsSameObject(env,jclass1,jclass2) can help to recognize that those pointers points to the same java class.
    So it would be usefull for me to grab (efficiently) a stable information, such as the name of the class, to build a hash key from.
    Anybody could tell me how can I do this ?
    Thanks in advance,
    Regards,
    C.Dore

    Yes, sorry, realized that myself and actually thought I would have posted the correct solution but I guess I forgot about it. Here it is:
    import java.util.Hashtable;
    public final class Test {
        static { System.loadLibrary("test"); }
        private static native Hashtable  makeHash();
        public static void main(String[] args) {
         Hashtable  h = makeHash();
         h.put("ba", "ba");
         System.out.println(h);
        } // main(String[])
    // NATIVE portion:
    #include <jni.h>
    /* Header for class Test */
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class:     Test
    * Method:    makeHash
    * Signature: ()Ljava/util/Hashtable;
      JNIEXPORT jobject JNICALL Java_Test_makeHash(JNIEnv *env, jclass klass) {
        jclass    hashClass  = (*env)->FindClass(env, "java/util/Hashtable");
        jmethodID hashConstr = (*env)->GetMethodID(env, hashClass, "<init>", "()V");
        jobject   hash       = (*env)->NewObject(env, hashClass, hashConstr);
        return  hash;
    #ifdef __cplusplus
    #endif

  • Need help for JNI

    Hi,
    im new to JNI. I would like help on how to set up the shared library.
    how am i to do it......i followed the tutorial but could not manage to do it.
    plz help me out .
    On Microsoft Windows, the following command builds a dynamic link library hello.dll using Microsoft Visual C++ 4.0:
    cl -Ic:\java\include -Ic:\java\include\win32
    -LD HelloWorldImp.c -Fehello.dll
    This is only given for MS C++4.0, how bout for dos prompt or Jcreator. I hope i get the solutions asap because i already post this topic in the JNI forum and no one replied.thanks for ur kind help.

    So you crossposted, did NOT provide a link to the other thread, and you want the solution asap (an abbreviation that makes it sound almost like an order to me, which I don't like at all)...
    1) I doubt you can compile C code in JCreator. If so, RTFM.
    2) How to create a DLL is no Java problem. Ask at a C/C++ forum.

  • Cry for help: build 9926 windows update errors: 0x80240438 0x80244019

    lately  I'm stuck with build 9926
    when I check for updates it works,  and it even downloads some updates according to the logs
    but, that's about it ,  it's not updating anything.
    tried all the solutions on the internet
    I synced with the appstore. 
    but noting...
    microsoft... are you ready to do a webex with me ? and solve this ?
    here is some of the logfile from file:  
    "C:\Windows\SoftwareDistribution\ReportingEvents.log"
    {EE67F390-701B-4854-A8CC-4CEB3286A7DF} 2015-03-18 23:40:05:911+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 80240438
    TrustedInstaller MCR Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80240438.
    {55A19B50-6899-44B2-9F0F-FFE14B3FE27B} 2015-03-18 23:44:25:732+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 80240438
    Dynamic Update Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80240438.
    {899A21E6-D8DE-4155-8963-AFE8080BDD9F} 2015-03-18 23:44:59:195+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 80240438
    Dynamic Update Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80240438.
    {DCDC8F70-8099-4FA4-97E7-43C36F5368D1} 2015-03-18 23:45:10:107+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 80240438
    Dynamic Update Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80240438.
    {C64C44D7-F35C-4DF7-9E6C-C19400AEC88E} 2015-03-18 23:50:53:941+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 80240438
    UpdateOrchestrator Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80240438.
    {C702CE4C-F06D-483D-8499-EC01C5E94E81} 2015-03-18 23:53:58:191+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 80240438
    UpdateOrchestrator Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80240438.
    {8BF69B20-4AB5-48CB-ADA6-51D0A307322C} 2015-03-19 00:03:46:225+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 8024402c
    AutomaticUpdates Failure
    Software Synchronization Windows Update Client failed to detect with error 0x8024402c.
    {F93F393E-47E3-439D-BF2F-C626FCF78949} 2015-03-19 00:03:50:023+0200
    1 147 [AGENT_DETECTION_FINISHED]
    101 {00000000-0000-0000-0000-000000000000}
    0 0
    AutomaticUpdates Success
    Software Synchronization Windows Update Client successfully detected 3 updates.
    {69438178-7069-4792-AF02-FF50A2BF11AA} 2015-03-19 00:04:37:647+0200
    1 147 [AGENT_DETECTION_FINISHED]
    101 {00000000-0000-0000-0000-000000000000}
    0 0
    AutomaticUpdates Success
    Software Synchronization Windows Update Client successfully detected 2 updates.
    {3DED2228-2046-4A39-B839-C7BE632FFAFD} 2015-03-19 00:04:45:278+0200
    1 147 [AGENT_DETECTION_FINISHED]
    101 {00000000-0000-0000-0000-000000000000}
    0 0
    AutomaticUpdates Success
    Software Synchronization Windows Update Client successfully detected 3 updates.
    {CC0DB0F0-4C4E-4EE2-B7EA-787E20F95959} 2015-03-19 00:04:51:481+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 8024402c
    AutomaticUpdates Failure
    Software Synchronization Windows Update Client failed to detect with error 0x8024402c.
    {BD00D6ED-7C99-4C1A-9855-4346D46A13AA} 2015-03-19 00:05:10:166+0200
    1 189 [AU_UNSCHEDULED_INSTALL_READY]
    102 {00000000-0000-0000-0000-000000000000}
    0 0
    AutomaticUpdates Success
    Content Install Installation Ready: The following updates are downloaded and ready for installation. To install the updates, an administrator should log on to this computer and Windows will prompt with further instructions:
     - drm
    {00658682-7DDF-43E8-8AD6-689A50ACD0F8} 2015-03-19 00:05:18:847+0200
    1 189 [AU_UNSCHEDULED_INSTALL_READY]
    102 {00000000-0000-0000-0000-000000000000}
    0 0
    AutomaticUpdates Success
    Content Install Installation Ready: The following updates are downloaded and ready for installation. To install the updates, an administrator should log on to this computer and Windows will prompt with further instructions:
     - drm - VCLibs 12 Preview
    {6A05284D-27F5-4EA9-A615-810C190A2F86} 2015-03-19 00:05:24:980+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {E0711B88-4FC2-40C1-BB02-AD541708D409} 2015-03-19 00:05:25:207+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {26C87A3C-85C1-4A34-9F96-E80EFEA8E6CD} 2015-03-19 00:05:27:826+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {0AB1F0C6-7EFE-4227-BE72-4B63683A71FA} 2015-03-19 00:05:28:032+0200
    1 167 [AGENT_DOWNLOAD_STARTED]
    101 {EC7D0E7D-BB3F-4674-AF02-A32293A19F5F}
    1 0
    AutomaticUpdates Success
    Content Download Download started.
    {4064BECB-FDF4-4160-83DA-62766D7101F9} 2015-03-19 00:05:28:103+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {935F6118-7E74-4E24-BE48-50980031F8E9} 2015-03-19 00:05:28:295+0200
    1 167 [AGENT_DOWNLOAD_STARTED]
    101 {BFFF18AE-83DC-4661-BE5A-ABDD585A5157}
    1 0
    AutomaticUpdates Success
    Content Download Download started.
    {625A9F42-B81F-4B15-981D-4109C303AB01} 2015-03-19 00:05:28:357+0200
    1 162 [AGENT_DOWNLOAD_SUCCEEDED]
    101 {D6ABD84B-D769-46D2-BDB9-E942DA9F8CEB}
    1 0
    AutomaticUpdates Success
    Content Download Download succeeded.
    {8DECCDE7-A741-49A7-92ED-908018BF48E7} 2015-03-19 00:05:28:358+0200
    1 162 [AGENT_DOWNLOAD_SUCCEEDED]
    101 {2E895204-66E8-482D-8184-AFE29C3DD719}
    1 0
    AutomaticUpdates Success
    Content Download Download succeeded.
    {299D3FF5-72FD-4EC2-A27D-96C380FFB06A} 2015-03-19 00:05:49:013+0200
    1 147 [AGENT_DETECTION_FINISHED]
    101 {00000000-0000-0000-0000-000000000000}
    0 0
    AutomaticUpdates Success
    Software Synchronization Windows Update Client successfully detected 2 updates.
    {7EF8F36D-1B21-4D24-8E8C-80CAE968CC93} 2015-03-19 00:05:57:589+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {0CE20454-71A9-4CEF-93DA-AA853AEB9A03} 2015-03-19 00:05:57:835+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {9D08DD20-16D7-46BD-8C6B-BAE6E37FF66B} 2015-03-19 00:05:58:370+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {46C47722-09F0-40CA-B50C-C4529D3AE438} 2015-03-19 00:05:58:450+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {18E7A41D-60A7-4CEF-A82A-0092B5CCF63C} 2015-03-19 00:06:00:686+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {744A5A7F-EB06-4319-8FB8-06138823A23F} 2015-03-19 00:06:00:906+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {B3AEF57C-0FBD-4B03-B225-E4A0166AA47E} 2015-03-19 00:06:01:027+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {FE3EC6F7-99D1-436C-8492-9E7EFA9479CF} 2015-03-19 00:06:01:331+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {42829509-DFC5-4ADE-A8E6-325F7DD8D99A} 2015-03-19 00:06:11:955+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {830D44A1-4B7F-4C10-B3A3-7D2099515618} 2015-03-19 00:06:12:277+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {23364FAC-813D-48A9-BED0-9BEF7CCF1388} 2015-03-19 00:06:12:371+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {FC526749-C1A3-4703-BE92-9F26EB13B573} 2015-03-19 00:06:14:250+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {1AF3930D-A9F7-4641-9ECB-1CE140B41B90} 2015-03-19 00:06:14:405+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {E878B745-E246-4BB6-86FE-B7CA17B1D4AD} 2015-03-19 00:06:14:516+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {5115A0BD-FB49-4F57-9479-58EC8B2413E5} 2015-03-19 00:06:14:715+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {202870B5-4F10-485E-B721-BC00D09BA551} 2015-03-19 00:06:16:011+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {CE50F467-6671-46EE-AFB1-3D131A43DE70} 2015-03-19 00:06:16:340+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {06207896-59E0-4D98-885D-EE68B5E8AAF9} 2015-03-19 00:06:16:447+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {78E23EED-D6BF-4F66-90DF-3684163A980C} 2015-03-19 00:06:16:697+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {4ABC18A2-72D0-4008-9ADC-269C9BD827C8} 2015-03-19 00:06:16:897+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {DF095BC0-4C61-4A67-9946-751BC8CB9652} 2015-03-19 00:06:17:097+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {04BAFD9F-41A4-40D7-A42B-1C9A6C8EB418} 2015-03-19 00:06:17:330+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {0CBCEE49-AACA-4FEA-A98B-7D85D15B0BAE} 2015-03-19 00:06:17:546+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {D9E189B6-613A-4D9B-A835-243906C45C27} 2015-03-19 00:06:17:931+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {B25B5435-DA55-4F98-B129-1796058051FC} 2015-03-19 00:06:38:092+0200
    1 189 [AU_UNSCHEDULED_INSTALL_READY]
    102 {00000000-0000-0000-0000-000000000000}
    0 0
    AutomaticUpdates Success
    Content Install Installation Ready: The following updates are downloaded and ready for installation. To install the updates, an administrator should log on to this computer and Windows will prompt with further instructions:
     - Microsoft.Reader
    {7FC04992-3A7E-4895-8080-992629F54256} 2015-03-19 00:06:38:092+0200
    1 189 [AU_UNSCHEDULED_INSTALL_READY]
    102 {00000000-0000-0000-0000-000000000000}
    0 0
    AutomaticUpdates Success
    Content Install Installation Ready: The following updates are downloaded and ready for installation. To install the updates, an administrator should log on to this computer and Windows will prompt with further instructions:
     - drm - VCLibs 12 Preview
    {3B2FD168-7585-42B7-942C-181651EF2842} 2015-03-19 00:06:38:109+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {31A13FC3-4EE4-4F76-BFCE-D723C6DFCAEF} 2015-03-19 00:06:38:294+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {1C05D134-7228-428C-870F-677D793F4CB4} 2015-03-19 00:06:38:490+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {BDD87834-5281-4427-9E2C-ED8C3C17C3C6} 2015-03-19 00:06:38:516+0200
    1 162 [AGENT_DOWNLOAD_SUCCEEDED]
    101 {EC7D0E7D-BB3F-4674-AF02-A32293A19F5F}
    1 0
    AutomaticUpdates Success
    Content Download Download succeeded.
    {DED48689-2F07-4965-9F52-C7885778B82A} 2015-03-19 00:06:39:141+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {8710E362-0FD4-42F4-8489-932AA5731578} 2015-03-19 00:06:39:639+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {F82D5E5C-E84D-4E47-8791-2681BA6F440D} 2015-03-19 00:07:14:766+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {50EF2781-FB16-47A1-9826-19F0E52F4253} 2015-03-19 00:07:14:773+0200
    1 189 [AU_UNSCHEDULED_INSTALL_READY]
    102 {00000000-0000-0000-0000-000000000000}
    0 0
    AutomaticUpdates Success
    Content Install Installation Ready: The following updates are downloaded and ready for installation. To install the updates, an administrator should log on to this computer and Windows will prompt with further instructions:
     - Microsoft.Reader - microsoft.windowscommunicationsapps
    {33F9699F-AEDC-413F-95B9-E76015F0E825} 2015-03-19 00:07:14:773+0200
    1 189 [AU_UNSCHEDULED_INSTALL_READY]
    102 {00000000-0000-0000-0000-000000000000}
    0 0
    AutomaticUpdates Success
    Content Install Installation Ready: The following updates are downloaded and ready for installation. To install the updates, an administrator should log on to this computer and Windows will prompt with further instructions:
     - drm - VCLibs 12 Preview
    {4351600E-D070-4431-84CE-34FB1109D4DC} 2015-03-19 00:07:14:774+0200
    1 162 [AGENT_DOWNLOAD_SUCCEEDED]
    101 {BFFF18AE-83DC-4661-BE5A-ABDD585A5157}
    1 0
    AutomaticUpdates Success
    Content Download Download succeeded.
    {FFFCFC30-061C-46E6-8DD4-6285888D76FD} 2015-03-19 00:07:15:067+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 80240438
    UpdateOrchestrator Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80240438.
    {B2CA6BDB-DB4B-4B1B-A016-9EE4B1D103AA} 2015-03-19 00:21:30:391+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {586F4FE2-C760-4861-BE9F-0D41375A6857} 2015-03-19 00:21:30:435+0200
    1 168 [(null)]
    101 {2332A99D-854E-4844-9B4D-8E43EE5A191A}
    1 0
    AutomaticUpdates Success
    Content Download Download queued.
    {A8166E7D-EF9B-4DBF-AA6A-33C902392926} 2015-03-19 00:23:36:845+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 80244019
    UpdateOrchestrator Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80244019.
    {CFAE4B73-8337-4A28-8E62-34AFBA6459A2} 2015-03-19 00:24:30:326+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 80240438
    UpdateOrchestrator Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80240438.
    {E8108901-47D2-4F23-91C8-31175089B009} 2015-03-19 00:24:32:772+0200
    1 147 [AGENT_DETECTION_FINISHED]
    101 {00000000-0000-0000-0000-000000000000}
    0 0
    WSAutoUpdate Success
    Software Synchronization Windows Update Client successfully detected 3 updates.
    {1B2E37CF-F050-4CED-A90D-1BD717F2C3E0} 2015-03-19 00:25:43:823+0200
    1 148 [AGENT_DETECTION_FAILED]
    101 {00000000-0000-0000-0000-000000000000}
    0 80240438
    UpdateOrchestrator Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80240438.
    {041F8319-F24B-4438-9022-9B9CDB0095B5} 2015-03-19 00:26:20:900+0200
    1 148 [

    Hi Erez,
    Could you please share us the WindowsUpdate.log file here?
    From the information youposted, it seems to be Windows Update can't check for the updates, you may try to run Windows Update Troubleshooter first, it that didn't help, run the following command using the Windows 10 9926 ISO to repair:
    DISM /Online /Cleanup-Image
    /RestoreHealth /source:WIM:F:\sources\install.wim:1
    /LimitAccess
    F: Drive stands for the mounted Windows 10 build 9926 ISO.
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Help with Multiple libraries and one storage location for files

    I cannot get an answer to this question anywhere and was really hoping that The [H] would be able to help.
    Here is my current set up that allows my wife and I to have completely independent libraries and ratings, but use the same files:
    -Shared folder with MP3s on a network drive.
    -Two PCs, each with it's own Ipod associated to it with individual libraries but all pointing to the same network share for MP3 Files.
    -Each PC is using the SAME Itunes account for downloads.
    -Each account has it's own library folder also on a network share.
    Now to my question(s)/problem with downloaded content:
    (1) Is there any way to have a file that is downloaded from Itunes be automatically placed in a shared location accessible to both Libraries? (Say if I download the latest Jack Johnson album, can it automatically show up in my wife's library and vice versa?)
    (2) Is there any way to share the album artwork versus having two copies of everything(one for each library)?
    So my goal is to have two libraries with a central location for ALL files, including anything downloaded from Itunes by each individual user. Is this possible?

    Have your wife transfer all purchases from the iPad into iTunes, backup her iPad and then sync with iTunes. Everything ... All media and other content will be available in that iTunes library and she will have a current backup.
    Assuming that your son will still be sharing your wife's Apple ID (he is too young to have one of his own) .... When you set up his iPad, restore the iPad from your wife's backup and then select only the content that you want your son to have on his iPad in the iTunes library and then sync that iPad with iTunes.
    The game progress is stored in the backup and should transfer onto his device when you restore from your wife's backup. You can always delete any content (apps, movies, music) that you don't want your son to have on the iPad, if you missed it when you synced with iTunes after setting the device up for him.
    You can set your sync preferences - any way that you want to - for both devices and still use the same iTunes library for both iPads. So ... Yes you can sync any apps that you want to his iPad and any apps that your wife wants to her iPad. You just need to restore your son's iPad from your wife's backup in order to get his game progress onto his iPad.
    In case you need these....
    Transfer purchases.
    http://support.apple.com/kb/HT1848
    How to backup and restore from a backup
    http://support.apple.com/kb/HT1766
    Remember to have your wife backup her iPad just before you restore his iPad from the backup so that his most recent progress will be available in the backup.

  • Help building an e-commerce site using DreamWeaver MX 2004 and Oracle 10G

    I'm new to using Oracle 10G. After reviewing several rdms's I've picked Oracle 10G as my rdms. I'm trying to build an ecommerce site using DreamWeaver MX 2004 and Oracle 10G. The website will be selling hardware and software products. I have a choice in DreamWeaver to go for a .asp or .jsp setup. I have several questions, here goes:
    1. Is there any book/tutorial/whitepaper out there that describes building an ecommerce site using Oracle 10G/9I/8I? Just some examples as how to make the datamodel regarding the shopping basket etc.
    2. I prefer DreamWeaver as it let's me make nice looking css style based pages without throttling too much through the code. Are there Oracle tools which allow me to make an advanced nice looking ecommerce site?
    I hope some of you can help me get started. Any effort is appreciated.
    Cheers

    I'm new to using Oracle 10G. After reviewing several rdms's I've picked Oracle 10G as my rdms. I'm trying to build an ecommerce site using DreamWeaver MX 2004 and Oracle 10G. The website will be selling hardware and software products. I have a choice in DreamWeaver to go for a .asp or .jsp setup. I have several questions, here goes:
    1. Is there any book/tutorial/whitepaper out there that describes building an ecommerce site using Oracle 10G/9I/8I? Just some examples as how to make the datamodel regarding the shopping basket etc.
    2. I prefer DreamWeaver as it let's me make nice looking css style based pages without throttling too much through the code. Are there Oracle tools which allow me to make an advanced nice looking ecommerce site?
    I hope some of you can help me get started. Any effort is appreciated.
    Cheers

Maybe you are looking for

  • No bootable device

    Hello, I have a 15 month old hp pavilion7-4165dx entertainment notebook. For the last 6 months or do I would occasionally get a no bootable device message but after shutting down and restarting it was fine. It happened again but now it keeps saying t

  • Cant download ios 5 to ipad

    Hi, Iv got an ipad 2 and need to do the new update for IOS 5, however it completes the download but then a warning message comes up saying "there was a problem downloading the software for the Ipad 2. The network connection timed out" Do you know any

  • How to print data in h:dataTable by column wise

    I've Arraylist holding of Item objects, in that again one more Arraylist containing Item parameters My problem is i want to display ItemParams side by side(column wise) not row by row(normal procedure) Table looks like ItemNo          ItemName     It

  • .m4a files and Flash

    Hi, friends. I would be grateful for any thoughts you have on this subject. The sound piece that I need to import into Flash is an .m4a file. I've never worked with that type of file and am not even sure why it is an .m4a, since all of the other soun

  • Photos missing from iPhoto

    I have uploaded pictures from my iPhone to iPhoto with a USB cable (you plug in, iPhoto shows you a tab with your iPhone's name, go there, click Import button). After the upload, It said that photos have been uploaded, but they are nowhere to be foun