Error: nvidia driver and custom kernel [SOLVED]

Hello guys , I have compiled custom kernel with wiki help and abs and want to install Nvidia driver, but i got the following error when I try to compile with abs..
==> Obteniendo Fuentes...
-> Se encontró NVIDIA-Linux-x86-256.35.run
==> Validando el archivo fuente con md5sums...
NVIDIA-Linux-x86-256.35.run ... Aprobado
==> Descomprimiendo fuentes...
==> Iniciando build()...
Creating directory NVIDIA-Linux-x86-256.35
Verifying archive integrity... OK
Uncompressing NVIDIA Accelerated Graphics Driver for Linux-x86 256.35............................................................................................................................
If you are using a Linux 2.4 kernel, please make sure
you either have configured kernel sources matching your
kernel or the correct set of kernel headers installed
on your system.
If you are using a Linux 2.6 kernel, please make sure
you have configured kernel sources matching your kernel
installed on your system. If you specified a separate
output directory using either the "KBUILD_OUTPUT" or
the "O" KBUILD parameter, make sure to specify this
directory with the SYSOUT environment variable or with
the equivalent nvidia-installer command line option.
Depending on where and how the kernel sources (or the
kernel headers) were installed, you may need to specify
their location with the SYSSRC environment variable or
the equivalent nvidia-installer command line option.
*** Unable to determine the target kernel version. ***
make: *** [select_makefile] Error 1
Abortando...
my nvidia.install
post_install() {
KERNEL_VERSION='2.6.34-pahko'
depmod $KERNEL_VERSION
post_upgrade() {
post_install
rmmod nvidia || echo 'In order to use the new nvidia module, exit Xserver and unload it manually.'
post_remove() {
KERNEL_VERSION='2.6.34-pahko'
depmod $KERNEL_VERSION
my PKGBUILD
# $Id: PKGBUILD 83850 2010-06-23 10:39:40Z pierre $
# Maintainer : Thomas Baechler <[email protected]>
pkgname=nvidia-pahko
pkgver=256.35
_kernver='2.6.34-pahko'
pkgrel=1
pkgdesc="NVIDIA drivers for kernel26."
arch=('i686' 'x86_64')
url="http://www.nvidia.com/"
depends=('kernel26>=2.6.34' 'kernel26<2.6.35' "nvidia-utils=${pkgver}")
makedepends=('kernel26-headers>=2.6.34' 'kernel26-headers<2.6.35')
conflicts=('nvidia-96xx' 'nvidia-173xx')
license=('custom')
install=nvidia.install
if [ "$CARCH" = "i686" ]; then
_arch='x86'
_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run")
md5sums=('f6af8917a500de28396a438f3f548c88')
elif [ "$CARCH" = "x86_64" ]; then
_arch='x86_64'
_pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run")
md5sums=('7b5924f14a4d2326b4d916efdb7852ff')
fi
build() {
cd $srcdir
sh ${_pkg}.run --extract-only
cd ${_pkg}/kernel
make SYSSRC=/lib/modules/${_kernver}/build module
package() {
install -D -m644 $srcdir/${_pkg}/kernel/nvidia.ko \
$pkgdir/lib/modules/${_kernver}/kernel/drivers/video/nvidia.ko
install -d -m755 $pkgdir/etc/modprobe.d
echo "blacklist nouveau" >> $pkgdir/etc/modprobe.d/nouveau_blacklist.conf
sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/nvidia.install
uname -r
2.6.34-pahko
anybody can help me?
thank you and sorry about my english
Last edited by pahko (2010-07-14 04:56:01)

They should be in the PKGBUILD, its a split PKGBUILD currently I think.

Similar Messages

  • Compiling nvidia driver for custom kernel

    I have a Toshiba M200 tablet PC running Arch Linux (which I love, btw) and it's running fine, including the tablet.
    There's an irritating bug with suspend-to-ram (suspend-to-disk doesn't work with the nvidia driver) where the tablet pen stops working after resume.
    There's a patch slated to be in some future kernel, but I compiled my own with that patch included. It boots fine and all seems to be well with it.
    However, I need to compile the nvidia driver for it, since the binary does not work. So I copy /var/abs/extra/nvidia and modify the PKGBUILD and nvidia.install files per the instructions on this wiki page, and run makepkg -i -c .
    I get a big error message early on, saying
    If you are using a Linux 2.4 kernel, please make sure
    you either have configured kernel sources matching your
    kernel or the correct set of kernel headers installed
    on your system.
    If you are using a Linux 2.6 kernel, please make sure
    you have configured kernel sources matching your kernel
    installed on your system. If you specified a separate
    output directory using either the "KBUILD_OUTPUT" or
    the "O" KBUILD parameter, make sure to specify this
    directory with the SYSOUT environment variable or with
    the equivalent nvidia-installer command line option.
    Depending on where and how the kernel sources (or the
    kernel headers) were installed, you may need to specify
    their location with the SYSSRC environment variable or
    the equivalent nvidia-installer command line option.
    *** Unable to determine the target kernel version. ***
    I've checked everything I can think of.
    $ uname -r
    2.6.25-tablet
    ls -l /usr/src shows linux-2.6.25-tablet, and linux is a symlink to it. /lib/modules/2.6.25-tablet/build is also symlinked to the right kernel source tree.
    So I'm out of ideas for why the nvidia makefile can't seem to find the kernel source.
    Thanks in advance.

    @klixon:
    I think that may be the root of the trouble: I compiled the kernel on my desktop (C2D 2.8) rather than my wussy laptop (1.6 Centrino). It installed and ran fine and all that, but I only have the kernel source tree that was included in the package, not the one that really compiled the code. Would simply copying it suffice, or should I rebuild the kernel on my laptop? Also, the PKGBUILD is included below.
    @shazeal:
    I believe this is a subset of the problem I describe above?
    The PKGBUILD, somewhat customized from the nvidia ABS. I don't think any of the changes are overly shocking.
    I've tried dozens of different modifications of it now. The simplest one is just appending '-tablet' to pkgname and _kernver.
    # $Id: PKGBUILD 1567 2008-05-13 10:11:25Z thomas $
    # Maintainer : Thomas Baechler <[email protected]>
    pkgname=nvidia-tablet
    pkgver=169.12
    _kernver='2.6.25-tablet'
    pkgrel=4
    pkgdesc="NVIDIA drivers for kernel26."
    arch=('i686')
    ARCH=x86
    url="http://www.nvidia.com/"
    depends=('kernel2625-tablet' 'nvidia-utils')
    conflicts=('nvidia-96xx' 'nvidia-71xx' 'nvidia-legacy')
    license=('custom')
    install=nvidia.install
    source=(http://us.download.nvidia.com/XFree86/Linux-$ARCH/${pkgver}/NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run
    NVIDIA_kernel-169.12-2286310.diff)
    md5sums=('e7aaca79c846e34cfe8111040bfee2d0'
    'a6b6d9d7ff0306343be3fa40e72337fd')
    [ "$CARCH" = "x86_64" ] && md5sums=('843a1e8bc1923ba2e4b60f6fab31ad3b'
    'a6b6d9d7ff0306343be3fa40e72337fd')
    build()
    # Extract
    cd $startdir/src/
    sh NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run --extract-only
    cd NVIDIA-Linux-$ARCH-${pkgver}-pkg0
    # Any extra patches are applied in here...
    patch -Np0 -i ../NVIDIA_kernel-169.12-2286310.diff || return 1
    cd usr/src/nv/
    ln -s Makefile.kbuild Makefile
    make SYSSRC=/usr/src/linux module || return 1
    # install kernel module
    mkdir -p $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/video/
    install -m644 nvidia.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/video/
    sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/*.install

  • No /dev/sda1 for flash drive w/custom kernel [solved]

    I think I may have made an error selecting the right drivers for my kernel or something. When I put my flash drive in with the official arch kernel, /dev/sda1 is created. However, when I put my flash drive in with my custom kernel, it does not. The weird thing is when I do a tail /var/log/messages.log, it gives me this:
    Oct 30 17:24:50 myhost sda1
    Oct 30 17:24:50 myhost Attached scsi removable disk sda at scsi5, channel 0, id 0, lun 0
    Oct 30 17:24:50 myhost Attached scsi generic sg0 at scsi5, channel 0, id 0, lun 0, type 0
    Oct 30 17:26:36 myhost (jftaylor21-1563): starting (version 2.12.0), pid 1563 user 'jftaylor21'
    Oct 30 17:26:36 myhost (jftaylor21-1563): Resolved address "xml:readonly:/opt/gnome/etc/gconf/gconf.xml.mandatory" to a read-only configuration source at position 0
    Oct 30 17:26:36 myhost (jftaylor21-1563): Resolved address "xml:readwrite:/home/jftaylor21/.gconf" to a writable configuration source at position 1
    Oct 30 17:26:36 myhost (jftaylor21-1563): Resolved address "xml:readonly:/opt/gnome/etc/gconf/gconf.xml.defaults" to a read-only configuration source at position 2
    Oct 30 17:31:28 myhost usb 1-6: USB disconnect, address 4
    Oct 30 17:31:32 myhost usb 1-6: new high speed USB device using ehci_hcd and address 5
    Oct 30 17:31:32 myhost scsi6 : SCSI emulation for USB Mass Storage devices
    I have usb-storage and scsi emulation built into the kernel if that helps.
    Here is my .config file:
    # Automatically generated make config: don't edit
    # Linux kernel version: 2.6.14
    # Sun Oct 30 17:20:14 2005
    CONFIG_X86=y
    CONFIG_SEMAPHORE_SLEEPERS=y
    CONFIG_MMU=y
    CONFIG_UID16=y
    CONFIG_GENERIC_ISA_DMA=y
    CONFIG_GENERIC_IOMAP=y
    CONFIG_ARCH_MAY_HAVE_PC_FDC=y
    # Code maturity level options
    CONFIG_EXPERIMENTAL=y
    CONFIG_CLEAN_COMPILE=y
    CONFIG_BROKEN_ON_SMP=y
    CONFIG_INIT_ENV_ARG_LIMIT=32
    # General setup
    CONFIG_LOCALVERSION=""
    # CONFIG_LOCALVERSION_AUTO is not set
    CONFIG_SWAP=y
    CONFIG_SYSVIPC=y
    CONFIG_POSIX_MQUEUE=y
    CONFIG_BSD_PROCESS_ACCT=y
    # CONFIG_BSD_PROCESS_ACCT_V3 is not set
    CONFIG_SYSCTL=y
    CONFIG_AUDIT=y
    CONFIG_AUDITSYSCALL=y
    # CONFIG_HOTPLUG is not set
    CONFIG_KOBJECT_UEVENT=y
    CONFIG_IKCONFIG=y
    CONFIG_IKCONFIG_PROC=y
    CONFIG_INITRAMFS_SOURCE=""
    # CONFIG_EMBEDDED is not set
    CONFIG_KALLSYMS=y
    # 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 is not set
    CONFIG_OBSOLETE_MODPARM=y
    # CONFIG_MODVERSIONS is not set
    # CONFIG_MODULE_SRCVERSION_ALL is not set
    # CONFIG_KMOD is not set
    # 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 is not set
    # 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=y
    # 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 is not set
    CONFIG_X86_CMPXCHG=y
    CONFIG_X86_XADD=y
    CONFIG_X86_L1_CACHE_SHIFT=6
    CONFIG_RWSEM_XCHGADD_ALGORITHM=y
    CONFIG_GENERIC_CALIBRATE_DELAY=y
    CONFIG_X86_WP_WORKS_OK=y
    CONFIG_X86_INVLPG=y
    CONFIG_X86_BSWAP=y
    CONFIG_X86_POPAD_OK=y
    CONFIG_X86_GOOD_APIC=y
    CONFIG_X86_INTEL_USERCOPY=y
    CONFIG_X86_USE_PPRO_CHECKSUM=y
    CONFIG_X86_USE_3DNOW=y
    # CONFIG_HPET_TIMER is not set
    # CONFIG_SMP is not set
    # CONFIG_PREEMPT_NONE is not set
    CONFIG_PREEMPT_VOLUNTARY=y
    # CONFIG_PREEMPT is not set
    CONFIG_X86_UP_APIC=y
    CONFIG_X86_UP_IOAPIC=y
    CONFIG_X86_LOCAL_APIC=y
    CONFIG_X86_IO_APIC=y
    CONFIG_X86_TSC=y
    CONFIG_X86_MCE=y
    CONFIG_X86_MCE_NONFATAL=y
    CONFIG_X86_MCE_P4THERMAL=y
    # CONFIG_TOSHIBA is not set
    # CONFIG_I8K is not set
    # CONFIG_X86_REBOOTFIXUPS is not set
    # 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_DELL_RBU is not set
    # CONFIG_DCDBAS is not set
    CONFIG_NOHIGHMEM=y
    # CONFIG_HIGHMEM4G is not set
    # CONFIG_HIGHMEM64G is not set
    CONFIG_SELECT_MEMORY_MODEL=y
    CONFIG_FLATMEM_MANUAL=y
    # CONFIG_DISCONTIGMEM_MANUAL is not set
    # CONFIG_SPARSEMEM_MANUAL is not set
    CONFIG_FLATMEM=y
    CONFIG_FLAT_NODE_MEM_MAP=y
    # CONFIG_SPARSEMEM_STATIC is not set
    # CONFIG_MATH_EMULATION is not set
    CONFIG_MTRR=y
    # CONFIG_EFI is not set
    # CONFIG_REGPARM is not set
    CONFIG_SECCOMP=y
    # CONFIG_HZ_100 is not set
    # CONFIG_HZ_250 is not set
    CONFIG_HZ_1000=y
    CONFIG_HZ=1000
    CONFIG_PHYSICAL_START=0x100000
    # CONFIG_KEXEC is not set
    # Power management options (ACPI, APM)
    CONFIG_PM=y
    # CONFIG_PM_DEBUG is not set
    # CONFIG_SOFTWARE_SUSPEND is not set
    # ACPI (Advanced Configuration and Power Interface) Support
    CONFIG_ACPI=y
    # CONFIG_ACPI_SLEEP is not set
    # CONFIG_ACPI_AC is not set
    # CONFIG_ACPI_BATTERY is not set
    # CONFIG_ACPI_BUTTON is not set
    # CONFIG_ACPI_VIDEO is not set
    # CONFIG_ACPI_HOTKEY is not set
    CONFIG_ACPI_FAN=y
    CONFIG_ACPI_PROCESSOR=y
    CONFIG_ACPI_THERMAL=y
    # CONFIG_ACPI_ASUS is not set
    # CONFIG_ACPI_IBM is not set
    # CONFIG_ACPI_TOSHIBA is not set
    # CONFIG_ACPI_CUSTOM_DSDT is not set
    CONFIG_ACPI_BLACKLIST_YEAR=0
    # CONFIG_ACPI_DEBUG is not set
    CONFIG_ACPI_EC=y
    CONFIG_ACPI_POWER=y
    CONFIG_ACPI_SYSTEM=y
    # CONFIG_X86_PM_TIMER is not set
    # CONFIG_ACPI_CONTAINER is not set
    # APM (Advanced Power Management) BIOS Support
    # CONFIG_APM is not set
    # CPU Frequency scaling
    # CONFIG_CPU_FREQ is not set
    # Bus options (PCI, PCMCIA, EISA, MCA, ISA)
    CONFIG_PCI=y
    # CONFIG_PCI_GOBIOS is not set
    # CONFIG_PCI_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_PCI_MSI is not set
    CONFIG_PCI_LEGACY_PROC=y
    CONFIG_ISA_DMA_API=y
    # CONFIG_ISA is not set
    # CONFIG_MCA is not set
    # CONFIG_SCx200 is not set
    # PCCARD (PCMCIA/CardBus) support
    # CONFIG_PCCARD is not set
    # PCI Hotplug Support
    # CONFIG_HOTPLUG_PCI is not set
    # Executable file formats
    CONFIG_BINFMT_ELF=y
    CONFIG_BINFMT_AOUT=y
    CONFIG_BINFMT_MISC=y
    # Networking
    CONFIG_NET=y
    # Networking options
    CONFIG_PACKET=y
    # CONFIG_PACKET_MMAP is not set
    CONFIG_UNIX=y
    CONFIG_XFRM=y
    CONFIG_XFRM_USER=y
    CONFIG_NET_KEY=y
    CONFIG_INET=y
    # CONFIG_IP_MULTICAST is not set
    # CONFIG_IP_ADVANCED_ROUTER is not set
    CONFIG_IP_FIB_HASH=y
    # CONFIG_IP_PNP is not set
    # CONFIG_NET_IPIP is not set
    # CONFIG_NET_IPGRE is not set
    # CONFIG_ARPD is not set
    # CONFIG_SYN_COOKIES is not set
    CONFIG_INET_AH=y
    CONFIG_INET_ESP=y
    CONFIG_INET_IPCOMP=y
    CONFIG_INET_TUNNEL=y
    CONFIG_INET_DIAG=y
    CONFIG_INET_TCP_DIAG=y
    # CONFIG_TCP_CONG_ADVANCED is not set
    CONFIG_TCP_CONG_BIC=y
    # IP: Virtual Server Configuration
    # CONFIG_IP_VS is not set
    # CONFIG_IPV6 is not set
    CONFIG_NETFILTER=y
    # CONFIG_NETFILTER_DEBUG is not set
    # CONFIG_NETFILTER_NETLINK is not set
    # IP: Netfilter Configuration
    # CONFIG_IP_NF_CONNTRACK is not set
    # CONFIG_IP_NF_QUEUE is not set
    # CONFIG_IP_NF_IPTABLES is not set
    # CONFIG_IP_NF_ARPTABLES is not set
    # DCCP Configuration (EXPERIMENTAL)
    # CONFIG_IP_DCCP is not set
    # SCTP Configuration (EXPERIMENTAL)
    # CONFIG_IP_SCTP is not set
    # CONFIG_ATM is not set
    # CONFIG_BRIDGE is not set
    # CONFIG_VLAN_8021Q is not set
    # CONFIG_DECNET is not set
    # CONFIG_LLC2 is not set
    # CONFIG_IPX is not set
    # CONFIG_ATALK is not set
    # CONFIG_X25 is not set
    # CONFIG_LAPB is not set
    # CONFIG_NET_DIVERT is not set
    # CONFIG_ECONET is not set
    # CONFIG_WAN_ROUTER is not set
    # CONFIG_NET_SCHED is not set
    # CONFIG_NET_CLS_ROUTE is not set
    # Network testing
    # CONFIG_NET_PKTGEN is not set
    # CONFIG_HAMRADIO is not set
    # CONFIG_IRDA is not set
    # CONFIG_BT is not set
    # CONFIG_IEEE80211 is not set
    # Device Drivers
    # Generic Driver Options
    # CONFIG_STANDALONE is not set
    # CONFIG_PREVENT_FIRMWARE_BUILD is not set
    # CONFIG_FW_LOADER is not set
    # Connector - unified userspace <-> kernelspace linker
    # CONFIG_CONNECTOR is not set
    # Memory Technology Devices (MTD)
    # CONFIG_MTD is not set
    # Parallel port support
    # CONFIG_PARPORT is not set
    # Plug and Play support
    CONFIG_PNP=y
    # CONFIG_PNP_DEBUG is not set
    # Protocols
    CONFIG_PNPACPI=y
    # Block devices
    CONFIG_BLK_DEV_FD=y
    # CONFIG_BLK_CPQ_DA is not set
    # CONFIG_BLK_CPQ_CISS_DA is not set
    # CONFIG_BLK_DEV_DAC960 is not set
    # CONFIG_BLK_DEV_UMEM is not set
    # CONFIG_BLK_DEV_COW_COMMON is not set
    # CONFIG_BLK_DEV_LOOP is not set
    # CONFIG_BLK_DEV_NBD is not set
    # CONFIG_BLK_DEV_SX8 is not set
    # CONFIG_BLK_DEV_UB is not set
    # CONFIG_BLK_DEV_RAM is not set
    CONFIG_BLK_DEV_RAM_COUNT=16
    # CONFIG_LBD is not set
    # CONFIG_CDROM_PKTCDVD 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 is not set
    # 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_IDECD=y
    # CONFIG_BLK_DEV_IDETAPE is not set
    CONFIG_BLK_DEV_IDEFLOPPY=y
    CONFIG_BLK_DEV_IDESCSI=y
    # CONFIG_IDE_TASK_IOCTL is not set
    # IDE chipset support/bugfixes
    CONFIG_IDE_GENERIC=y
    # CONFIG_BLK_DEV_CMD640 is not set
    # 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 is not set
    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 is not set
    # CONFIG_BLK_DEV_ALI15X3 is not set
    CONFIG_BLK_DEV_AMD74XX=y
    # CONFIG_BLK_DEV_ATIIXP is not set
    # CONFIG_BLK_DEV_CMD64X is not set
    # CONFIG_BLK_DEV_TRIFLEX is not set
    # CONFIG_BLK_DEV_CY82C693 is not set
    # CONFIG_BLK_DEV_CS5520 is not set
    # CONFIG_BLK_DEV_CS5530 is not set
    # CONFIG_BLK_DEV_HPT34X is not set
    # CONFIG_BLK_DEV_HPT366 is not set
    # CONFIG_BLK_DEV_SC1200 is not set
    # CONFIG_BLK_DEV_PIIX is not set
    # CONFIG_BLK_DEV_IT821X is not set
    # CONFIG_BLK_DEV_NS87415 is not set
    # CONFIG_BLK_DEV_PDC202XX_OLD is not set
    # CONFIG_BLK_DEV_PDC202XX_NEW is not set
    # CONFIG_BLK_DEV_SVWKS is not set
    # CONFIG_BLK_DEV_SIIMAGE is not set
    # CONFIG_BLK_DEV_SIS5513 is not set
    # CONFIG_BLK_DEV_SLC90E66 is not set
    # CONFIG_BLK_DEV_TRM290 is not set
    # CONFIG_BLK_DEV_VIA82CXXX is not set
    # CONFIG_IDE_ARM 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_RAID_ATTRS is not set
    CONFIG_SCSI=y
    CONFIG_SCSI_PROC_FS=y
    # SCSI support type (disk, tape, CD-ROM)
    CONFIG_BLK_DEV_SD=y
    # CONFIG_CHR_DEV_ST is not set
    # CONFIG_CHR_DEV_OSST is not set
    # CONFIG_BLK_DEV_SR is not set
    CONFIG_CHR_DEV_SG=y
    # CONFIG_CHR_DEV_SCH is not set
    # Some SCSI devices (e.g. CD jukebox) support multiple LUNs
    # CONFIG_SCSI_MULTI_LUN is not set
    # CONFIG_SCSI_CONSTANTS is not set
    # CONFIG_SCSI_LOGGING is not set
    # SCSI Transport Attributes
    # CONFIG_SCSI_SPI_ATTRS is not set
    # CONFIG_SCSI_FC_ATTRS is not set
    # CONFIG_SCSI_ISCSI_ATTRS is not set
    # CONFIG_SCSI_SAS_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_ACARD is not set
    # CONFIG_SCSI_AACRAID is not set
    # CONFIG_SCSI_AIC7XXX is not set
    # CONFIG_SCSI_AIC7XXX_OLD is not set
    # CONFIG_SCSI_AIC79XX is not set
    # CONFIG_SCSI_DPT_I2O is not set
    # CONFIG_MEGARAID_NEWGEN is not set
    # CONFIG_MEGARAID_LEGACY is not set
    # CONFIG_MEGARAID_SAS is not set
    CONFIG_SCSI_SATA=y
    # CONFIG_SCSI_SATA_AHCI is not set
    # CONFIG_SCSI_SATA_SVW is not set
    # CONFIG_SCSI_ATA_PIIX is not set
    # CONFIG_SCSI_SATA_MV is not set
    CONFIG_SCSI_SATA_NV=y
    # CONFIG_SCSI_SATA_PROMISE is not set
    # CONFIG_SCSI_SATA_QSTOR is not set
    # CONFIG_SCSI_SATA_SX4 is not set
    # CONFIG_SCSI_SATA_SIL is not set
    # CONFIG_SCSI_SATA_SIS is not set
    # CONFIG_SCSI_SATA_ULI is not set
    # CONFIG_SCSI_SATA_VIA is not set
    # CONFIG_SCSI_SATA_VITESSE is not set
    # CONFIG_SCSI_BUSLOGIC is not set
    # CONFIG_SCSI_DMX3191D is not set
    # CONFIG_SCSI_EATA is not set
    # CONFIG_SCSI_FUTURE_DOMAIN is not set
    # CONFIG_SCSI_GDTH is not set
    # CONFIG_SCSI_IPS is not set
    # CONFIG_SCSI_INITIO is not set
    # CONFIG_SCSI_INIA100 is not set
    # CONFIG_SCSI_SYM53C8XX_2 is not set
    # CONFIG_SCSI_IPR 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_QLA24XX is not set
    # CONFIG_SCSI_LPFC is not set
    # CONFIG_SCSI_DC395x is not set
    # CONFIG_SCSI_DC390T is not set
    # CONFIG_SCSI_NSP32 is not set
    # CONFIG_SCSI_DEBUG is not set
    # Multi-device support (RAID and LVM)
    # CONFIG_MD is not set
    # Fusion MPT device support
    # CONFIG_FUSION is not set
    # CONFIG_FUSION_SPI is not set
    # CONFIG_FUSION_FC is not set
    # CONFIG_FUSION_SAS is not set
    # IEEE 1394 (FireWire) support
    # CONFIG_IEEE1394 is not set
    # I2O device support
    # CONFIG_I2O is not set
    # Network device support
    CONFIG_NETDEVICES=y
    # CONFIG_DUMMY is not set
    # CONFIG_BONDING is not set
    # CONFIG_EQUALIZER is not set
    # CONFIG_TUN is not set
    # CONFIG_NET_SB1000 is not set
    # ARCnet devices
    # CONFIG_ARCNET is not set
    # PHY device support
    # CONFIG_PHYLIB is not set
    # Ethernet (10 or 100Mbit)
    CONFIG_NET_ETHERNET=y
    CONFIG_MII=y
    # CONFIG_HAPPYMEAL is not set
    # CONFIG_SUNGEM is not set
    # CONFIG_CASSINI is not set
    # CONFIG_NET_VENDOR_3COM is not set
    # Tulip family network device support
    # CONFIG_NET_TULIP is not set
    # CONFIG_HP100 is not set
    CONFIG_NET_PCI=y
    # CONFIG_PCNET32 is not set
    # CONFIG_AMD8111_ETH is not set
    # CONFIG_ADAPTEC_STARFIRE is not set
    # CONFIG_B44 is not set
    CONFIG_FORCEDETH=y
    # CONFIG_DGRS is not set
    # CONFIG_EEPRO100 is not set
    # CONFIG_E100 is not set
    # CONFIG_FEALNX is not set
    # CONFIG_NATSEMI is not set
    # CONFIG_NE2K_PCI is not set
    # CONFIG_8139CP is not set
    # CONFIG_8139TOO is not set
    # CONFIG_SIS900 is not set
    # CONFIG_EPIC100 is not set
    # CONFIG_SUNDANCE is not set
    # CONFIG_TLAN is not set
    # CONFIG_VIA_RHINE is not set
    # Ethernet (1000 Mbit)
    # CONFIG_ACENIC is not set
    # CONFIG_DL2K is not set
    # CONFIG_E1000 is not set
    # CONFIG_NS83820 is not set
    # CONFIG_HAMACHI is not set
    # CONFIG_YELLOWFIN is not set
    # CONFIG_R8169 is not set
    # CONFIG_SIS190 is not set
    # CONFIG_SKGE is not set
    # CONFIG_SK98LIN is not set
    # CONFIG_VIA_VELOCITY is not set
    # CONFIG_TIGON3 is not set
    # CONFIG_BNX2 is not set
    # Ethernet (10000 Mbit)
    # CONFIG_CHELSIO_T1 is not set
    # CONFIG_IXGB is not set
    # CONFIG_S2IO is not set
    # Token Ring devices
    # CONFIG_TR is not set
    # Wireless LAN (non-hamradio)
    # CONFIG_NET_RADIO is not set
    # Wan interfaces
    # CONFIG_WAN is not set
    # CONFIG_FDDI is not set
    # CONFIG_HIPPI is not set
    # CONFIG_PPP is not set
    # CONFIG_SLIP is not set
    # CONFIG_NET_FC is not set
    # CONFIG_SHAPER is not set
    # CONFIG_NETCONSOLE is not set
    # CONFIG_NETPOLL is not set
    # CONFIG_NET_POLL_CONTROLLER is not set
    # ISDN subsystem
    # CONFIG_ISDN is not set
    # Telephony Support
    # CONFIG_PHONE is not set
    # Input device support
    CONFIG_INPUT=y
    # Userland interfaces
    CONFIG_INPUT_MOUSEDEV=y
    CONFIG_INPUT_MOUSEDEV_PSAUX=y
    CONFIG_INPUT_MOUSEDEV_SCREEN_X=1280
    CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1024
    # CONFIG_INPUT_JOYDEV is not set
    # CONFIG_INPUT_TSDEV is not set
    CONFIG_INPUT_EVDEV=y
    # 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 is not set
    # CONFIG_MOUSE_SERIAL is not set
    # CONFIG_MOUSE_VSXXXAA is not set
    # CONFIG_INPUT_JOYSTICK is not set
    # CONFIG_INPUT_TOUCHSCREEN is not set
    CONFIG_INPUT_MISC=y
    CONFIG_INPUT_PCSPKR=y
    # CONFIG_INPUT_UINPUT is not set
    # Hardware I/O ports
    CONFIG_SERIO=y
    CONFIG_SERIO_I8042=y
    # CONFIG_SERIO_SERPORT is not set
    # CONFIG_SERIO_CT82C710 is not set
    # CONFIG_SERIO_PCIPS2 is not set
    CONFIG_SERIO_LIBPS2=y
    # CONFIG_SERIO_RAW is not set
    # CONFIG_GAMEPORT is not set
    # Character devices
    CONFIG_VT=y
    CONFIG_VT_CONSOLE=y
    CONFIG_HW_CONSOLE=y
    # CONFIG_SERIAL_NONSTANDARD is not set
    # Serial drivers
    CONFIG_SERIAL_8250=y
    # CONFIG_SERIAL_8250_CONSOLE is not set
    # 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_JSM is not set
    CONFIG_UNIX98_PTYS=y
    # CONFIG_LEGACY_PTYS is not set
    # IPMI
    # CONFIG_IPMI_HANDLER is not set
    # Watchdog Cards
    # CONFIG_WATCHDOG is not set
    # CONFIG_HW_RANDOM is not set
    # CONFIG_NVRAM is not set
    # CONFIG_RTC is not set
    # CONFIG_GEN_RTC is not set
    # CONFIG_DTLK is not set
    # CONFIG_R3964 is not set
    # CONFIG_APPLICOM is not set
    # CONFIG_SONYPI is not set
    # Ftape, the floppy tape device driver
    # CONFIG_FTAPE is not set
    # CONFIG_AGP is not set
    # CONFIG_DRM is not set
    # CONFIG_MWAVE is not set
    # CONFIG_RAW_DRIVER is not set
    # CONFIG_HPET is not set
    # CONFIG_HANGCHECK_TIMER is not set
    # TPM devices
    # CONFIG_TCG_TPM is not set
    # I2C support
    CONFIG_I2C=y
    CONFIG_I2C_CHARDEV=y
    # I2C Algorithms
    # CONFIG_I2C_ALGOBIT is not set
    # CONFIG_I2C_ALGOPCF is not set
    # CONFIG_I2C_ALGOPCA is not set
    # I2C Hardware Bus support
    # CONFIG_I2C_ALI1535 is not set
    # CONFIG_I2C_ALI1563 is not set
    # CONFIG_I2C_ALI15X3 is not set
    # CONFIG_I2C_AMD756 is not set
    # CONFIG_I2C_AMD8111 is not set
    # CONFIG_I2C_I801 is not set
    # CONFIG_I2C_I810 is not set
    # CONFIG_I2C_PIIX4 is not set
    CONFIG_I2C_ISA=y
    CONFIG_I2C_NFORCE2=y
    # CONFIG_I2C_PARPORT_LIGHT is not set
    # CONFIG_I2C_PROSAVAGE is not set
    # CONFIG_I2C_SAVAGE4 is not set
    # CONFIG_SCx200_ACB is not set
    # CONFIG_I2C_SIS5595 is not set
    # CONFIG_I2C_SIS630 is not set
    # CONFIG_I2C_SIS96X is not set
    # CONFIG_I2C_STUB is not set
    # CONFIG_I2C_VIA is not set
    # CONFIG_I2C_VIAPRO is not set
    # CONFIG_I2C_VOODOO3 is not set
    # CONFIG_I2C_PCA_ISA is not set
    # Miscellaneous I2C Chip support
    # CONFIG_SENSORS_DS1337 is not set
    # CONFIG_SENSORS_DS1374 is not set
    CONFIG_SENSORS_EEPROM=y
    # CONFIG_SENSORS_PCF8574 is not set
    # CONFIG_SENSORS_PCA9539 is not set
    # CONFIG_SENSORS_PCF8591 is not set
    # CONFIG_SENSORS_RTC8564 is not set
    # CONFIG_SENSORS_MAX6875 is not set
    # 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 is not set
    # Hardware Monitoring support
    CONFIG_HWMON=y
    CONFIG_HWMON_VID=y
    # CONFIG_SENSORS_ADM1021 is not set
    # CONFIG_SENSORS_ADM1025 is not set
    # CONFIG_SENSORS_ADM1026 is not set
    # CONFIG_SENSORS_ADM1031 is not set
    # CONFIG_SENSORS_ADM9240 is not set
    # CONFIG_SENSORS_ASB100 is not set
    # CONFIG_SENSORS_ATXP1 is not set
    # CONFIG_SENSORS_DS1621 is not set
    # CONFIG_SENSORS_FSCHER is not set
    # CONFIG_SENSORS_FSCPOS is not set
    # CONFIG_SENSORS_GL518SM is not set
    # CONFIG_SENSORS_GL520SM is not set
    CONFIG_SENSORS_IT87=y
    # CONFIG_SENSORS_LM63 is not set
    # CONFIG_SENSORS_LM75 is not set
    # CONFIG_SENSORS_LM77 is not set
    # CONFIG_SENSORS_LM78 is not set
    # CONFIG_SENSORS_LM80 is not set
    # CONFIG_SENSORS_LM83 is not set
    # CONFIG_SENSORS_LM85 is not set
    # CONFIG_SENSORS_LM87 is not set
    # CONFIG_SENSORS_LM90 is not set
    # CONFIG_SENSORS_LM92 is not set
    # CONFIG_SENSORS_MAX1619 is not set
    # CONFIG_SENSORS_PC87360 is not set
    # CONFIG_SENSORS_SIS5595 is not set
    # CONFIG_SENSORS_SMSC47M1 is not set
    # CONFIG_SENSORS_SMSC47B397 is not set
    # CONFIG_SENSORS_VIA686A is not set
    # CONFIG_SENSORS_W83781D is not set
    # CONFIG_SENSORS_W83792D is not set
    # CONFIG_SENSORS_W83L785TS is not set
    # CONFIG_SENSORS_W83627HF is not set
    # CONFIG_SENSORS_W83627EHF is not set
    # CONFIG_SENSORS_HDAPS is not set
    # CONFIG_HWMON_DEBUG_CHIP is not set
    # Misc devices
    # CONFIG_IBM_ASM is not set
    # Multimedia Capabilities Port drivers
    # Multimedia devices
    CONFIG_VIDEO_DEV=y
    # Video For Linux
    # Video Adapters
    # CONFIG_VIDEO_BT848 is not set
    # CONFIG_VIDEO_CPIA is not set
    # CONFIG_VIDEO_SAA5246A is not set
    # CONFIG_VIDEO_SAA5249 is not set
    # CONFIG_TUNER_3036 is not set
    # CONFIG_VIDEO_STRADIS is not set
    CONFIG_VIDEO_SAA7134=y
    # CONFIG_VIDEO_MXB is not set
    # CONFIG_VIDEO_DPC is not set
    # CONFIG_VIDEO_HEXIUM_ORION is not set
    # CONFIG_VIDEO_HEXIUM_GEMINI is not set
    # CONFIG_VIDEO_CX88 is not set
    # CONFIG_VIDEO_OVCAMCHIP is not set
    # Radio Adapters
    # CONFIG_RADIO_GEMTEK_PCI is not set
    # CONFIG_RADIO_MAXIRADIO is not set
    # CONFIG_RADIO_MAESTRO is not set
    # Digital Video Broadcasting Devices
    # CONFIG_DVB is not set
    CONFIG_VIDEO_TUNER=y
    CONFIG_VIDEO_BUF=y
    CONFIG_VIDEO_IR=y
    # 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 is not set
    # 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_ARC 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_VIDEO_SELECT=y
    # CONFIG_FB_HGA is not set
    # CONFIG_FB_NVIDIA is not set
    # CONFIG_FB_RIVA is not set
    # CONFIG_FB_I810 is not set
    # CONFIG_FB_INTEL 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_CYBLA is not set
    # CONFIG_FB_TRIDENT 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_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_7x14 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
    # CONFIG_FONT_10x18 is not set
    # Logo configuration
    CONFIG_LOGO=y
    # CONFIG_LOGO_LINUX_MONO is not set
    # CONFIG_LOGO_LINUX_VGA16 is not set
    CONFIG_LOGO_LINUX_CLUT224=y
    CONFIG_BACKLIGHT_LCD_SUPPORT=y
    CONFIG_BACKLIGHT_CLASS_DEVICE=y
    CONFIG_BACKLIGHT_DEVICE=y
    CONFIG_LCD_CLASS_DEVICE=y
    CONFIG_LCD_DEVICE=y
    # Sound
    CONFIG_SOUND=y
    # Advanced Linux Sound Architecture
    CONFIG_SND=y
    CONFIG_SND_TIMER=y
    CONFIG_SND_PCM=y
    CONFIG_SND_SEQUENCER=y
    # CONFIG_SND_SEQ_DUMMY is not set
    CONFIG_SND_OSSEMUL=y
    CONFIG_SND_MIXER_OSS=y
    CONFIG_SND_PCM_OSS=y
    CONFIG_SND_SEQUENCER_OSS=y
    # CONFIG_SND_VERBOSE_PRINTK is not set
    # CONFIG_SND_DEBUG is not set
    # Generic devices
    # CONFIG_SND_DUMMY is not set
    # CONFIG_SND_VIRMIDI is not set
    # CONFIG_SND_MTPAV is not set
    # CONFIG_SND_SERIAL_U16550 is not set
    # CONFIG_SND_MPU401 is not set
    CONFIG_SND_AC97_CODEC=y
    CONFIG_SND_AC97_BUS=y
    # PCI devices
    # CONFIG_SND_ALI5451 is not set
    # CONFIG_SND_ATIIXP is not set
    # CONFIG_SND_ATIIXP_MODEM is not set
    # CONFIG_SND_AU8810 is not set
    # CONFIG_SND_AU8820 is not set
    # CONFIG_SND_AU8830 is not set
    # CONFIG_SND_AZT3328 is not set
    # CONFIG_SND_BT87X is not set
    # CONFIG_SND_CS46XX is not set
    # CONFIG_SND_CS4281 is not set
    # CONFIG_SND_EMU10K1 is not set
    # CONFIG_SND_EMU10K1X is not set
    # CONFIG_SND_CA0106 is not set
    # CONFIG_SND_KORG1212 is not set
    # CONFIG_SND_MIXART is not set
    # CONFIG_SND_NM256 is not set
    # CONFIG_SND_RME32 is not set
    # CONFIG_SND_RME96 is not set
    # CONFIG_SND_RME9652 is not set
    # CONFIG_SND_HDSP is not set
    # CONFIG_SND_HDSPM is not set
    # CONFIG_SND_TRIDENT is not set
    # CONFIG_SND_YMFPCI is not set
    # CONFIG_SND_AD1889 is not set
    # CONFIG_SND_ALS4000 is not set
    # CONFIG_SND_CMIPCI is not set
    # CONFIG_SND_ENS1370 is not set
    # CONFIG_SND_ENS1371 is not set
    # CONFIG_SND_ES1938 is not set
    # CONFIG_SND_ES1968 is not set
    # CONFIG_SND_MAESTRO3 is not set
    # CONFIG_SND_FM801 is not set
    # CONFIG_SND_ICE1712 is not set
    # CONFIG_SND_ICE1724 is not set
    CONFIG_SND_INTEL8X0=y
    # CONFIG_SND_INTEL8X0M is not set
    # CONFIG_SND_SONICVIBES is not set
    # CONFIG_SND_VIA82XX is not set
    # CONFIG_SND_VIA82XX_MODEM is not set
    # CONFIG_SND_VX222 is not set
    # CONFIG_SND_HDA_INTEL is not set
    # USB devices
    # CONFIG_SND_USB_AUDIO is not set
    # CONFIG_SND_USB_USX2Y is not set
    # 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=y
    # CONFIG_USB_DEBUG is not set
    # Miscellaneous USB options
    CONFIG_USB_DEVICEFS=y
    # CONFIG_USB_BANDWIDTH is not set
    # CONFIG_USB_DYNAMIC_MINORS is not set
    # CONFIG_USB_SUSPEND is not set
    # CONFIG_USB_OTG is not set
    # USB Host Controller Drivers
    CONFIG_USB_EHCI_HCD=y
    # CONFIG_USB_EHCI_SPLIT_ISO is not set
    CONFIG_USB_EHCI_ROOT_HUB_TT=y
    # CONFIG_USB_ISP116X_HCD is not set
    CONFIG_USB_OHCI_HCD=y
    # CONFIG_USB_OHCI_BIG_ENDIAN is not set
    CONFIG_USB_OHCI_LITTLE_ENDIAN=y
    CONFIG_USB_UHCI_HCD=y
    # CONFIG_USB_SL811_HCD is not set
    # USB Device Class drivers
    # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set
    # CONFIG_USB_BLUETOOTH_TTY is not set
    # CONFIG_USB_ACM is not set
    CONFIG_USB_PRINTER=y
    # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information
    CONFIG_USB_STORAGE=y
    CONFIG_USB_STORAGE_DEBUG=y
    # CONFIG_USB_STORAGE_DATAFAB is not set
    # CONFIG_USB_STORAGE_FREECOM is not set
    # CONFIG_USB_STORAGE_ISD200 is not set
    # CONFIG_USB_STORAGE_DPCM is not set
    # CONFIG_USB_STORAGE_USBAT is not set
    # CONFIG_USB_STORAGE_SDDR09 is not set
    # CONFIG_USB_STORAGE_SDDR55 is not set
    # CONFIG_USB_STORAGE_JUMPSHOT is not set
    # CONFIG_USB_STORAGE_ONETOUCH is not set
    # USB Input Devices
    # CONFIG_USB_HID is not set
    # USB HID Boot Protocol drivers
    # CONFIG_USB_KBD is not set
    CONFIG_USB_MOUSE=y
    # CONFIG_USB_AIPTEK is not set
    # CONFIG_USB_WACOM is not set
    # CONFIG_USB_ACECAD is not set
    # CONFIG_USB_KBTAB is not set
    # CONFIG_USB_POWERMATE is not set
    # CONFIG_USB_MTOUCH is not set
    # CONFIG_USB_ITMTOUCH is not set
    # CONFIG_USB_EGALAX is not set
    # CONFIG_USB_YEALINK is not set
    # CONFIG_USB_XPAD is not set
    # CONFIG_USB_ATI_REMOTE is not set
    # CONFIG_USB_KEYSPAN_REMOTE is not set
    # CONFIG_USB_APPLETOUCH is not set
    # USB Imaging devices
    # CONFIG_USB_MDC800 is not set
    # CONFIG_USB_MICROTEK is not set
    # USB Multimedia devices
    # CONFIG_USB_DABUSB is not set
    # CONFIG_USB_VICAM is not set
    # CONFIG_USB_DSBR is not set
    # CONFIG_USB_IBMCAM is not set
    # CONFIG_USB_KONICAWC is not set
    # CONFIG_USB_OV511 is not set
    # CONFIG_USB_SE401 is not set
    # CONFIG_USB_SN9C102 is not set
    # CONFIG_USB_STV680 is not set
    # CONFIG_USB_PWC is not set
    # USB Network Adapters
    # CONFIG_USB_CATC is not set
    # CONFIG_USB_KAWETH is not set
    # CONFIG_USB_PEGASUS is not set
    # CONFIG_USB_RTL8150 is not set
    # CONFIG_USB_USBNET is not set
    CONFIG_USB_MON=y
    # USB port drivers
    # USB Serial Converter support
    # CONFIG_USB_SERIAL is not set
    # USB Miscellaneous drivers
    # CONFIG_USB_EMI62 is not set
    # CONFIG_USB_EMI26 is not set
    # CONFIG_USB_AUERSWALD is not set
    # CONFIG_USB_RIO500 is not set
    # CONFIG_USB_LEGOTOWER is not set
    # CONFIG_USB_LCD is not set
    # CONFIG_USB_LED is not set
    # CONFIG_USB_CYTHERM is not set
    # CONFIG_USB_PHIDGETKIT is not set
    # CONFIG_USB_PHIDGETSERVO is not set
    # CONFIG_USB_IDMOUSE is not set
    # CONFIG_USB_SISUSBVGA is not set
    # CONFIG_USB_LD is not set
    # CONFIG_USB_TEST is not set
    # USB DSL modem support
    # USB Gadget Support
    # CONFIG_USB_GADGET is not set
    # MMC/SD Card support
    # CONFIG_MMC is not set
    # InfiniBand support
    # CONFIG_INFINIBAND is not set
    # SN Devices
    # File systems
    CONFIG_EXT2_FS=y
    # CONFIG_EXT2_FS_XATTR is not set
    # CONFIG_EXT2_FS_XIP is not set
    CONFIG_EXT3_FS=y
    CONFIG_EXT3_FS_XATTR=y
    # CONFIG_EXT3_FS_POSIX_ACL is not set
    # CONFIG_EXT3_FS_SECURITY is not set
    CONFIG_JBD=y
    # CONFIG_JBD_DEBUG is not set
    CONFIG_FS_MBCACHE=y
    # CONFIG_REISERFS_FS is not set
    # CONFIG_JFS_FS is not set
    # CONFIG_FS_POSIX_ACL is not set
    # CONFIG_XFS_FS is not set
    # CONFIG_MINIX_FS is not set
    # CONFIG_ROMFS_FS is not set
    CONFIG_INOTIFY=y
    # CONFIG_QUOTA is not set
    CONFIG_DNOTIFY=y
    # CONFIG_AUTOFS_FS is not set
    CONFIG_AUTOFS4_FS=y
    # CONFIG_FUSE_FS is not set
    # CD-ROM/DVD Filesystems
    CONFIG_ISO9660_FS=y
    CONFIG_JOLIET=y
    # CONFIG_ZISOFS is not set
    CONFIG_UDF_FS=y
    CONFIG_UDF_NLS=y
    # DOS/FAT/NT Filesystems
    CONFIG_FAT_FS=y
    CONFIG_MSDOS_FS=y
    CONFIG_VFAT_FS=y
    CONFIG_FAT_DEFAULT_CODEPAGE=437
    CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
    # CONFIG_NTFS_FS is not set
    # Pseudo filesystems
    CONFIG_PROC_FS=y
    CONFIG_PROC_KCORE=y
    CONFIG_SYSFS=y
    CONFIG_TMPFS=y
    # CONFIG_HUGETLBFS is not set
    # CONFIG_HUGETLB_PAGE is not set
    CONFIG_RAMFS=y
    # CONFIG_RELAYFS_FS is not set
    # 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 is not set
    # Network File Systems
    # CONFIG_NFS_FS is not set
    # CONFIG_NFSD is not set
    # CONFIG_SMB_FS is not set
    # CONFIG_CIFS is not set
    # CONFIG_NCP_FS is not set
    # CONFIG_CODA_FS is not set
    # CONFIG_AFS_FS is not set
    # CONFIG_9P_FS is not set
    # Partition Types
    # CONFIG_PARTITION_ADVANCED is not set
    CONFIG_MSDOS_PARTITION=y
    # Native Language Support
    CONFIG_NLS=y
    CONFIG_NLS_DEFAULT="iso8859-1"
    CONFIG_NLS_CODEPAGE_437=y
    # CONFIG_NLS_CODEPAGE_737 is not set
    # CONFIG_NLS_CODEPAGE_775 is not set
    # CONFIG_NLS_CODEPAGE_850 is not set
    # CONFIG_NLS_CODEPAGE_852 is not set
    # CONFIG_NLS_CODEPAGE_855 is not set
    # CONFIG_NLS_CODEPAGE_857 is not set
    # CONFIG_NLS_CODEPAGE_860 is not set
    # CONFIG_NLS_CODEPAGE_861 is not set
    # CONFIG_NLS_CODEPAGE_862 is not set
    # CONFIG_NLS_CODEPAGE_863 is not set
    # CONFIG_NLS_CODEPAGE_864 is not set
    # CONFIG_NLS_CODEPAGE_865 is not set
    # CONFIG_NLS_CODEPAGE_866 is not set
    # CONFIG_NLS_CODEPAGE_869 is not set
    # CONFIG_NLS_CODEPAGE_936 is not set
    # CONFIG_NLS_CODEPAGE_950 is not set
    # CONFIG_NLS_CODEPAGE_932 is not set
    # CONFIG_NLS_CODEPAGE_949 is not set
    # CONFIG_NLS_CODEPAGE_874 is not set
    # CONFIG_NLS_ISO8859_8 is not set
    # CONFIG_NLS_CODEPAGE_1250 is not set
    # CONFIG_NLS_CODEPAGE_1251 is not set
    # CONFIG_NLS_ASCII is not set
    CONFIG_NLS_ISO8859_1=y
    # CONFIG_NLS_ISO8859_2 is not set
    # CONFIG_NLS_ISO8859_3 is not set
    # CONFIG_NLS_ISO8859_4 is not set
    # CONFIG_NLS_ISO8859_5 is not set
    # CONFIG_NLS_ISO8859_6 is not set
    # CONFIG_NLS_ISO8859_7 is not set
    # CONFIG_NLS_ISO8859_9 is not set
    # CONFIG_NLS_ISO8859_13 is not set
    # CONFIG_NLS_ISO8859_14 is not set
    # CONFIG_NLS_ISO8859_15 is not set
    # CONFIG_NLS_KOI8_R is not set
    # CONFIG_NLS_KOI8_U is not set
    # CONFIG_NLS_UTF8 is not set
    # Profiling support
    # CONFIG_PROFILING is not set
    # Kernel hacking
    # CONFIG_PRINTK_TIME is not set
    # CONFIG_DEBUG_KERNEL is not set
    CONFIG_LOG_BUF_SHIFT=14
    CONFIG_DEBUG_BUGVERBOSE=y
    CONFIG_EARLY_PRINTK=y
    CONFIG_X86_FIND_SMP_CONFIG=y
    CONFIG_X86_MPPARSE=y
    # Security options
    # CONFIG_KEYS is not set
    # CONFIG_SECURITY is not set
    # Cryptographic options
    CONFIG_CRYPTO=y
    CONFIG_CRYPTO_HMAC=y
    # CONFIG_CRYPTO_NULL is not set
    # CONFIG_CRYPTO_MD4 is not set
    CONFIG_CRYPTO_MD5=y
    CONFIG_CRYPTO_SHA1=y
    # CONFIG_CRYPTO_SHA256 is not set
    # CONFIG_CRYPTO_SHA512 is not set
    # CONFIG_CRYPTO_WP512 is not set
    # CONFIG_CRYPTO_TGR192 is not set
    CONFIG_CRYPTO_DES=y
    # CONFIG_CRYPTO_BLOWFISH is not set
    # CONFIG_CRYPTO_TWOFISH is not set
    # CONFIG_CRYPTO_SERPENT is not set
    # CONFIG_CRYPTO_AES_586 is not set
    # CONFIG_CRYPTO_CAST5 is not set
    # CONFIG_CRYPTO_CAST6 is not set
    # CONFIG_CRYPTO_TEA is not set
    # CONFIG_CRYPTO_ARC4 is not set
    # CONFIG_CRYPTO_KHAZAD is not set
    # CONFIG_CRYPTO_ANUBIS is not set
    CONFIG_CRYPTO_DEFLATE=y
    # CONFIG_CRYPTO_MICHAEL_MIC is not set
    # CONFIG_CRYPTO_CRC32C is not set
    # CONFIG_CRYPTO_TEST is not set
    # Hardware crypto devices
    # CONFIG_CRYPTO_DEV_PADLOCK is not set
    # Library routines
    # CONFIG_CRC_CCITT is not set
    # CONFIG_CRC16 is not set
    CONFIG_CRC32=y
    # CONFIG_LIBCRC32C is not set
    CONFIG_ZLIB_INFLATE=y
    CONFIG_ZLIB_DEFLATE=y
    CONFIG_GENERIC_HARDIRQS=y
    CONFIG_GENERIC_IRQ_PROBE=y
    CONFIG_X86_BIOS_REBOOT=y
    CONFIG_PC=y
    I will be more than happy to provide any more info that you may need. This has bothered me for a while, so any help would be much appreciated!

    Thanks for the reply penguin!
    I tried adding it to the kernel, but it did not work. I think usb_hid is just for usb keyboards/mouses/etc.
    I noticed that every time I remove and plugin my flash drive /var/log/messages.log says something slightly different for my flash drive if that helps:
    Oct 30 18:10:43 myhost sda1
    Oct 30 18:10:43 myhost Attached scsi removable disk sda at scsi4, channel 0, id
    Oct 30 18:10:43 myhost Attached scsi generic sg0 at scsi4, channel 0, id 0, lun
    Oct 30 18:11:10 myhost (jftaylor21-896): starting (version 2.12.0), pid 896 user
    Oct 30 18:11:10 myhost (jftaylor21-896): Resolved address "xml:readonly:/opt/gnosition 0
    Oct 30 18:11:10 myhost (jftaylor21-896): Resolved address "xml:readwrite:/home/j
    Oct 30 18:11:10 myhost (jftaylor21-896): Resolved address "xml:readonly:/opt/gnoition 2
    Oct 30 18:11:50 myhost usb 1-6: USB disconnect, address 3
    Oct 30 18:11:55 myhost usb 1-6: new high speed USB device using ehci_hcd and add
    Oct 30 18:11:55 myhost scsi5 : SCSI emulation for USB Mass Storage devices
    Any other suggestions?

  • Nvidia is not working after upgrading nvidia driver and kernel

    I upgraded nvidia driver and kernel. After rebooting graphic mode is not working. Here xorg.o.log
    [ 281.180]
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    [ 281.181]
    X.Org X Server 1.10.0.902 (1.10.1 RC 2)
    Release Date: 2011-04-08
    [ 281.181] X Protocol Version 11, Revision 0
    [ 281.181] Build Operating System: Linux 2.6.38-ARCH i686
    [ 281.181] Current Operating System: Linux localhost 2.6.38-ARCH #1 SMP PREEMPT Wed Mar 30 07:14:27 UTC 2011 i686
    [ 281.181] Kernel command line: BOOT_IMAGE=/boot/vmlinuz26 root=/dev/disk/by-uuid/b766e332-2aad-4047-8562-567180150189 ro quiet
    [ 281.182] Build Date: 11 April 2011 10:49:12AM
    [ 281.182]
    [ 281.182] Current version of pixman: 0.20.2
    [ 281.182] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 281.182] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 281.183] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Apr 14 17:11:37 2011
    [ 281.183] (==) Using config file: "/etc/X11/xorg.conf"
    [ 281.183] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 281.183] (==) ServerLayout "Layout0"
    [ 281.183] (**) |-->Screen "Screen0" (0)
    [ 281.183] (**) | |-->Monitor "Monitor0"
    [ 281.184] (**) | |-->Device "Videocard0"
    [ 281.184] (**) |-->Input Device "Keyboard0"
    [ 281.184] (**) |-->Input Device "Mouse0"
    [ 281.184] (**) Option "Xinerama" "0"
    [ 281.184] (==) Automatically adding devices
    [ 281.184] (==) Automatically enabling devices
    [ 281.184] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 281.184] Entry deleted from font path.
    [ 281.184] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 281.184] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 281.184] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 281.184] (WW) Disabling Keyboard0
    [ 281.184] (WW) Disabling Mouse0
    [ 281.184] (II) Loader magic: 0x822e120
    [ 281.184] (II) Module ABI versions:
    [ 281.184] X.Org ANSI C Emulation: 0.4
    [ 281.184] X.Org Video Driver: 10.0
    [ 281.184] X.Org XInput driver : 12.2
    [ 281.184] X.Org Server Extension : 5.0
    [ 281.185] (--) PCI:*(0:1:0:0) 10de:0322:0000:0000 rev 161, Mem @ 0xfd000000/16777216, 0xe8000000/134217728, BIOS @ 0x????????/131072
    [ 281.185] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 281.185] (II) LoadModule: "extmod"
    [ 281.185] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 281.185] (II) Module extmod: vendor="X.Org Foundation"
    [ 281.185] compiled for 1.10.0.902, module version = 1.0.0
    [ 281.185] Module class: X.Org Server Extension
    [ 281.185] ABI class: X.Org Server Extension, version 5.0
    [ 281.185] (II) Loading extension MIT-SCREEN-SAVER
    [ 281.185] (II) Loading extension XFree86-VidModeExtension
    [ 281.185] (II) Loading extension XFree86-DGA
    [ 281.185] (II) Loading extension DPMS
    [ 281.185] (II) Loading extension XVideo
    [ 281.185] (II) Loading extension XVideo-MotionCompensation
    [ 281.185] (II) Loading extension X-Resource
    [ 281.185] (II) LoadModule: "dbe"
    [ 281.185] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 281.185] (II) Module dbe: vendor="X.Org Foundation"
    [ 281.185] compiled for 1.10.0.902, module version = 1.0.0
    [ 281.185] Module class: X.Org Server Extension
    [ 281.185] ABI class: X.Org Server Extension, version 5.0
    [ 281.185] (II) Loading extension DOUBLE-BUFFER
    [ 281.185] (II) LoadModule: "glx"
    [ 281.186] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 281.216] (II) Module glx: vendor="NVIDIA Corporation"
    [ 281.217] compiled for 4.0.2, module version = 1.0.0
    [ 281.217] Module class: X.Org Server Extension
    [ 281.217] (II) NVIDIA GLX Module 173.14.28 Wed Sep 29 10:17:05 PDT 2010
    [ 281.217] (II) Loading extension GLX
    [ 281.217] (II) LoadModule: "record"
    [ 281.217] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 281.217] (II) Module record: vendor="X.Org Foundation"
    [ 281.217] compiled for 1.10.0.902, module version = 1.13.0
    [ 281.217] Module class: X.Org Server Extension
    [ 281.217] ABI class: X.Org Server Extension, version 5.0
    [ 281.217] (II) Loading extension RECORD
    [ 281.217] (II) LoadModule: "dri"
    [ 281.217] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 281.217] (II) Module dri: vendor="X.Org Foundation"
    [ 281.217] compiled for 1.10.0.902, module version = 1.0.0
    [ 281.217] ABI class: X.Org Server Extension, version 5.0
    [ 281.217] (II) Loading extension XFree86-DRI
    [ 281.217] (II) LoadModule: "dri2"
    [ 281.217] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 281.218] (II) Module dri2: vendor="X.Org Foundation"
    [ 281.218] compiled for 1.10.0.902, module version = 1.2.0
    [ 281.218] ABI class: X.Org Server Extension, version 5.0
    [ 281.218] (II) Loading extension DRI2
    [ 281.218] (II) LoadModule: "nvidia"
    [ 281.218] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 281.218] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 281.218] compiled for 4.0.2, module version = 1.0.0
    [ 281.218] Module class: X.Org Video Driver
    [ 281.218] ================ WARNING WARNING WARNING WARNING ================
    [ 281.219] This server has a video driver ABI version of 10.0 that is not
    supported by this NVIDIA driver. Please check
    http://www.nvidia.com/ for driver updates or downgrade to an X
    server with a supported driver ABI.
    [ 281.219] =================================================================
    [ 281.219] (II) NVIDIA dlloader X Driver 173.14.28 Wed Sep 29 09:55:18 PDT 2010
    [ 281.219] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 281.219] (--) using VT number 7
    [ 281.222] (II) Loading sub module "fb"
    [ 281.222] (II) LoadModule: "fb"
    [ 281.222] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 281.222] (II) Module fb: vendor="X.Org Foundation"
    [ 281.222] compiled for 1.10.0.902, module version = 1.0.0
    [ 281.222] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 281.222] (II) Loading sub module "wfb"
    [ 281.222] (II) LoadModule: "wfb"
    [ 281.222] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 281.223] (II) Module wfb: vendor="X.Org Foundation"
    [ 281.223] compiled for 1.10.0.902, module version = 1.0.0
    [ 281.223] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 281.223] (II) Loading sub module "ramdac"
    [ 281.223] (II) LoadModule: "ramdac"
    [ 281.223] (II) Module "ramdac" already built-in
    [ 281.223] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 281.226] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 281.226] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 281.226] (II) UnloadModule: "nvidia"
    [ 281.226] (II) Unloading nvidia
    [ 281.226] (II) UnloadModule: "wfb"
    [ 281.226] (II) Unloading wfb
    [ 281.226] (II) UnloadModule: "fb"
    [ 281.226] (II) Unloading fb
    [ 281.226] (EE) Screen(s) found, but none have a usable configuration.
    [ 281.226]
    Fatal server error:
    [ 281.226] no screens found
    [ 281.226]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 281.226] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 281.226]

    bilgee0629 wrote:
    Arjann wrote:
    I think the new xorg-server is the problem as it isn't supported by this nvidia driver yet.
    You could try to install the nouveau driver until nvidia comes with a new version of the 173 branch that supports xorg-server 1.10, see: https://wiki.archlinux.org/index.php/Nouveau for information. As lower-grade options, you might also consider xf86-video-nv and xf86-video-vesa.
    Should i uninstall nvidia driver, then install it?
    I think thats the easy way yes, else you have to blacklist the nvidia kernel module.. check the wiki link of nouveau for details.

  • Nvidia Driver and system "hang" issue

    Hi all,
    This is my first post on these forums but im not new to Mac or windows. Here's my issue. I just installed a copy of Windows 7 Ultimate RTM on my Macbook. Its the first unibody Macbook 2.4ghz w/ 4gigs of ram. Nvidia 9400M graphics.
    2 Things happen,one is that a few times a day ill get a "Nvidia Windows Kernel mode driver, version 186.81 failed" error. The symtoms of which are a black screen for a few seconds and then the driver restarts and all is well.
    I know 186.81 is the latest 9400M driver. So im not sure why this happens but maybe it relates to my other issue.
    My second issue is that the system will, as best as i can describe it, "hang" for a second or two. When i say hang i do not mean freeze to the point of needing to restart, its more that the "hang" happens and a few seconds later its as if nothing happened (this issue is very fequent).
    Anyone else ever see or hear anything like this? Please let me know if there is a better place to post this question as well.
    Thanks!
    P.S. Posted this somewhere else and got 1 reply so far, pasted below:
    Okay, how about uninstall or roll back the driver?
    use Driver Sweeper 2
    just let Windows 7 install its own driver
    more like the hang is hard drive has spun down
    I would recommend creating your own thread and question instead.
    by "the hatter"

    Hello guys and thanks for your answers.
    I thought that my problem was linked to UEFI, so I reinstalled the os with BIOS and MBR. Unfortunately I had the same problem, with one difference: the auto/default resolution of GRUB and FrameBuffer was 800x600 instead of 1920x1080 for UEFI.
    About the nouveau driver, I need 3D acceleration to play games so I need the proprietary driver.
    So I decided to test the X server to see if something got wrong.
    I uninstalled the nvidia driver and reboot to have my framebuffer back.
    Then I edit the ~/.xinitrc file :
        xterm & sleep 10
    I reinstalled the nvidia driver and reboot : GRUB, then framebuffer for 1 second, then a black screen.
    I tried to log in: login + [Enter] + password + [Enter]
    I waited 2s then I entered the "startx" command.
    And the xterm window appeared. And the best is after the 10s the X server shuts down and the framebuffer was back !!! Unbelievable !!!
    So I continued the installation : Gnome + Gdm.
    After the reboot : Grub, then framebuffer for 1 second, then a black screen, then Gdm login screen !!!
    So it seems to be a problem with nvidia driver and the framebuffer.
    After the Gnome + Gdm installation I managed to display the framebuffer in tty2. But I don't know if tty2 was working before (when tty1 only display black screen).
    My conclusion and installation tip is to not reboot after the nvidia driver installation and to install a desktop environment + a display manager and to pray to not have problem.

  • Most common BW data load errors in production and how to solve them ..

    Hi All,
    Most common BW data load errors in production and how to solve them ..
    Any doc on it ,if so plz send it across to this id [email protected]
    Thanks in advance.
    Rgrds
    shoba

    hi
    1) RFC connection lost.
    2) Invalid characters while loading.
    3) ALEREMOTE user is locked.
    4) Lower case letters not allowed.
    5) While loading the data i am getting messeage that 'Record
    the field mentioned in the errror message is not mapped to any infoboject in the transfer rule.
    6) object locked.
    7) "Non-updated Idocs found in Source System".
    8) While loading master data, one of the datapackage has a red light error message:
    Master data/text of characteristic 'so and so' already deleted .
    9) extraction job aborted in r3
    10) request couldnt be activated because theres another request in the psa with a smaller sid
    11) repeat of last delta not possible
    12) datasource not replicated
    13) datasource/transfer structure not active ´
    14) Idoc Or Trfc Error
    15. ODS Activation Error

  • Do I have to uninstall the CS4 software before updating the NVIDIA driver and reinstall CS4 after?

    I have just installed CS4 on Windows 7 and I get the message that I need to update NVIDIA driver.
    Is it really neccassary to update driver even if I have no problems using Photoshop?
    Do I have to uninstall the CS4 software before updating the NVIDIA  driver and reinstall CS4 afterwards or is there a way around it?
    Here are the technical details:
    Processor speed: 3325 MHz
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GT 220/PCI/SSE2
    OpenGL Drawing: Enabled.
    Video Card: NVIDIA GeForce GT 220
    Video Mode: 1680 x 1050 x 4294967296 colors
    Video Card Driver: nvd3dum.dll,nvwgf2um.dll,nvwgf2um.dll
    Driver Version: 8.15.11.8627
    Built-in memory: 3063 MB
    Free memory: 1981 MB
    Memory available to Photoshop: 1643 MB
    Memory used by Photoshop: 60 %
    Image cache levels: 4

    I have never had to reinstall any program for a video driver.
    Now, check out the instructions for your particular nVidia driver, and the exact steps can differ. Just did my Quadro FX-4500 and it was just an install over the older driver. However, looking at another nVidia card's driver, and there were 3-4 settings in the nVidia console, that had to be reset BEFORE installing that driver. Did not affect me, but would have been a different operation for the next guy, with a different nVidia card. nVidia makes it easy with the necessary instructions - follow those to the letter, or issues can arise and the entire driver can get hosed. Things could be a simple as download, and execute, to having to do several things before you execute.
    Good luck,
    Hunt

  • Processchain errors in Production and how to solve those issues

    Dear All,
    Please share some process chain errors in production and how to solve those errors as well,
    Please send me if any one have the list of errors and how you are solved those..
    I am very new to BW,am also preparing my list of errors and solutions to fix them..Please share me if any one have ?
    Thanks

    Hi
    Table of Contents
    1.     Time stamp error     2
    2.      PSA error records     4
    3.      SID not found for characteristic     7
    4.      Error calling number range object     8
    5.      Trfc error     10
    6.      ALE REMOTE lock     13
    7.      Delta fails     14
    8.      Deleting setup table     18
    9.      How to run statistical setup for different Application components     19
    10. How to do selective deletion     22
    11. Roll up     24
    11. Compression or collapse     25
    12. How to do Attribute change run     27
    1.Time stamp error
    Resolution procedure
    Go to RSA1&#61664;Source system
    Run program RS_TRANSTRU_ACTIVATE_ALL
    Mention source system and Info source and then execute.
    Now the transfer structure will be automatically activated.
    Then proceed with the reload, it will get success now.
    2. PSA error records
    Go to details tab, we will find its packet no. and its record no.
    Resolution procedure
    Click on PSA icon in monitor and select the error data packet
    Double click on error record and edit it to the correct value,
    select  save.
    Now update from PSA to target by selecting the option Start update immediately.
    3. SID not found for characteristic
    Resolution procedure
    a. Remove the failed request from data target by making its QM status into red.
    b. Load Master data for characteristic using full update.
    c. Then reload the transactional data.
    4. Error calling number range object
    Resolution procedure
    Note down the assigned dimension into the cube for “0VAL_TYPE”
    copy the dimension name
    Go to RSRV transaction
    Tests in Transaction RSRV -> All Elementary Tests ->Transactional Data then double click on “Comparison of Number Range of a Dimension and Maximum DIMID”- then click on the right pane in same->Mention the cube name and dimension name, click on enter.
    Then click on correct error. It will correct the error.
    5. Trfc error
    Resolution procedure
    Go to SM58
    Go to edit->Execute LUW.
    Then do refresh in monitor.
    Now it will pick the records and the load will get success.
    Some times we found that some packets will not get updated even if the extraction is showing as complete.
    Do manual update of each packet
    6. ALE REMOTE lock
    Resolution procedure
    This can happen when user or ALEREMOTE is accessing the same table
    a.     Remove failed request from data target by making its QM status into red.
    b.     Check into sm12 and delete the lock, usually the BASIS deletes them
    c.     Reload the package
    7. Delta fails
    Resolution procedure
    R/3->BW
    Data is coming from R/3 then make the request technical status red in monitor and remove the request from manage.
    go to info package restart the load, then you will get a pop up saying that ‘repeat of last delta’ click on request again.
    Go back to manage and look for the delta type, it will show as Repeat of last delta.
    BW->BW(Data mart)
    Delta load failed from ODS to cube/any data mart.
    Make its technical status as red
    Go to manage and remove the failed request by making its QM status as red.
    It is updating from ODS, so we have to remove the data mart status in ODS manage, before restarting delta
    If you click on data mart status it will pop up a window
    Click on delete icon, select YES and then ok.
    Now refresh manage the data mart status will get deleted.
    If you load now the failed delta will get success.

  • MBL , nvidia driver and CS5

    I am having an issue with MBL (CS5 version) .  I get a "Not Responding" message when I open the EDIT section of the plugin.  The screen turns black then white then the message.
    I have contaced Red Giant  and they say:
    Update for Case # 16565
    Hello Craig,
    We currently have a compatibility issue with the latest Nvidia Driver. Can you try reverting to an older version of the Nvidia driver and let me know if this resolves your issue?
    Thanks,
    -Nate
    Would you do this in a system that is working perfectly otherwise?  (WIn 7, Quadro FX3800 etc...)
    Can anyone let me know what version of the NVIDIA driver they are using please.  How do I know what is current and what to roll back to?
    RDA   -   I have sent you a PM because I know it works for you as tested yesterday.

    I don't mind you posting my PMs for the common good.
    Now, regarding the nvidia drivers for the Quadro cards, version 266.35 was available fro download until yesterday or early today when it was replaced by version 266.45 which broke MBL on my machine as explained in my PM.
    Once I removed the HD audio driver, which is part of the nvidia package, MBL was working again.
    Here is what I suggest you should do :
    1. Download and install the 266.45 drivers.
    2. Remove the nvidia HD Audio driver in the "Uninstall or change a program" panel..
    3. Launch PPro and apply a MBL effect to a clip and see if my solution works for you.
    Good luck (nod to Bill)
    Robert

  • NVIDIA driver and tty resolution on UEFI system

    I managed to install archlinux on my new computer which has the UEFI system.
    My first problem was the not display of the framebuffer (boot message) after the GRUB menu and before tty.
    The problem was the framebuffer doesn't support higher resolution than 800x600x32. If I put an higher resolution I just have a black screen during the framebuffer phase.
    Whatever the resolution I chose for the framebuffer, I get a tty with a 1280x1080 resolution. But I don't know why or how.
    Then I installed X and the nvidia driver. After that the tty was not displayed (just a black screen). GRUB menu was well displayed and framebuffer was only displayed in 800x600 resolution.
    I suspect the nvidia is not able to display tty in high resolution.
    But I don't know how to lower the tty resolution to check that.
    Here is my way to force GRUB menu and framebuffer to 800x600 resolution :
    /etc/default/grub
    GRUB_GFXMODE=800x600x32
    GRUB_GFXPAYLOAD_LINUX=keep
    Could someone explain to me why my tty resolution switch to 1280x1080 while the framebuffer is set to 800x600.
    And if someone knows how to configure the nvidia driver to display high resolution in framebuffer and tty?
    My desktop config:
    * Motherboard ASUS P8Z77-V LX
    * Graphic card MSI GeForce GTX 660 N660-2GD5/OC
    * UEFI system
    * SATA hard drive with GPT with first partiton: 512MiB FAT 32 UEFI system partition
    Last edited by Nikus (2013-05-16 12:05:37)

    Hello guys and thanks for your answers.
    I thought that my problem was linked to UEFI, so I reinstalled the os with BIOS and MBR. Unfortunately I had the same problem, with one difference: the auto/default resolution of GRUB and FrameBuffer was 800x600 instead of 1920x1080 for UEFI.
    About the nouveau driver, I need 3D acceleration to play games so I need the proprietary driver.
    So I decided to test the X server to see if something got wrong.
    I uninstalled the nvidia driver and reboot to have my framebuffer back.
    Then I edit the ~/.xinitrc file :
        xterm & sleep 10
    I reinstalled the nvidia driver and reboot : GRUB, then framebuffer for 1 second, then a black screen.
    I tried to log in: login + [Enter] + password + [Enter]
    I waited 2s then I entered the "startx" command.
    And the xterm window appeared. And the best is after the 10s the X server shuts down and the framebuffer was back !!! Unbelievable !!!
    So I continued the installation : Gnome + Gdm.
    After the reboot : Grub, then framebuffer for 1 second, then a black screen, then Gdm login screen !!!
    So it seems to be a problem with nvidia driver and the framebuffer.
    After the Gnome + Gdm installation I managed to display the framebuffer in tty2. But I don't know if tty2 was working before (when tty1 only display black screen).
    My conclusion and installation tip is to not reboot after the nvidia driver installation and to install a desktop environment + a display manager and to pray to not have problem.

  • Need to compile nvidia driver for a custom kernel [SOLVED]

    I compiled a custom kernel following this wiki page: http://wiki.archlinux.org/index.php/Ker … rom_Source
    I can boot into it just fine.  I now want to compile an nvidia driver for use with it and followed the steps on this wiki page: http://wiki.archlinux.org/index.php/NVI … tom_kernel
    I run into a problem when makepkg trys to compile it.  Here is the output:
    $ cd ~/devel/abs/nvidia/
    $ makepkg -c
    ==> Making package: nvidia-my 190.42-1 x86_64 (Thu Nov 5 17:42:29 EST 2009)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Found NVIDIA-Linux-x86_64-190.42-pkg0.run in build dir
    ==> Validating source files with md5sums...
    NVIDIA-Linux-x86_64-190.42-pkg0.run ... Passed
    ==> Extracting Sources...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    Creating directory NVIDIA-Linux-x86_64-190.42-pkg0
    Verifying archive integrity... OK
    Uncompressing NVIDIA Accelerated Graphics Driver for Linux-x86_64 190.42..................................................................................................................................................
    If you are using a Linux 2.4 kernel, please make sure
    you either have configured kernel sources matching your
    kernel or the correct set of kernel headers installed
    on your system.
    If you are using a Linux 2.6 kernel, please make sure
    you have configured kernel sources matching your kernel
    installed on your system. If you specified a separate
    output directory using either the "KBUILD_OUTPUT" or
    the "O" KBUILD parameter, make sure to specify this
    directory with the SYSOUT environment variable or with
    the equivalent nvidia-installer command line option.
    Depending on where and how the kernel sources (or the
    kernel headers) were installed, you may need to specify
    their location with the SYSSRC environment variable or
    the equivalent nvidia-installer command line option.
    *** Unable to determine the target kernel version. ***
    make: *** [select_makefile] Error 1
    ==> ERROR: Build Failed.
    Aborting...
    The step it's choking on is (from the PKGBUILD), "make SYSSRC=/lib/modules/${_kernver}/build module || return 1"
    What am I doing wrong?
    My PKGBUILD:
    pkgname=nvidia-my
    pkgver=190.42
    _kernver='2.6.32-rc6-MINE'
    pkgrel=1
    pkgdesc="NVIDIA drivers for kernel26."
    arch=('i686' 'x86_64')
    [ "$CARCH" = "i686" ] && ARCH=x86
    [ "$CARCH" = "x86_64" ] && ARCH=x86_64
    url="http://www.nvidia.com/"
    depends=('kernel26>=2.6.31' 'kernel26<2.6.32' "nvidia-utils=${pkgver}")
    conflicts=('nvidia-96xx' 'nvidia-173xx')
    license=('custom')
    install=nvidia.install
    source=("http://download.nvidia.com/XFree86/Linux-$ARCH/${pkgver}/NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run")
    md5sums=('f94806feee87de756d14fe3e9bcaf05a')
    [ "$CARCH" = "x86_64" ] && md5sums=('ae431ff849ec01446e6724f9fcfe3bb4')
    build() {
    cd $srcdir
    sh NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run --extract-only
    cd NVIDIA-Linux-$ARCH-${pkgver}-pkg0
    cd usr/src/nv/
    ln -s Makefile.kbuild Makefile
    make SYSSRC=/lib/modules/${_kernver}/build module || return 1
    mkdir -p $pkgdir/lib/modules/${_kernver}/kernel/drivers/video/
    install -m644 nvidia.ko $pkgdir/lib/modules/${_kernver}/kernel/drivers/video/
    sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/nvidia.install
    My nvidia.install
    post_install() {
    KERNEL_VERSION='2.6.32-rc6-MINE'
    depmod $KERNEL_VERSION
    post_upgrade() {
    post_install
    rmmod nvidia || echo 'In order to use the new nvidia module, exit Xserver and unload it manually.'
    post_remove() {
    KERNEL_VERSION='2.6.32-rc6-MINE'
    depmod $KERNEL_VERSION
    Last edited by graysky (2009-11-07 10:54:33)

    Hello,
    I'm kind of a noob and am trying to get follow the directions from the Nvidia wiki on installing on a custom kernel.  I'm trying to use the abs method to install on kernel26rt version 2.6.33rt.  I followed directions exactly and am getting an error that I didn't find on any other posts.  Can you please take a look?  Here is my terminal:
    [jsadural@jlinux nvidia]$ makepkg -ci
    ==> Making package: nvidia-2633rt 270.30-3 (Wed Mar 30 08:53:08 PDT 2011)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
      -> Downloading NVIDIA-Linux-x86_64-270.30-no-compat32.run...
    --2011-03-30 08:53:08--  ftp://download.nvidia.com/XFree86/Linux … mpat32.run
               => “NVIDIA-Linux-x86_64-270.30-no-compat32.run.part”
    Resolving download.nvidia.com... 69.31.121.43
    Connecting to download.nvidia.com|69.31.121.43|:21... connected.
    Logging in as anonymous ... Logged in!
    ==> SYST ... done.    ==> PWD ... done.
    ==> TYPE I ... done.  ==> CWD (1) /XFree86/Linux-x86_64/270.30 ... done.
    ==> SIZE NVIDIA-Linux-x86_64-270.30-no-compat32.run ... 30037601
    ==> PASV ... done.    ==> RETR NVIDIA-Linux-x86_64-270.30-no-compat32.run ... done.
    Length: 30037601 (29M) (unauthoritative)
    100%[======================================>] 30,037,601   696K/s   in 42s     
    2011-03-30 08:53:50 (696 KB/s) - “NVIDIA-Linux-x86_64-270.30-no-compat32.run.part” saved [30037601]
    ==> Validating source files with md5sums...
        NVIDIA-Linux-x86_64-270.30-no-compat32.run ... Passed
    ==> Extracting Sources...
    ==> Starting build()...
    Creating directory NVIDIA-Linux-x86_64-270.30-no-compat32
    Verifying archive integrity... OK
    Uncompressing NVIDIA Accelerated Graphics Driver for Linux-x86_64 270.30........................................................................................................................
    NVIDIA: calling KBUILD...
    test -e include/generated/autoconf.h -a -e include/config/auto.conf || (    \
        echo;                                \
        echo "  ERROR: Kernel configuration is invalid.";        \
        echo "         include/generated/autoconf.h or include/config/auto.conf are missing.";\
        echo "         Run 'make oldconfig && make prepare' on kernel src to fix it.";    \
        echo;                                \
        /bin/false)
    mkdir -p /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/.tmp_versions ; rm -f /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/.tmp_versions/*
    make -f scripts/Makefile.build obj=/home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel
      cc -Wp,-MD,/home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/.nv.o.d  -nostdinc -isystem /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/include -I/usr/src/linux-2.6.33-rt/arch/x86/include -Iinclude  -include include/generated/autoconf.h -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -m64 -mtune=generic -mno-red-zone -mcmodel=kernel -funit-at-a-time -maccumulate-outgoing-args -fstack-protector -DCONFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Wframe-larger-than=2048 -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -I/home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel -Wall -MD -Wsign-compare -Wno-cast-qual -Wno-error -D__KERNEL__ -DMODULE -DNVRM -DNV_VERSION_STRING=\"270.30\" -Wno-unused-function -mcmodel=kernel -mno-red-zone -UDEBUG -U_DEBUG -DNDEBUG  -DMODULE -D"KBUILD_STR(s)=#s" -D"KBUILD_BASENAME=KBUILD_STR(nv)"  -D"KBUILD_MODNAME=KBUILD_STR(nvidia)"  -c -o /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.o /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c
    In file included from /usr/src/linux-2.6.33-rt/arch/x86/include/asm/uaccess.h:573:0,
                     from include/linux/poll.h:13,
                     from /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv-linux.h:84,
                     from /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:13:
    /usr/src/linux-2.6.33-rt/arch/x86/include/asm/uaccess_64.h: In function ‘copy_from_user’:
    /usr/src/linux-2.6.33-rt/arch/x86/include/asm/uaccess_64.h:35:6: warning: comparison between signed and unsigned integer expressions
    In file included from /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:13:0:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv-linux.h: At top level:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv-linux.h:251:35: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘nv_spinlock_t’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv-linux.h:1436:5: error: expected specifier-qualifier-list before ‘nv_spinlock_t’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_alloc_file_private’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:1993:5: error: implicit declaration of function ‘semaphore_init’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:1994:5: error: ‘nv_file_private_t’ has no member named ‘waitqueue’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:1995:5: error: implicit declaration of function ‘atomic_spin_lock_init’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:1995:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_kern_poll’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:2790:30: error: ‘nv_file_private_t’ has no member named ‘waitqueue’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:2793:5: error: implicit declaration of function ‘atomic_spin_lock_irqsave’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:2793:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:2804:5: error: implicit declaration of function ‘atomic_spin_unlock_irqrestore’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:2804:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_kern_close_registry’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:3595:18: error: ‘nv_file_private_t’ has no member named ‘off’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:3611:22: error: ‘nv_file_private_t’ has no member named ‘off’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_kern_write_registry’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:3703:51: error: ‘nv_file_private_t’ has no member named ‘off’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:3710:45: error: ‘nv_file_private_t’ has no member named ‘off’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:3720:9: error: ‘nv_file_private_t’ has no member named ‘off’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_post_event’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4330:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4347:5: error: ‘nv_file_private_t’ has no member named ‘waitqueue’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4348:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_get_event’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4362:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4365:9: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4390:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    make[3]: *** [/home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.o] Error 1
    make[2]: *** [_module_/home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel] Error 2
    NVIDIA: left KBUILD.
    nvidia.ko failed to build!
    make[1]: *** [module] Error 1
    make: *** [module] Error 2
    ==> ERROR: A failure occurred in build().
        Aborting...
    thanks,
    jason

  • What does the xantrex driver error 5 mean and how to solve it?

    Dear Experts,
    I downloaded a new XANTREX driver and used it to control our new XHR
    150-7 power supply. I tried to use the GET STRAT.vi to control the
    output of the power supply. The output could be controlled according to
    the command input. However, there is always an ERROR 5 message poped
    out whenever it ran. The error source seemed to be in the DELAY &
    READ.vi.
    I would be most grateful if you could tell me how solve this problem at your earliest convenience.
    Thanks a lot for your attention and help,
    James

    Exactly which driver did you downlaod and from where? By "GET STRAT", do you mean one of the Getting Started VIs? Error 5 means "NI-488:  Command requires GPIB Controller to be System Controller." Are you using GPIB to control the instrument? If so, what type of board are you using and which version of VISA and NI-488? If the error only occurs on a read, try issuing the query from MAX and see if the error occurs there. In a couple of the Xantrex drivers I looked at, there seemed to be some fixed delays after a write and before a read. You might try increasing those values to see if that makes any difference.

  • Fglrx and custom kernel 2.6.16

    I know that there are a lot of post about this issue in the forum, but i couldn't find a solution, and believe me, I`ve spent about 4 hours looking through the forum and google (maybe im a little dumb) with no results!
    The problem is that i can't compile the ATI driver under the kernel version 2.6.16, i tried with the patched version from the pacman repositories (actually it compiles, but hungs my system badly) and with the official ATI release...
    Also under the 2.6.15 kernel the ati-fglrx pacman package didn't worked neither the one from ATI, i get unresolved symbols, but i managed to make it work by mergeing some files from both packages!
    So, was anyone able to make the FGLRX driver (8.23.7) work under the latest kernel??
    PD: Now i`m going to try with the new 8.24.8 arch linux release! And sorry for my bad english! XD

    hi there
    i also had some probs with installing those drivers (8.23.7) with a custom kernel (custom beyond). This thread fixed my probs
    http://bbs.archlinux.org/viewtopic.php? … highlight=
    The essential part of this was to compile my kernel from source and to then do the 'symlink trick' as described in the post. Hope it helps

  • Nvidia module for custom kernel

    Hi all. I've compiled a custom kernel using abs according to the instructions on the wiki, but I'm having a hard time installing the nvidia module using the instructions on the Nvidia page of the wiki. The install always aborts complaining of not being able to find the kernel source. I do have the kernel-headers installed:
    [root@myhost greg]# pacman -Ss linux-headers
    core/linux-headers 3.1.5-1 [installed]
        Header files and scripts for building modules for linux kernel
    I've also edited the nvidia.install and PKGBUILD files to point to the correct version file:
    [greg@myhost ~]$ cat /lib/modules/3.1.5-1-test/extramodules/version
    3.1.5-1-test
    I've really searched hard, but can find no remedy. Any ideas?
    Thanks in advance.

    From what I can see, the only installable package that was built is linux-test-3.1.5-1-x86_64.pkg.tar.xz. That's with the PKGBUILD file supplied from /var/abs/core/linux as per the wiki.
    Last edited by pressman57 (2011-12-18 21:50:00)

  • Problem with nvidia driver and GeForce 8800

    Hi,
    I installed nvidia driver with guide on arch wiki.
    But unluckily when i typed "startx", my monitor lost signal and i dont have any other option then restart computer.
    This is not for the first time when it happened. I have exactly same problem in every other distribution.
    I have GeForce 8800gts and LCD monitor Samsung SyncMaster 204b.
    And there isnt problem with hardware because in MS Windows or with VESA driver it works fine.
    Here is mine Xorg.conf
    http://www.blankpage.ic.cz/xorg.conf
    Please, have somebody any ideas how to make it works?

    Your not the only one with nividia problems
    But on a more serious note, have you tried all configuration steps outlined in the Arch Wiki?
    Moderator edit:  Picture NSFW.  It is also too big.
    User edit: Fixed with Thumbnail.
    Last edited by jwele (2012-07-04 21:00:37)

Maybe you are looking for

  • I can no longer download from the web!

    I haven't had this problem before  I have always been able to down load from theses sites.  When I'm on a fileshare site like filesonic 'which i'm a member of so have full download rights', I am unable to down load the file.  It appears in the safari

  • BP  appearing in search results after BP merging process completed

    Hi Gurus, Can some one please throw some light on how to stop the displaying of BP's appearing in search results who have been assigned an archiving indicator (XDELE flag set) in BUT000 table. The scenario is as follows, We identify duplicate BP's, f

  • My i-mac can't read commercial CDs -

    after attempting to read them, they are ejected.  recordable CD's work ok, so it doesn't seem to be an driver problem. I running O/S lion and the Imac is about 4 years old. anyone help with this please?

  • Transporting projects from Dev. system to Prod. system

    We have created a number of projects in our development system and now want to move a few of the project to our production system. Is there a way to transport these projects to the production system Regards Don

  • Invalid handel error?Urgent

    Hi, I am frequently getting invalid handle error in my jsp response from the server.I had created the connection pool which I use in my jsp pages.The pool has the application scope.In certain pages I use multiple statements,after processing the logic