Compiling a driver, need assistance on kernel source configuration

Hello BBS.
I am compiling a module for the Asus PCE N53 wireless pci-e card. I have obtained the driver source, and followed the instructions, and have gotten to the point where I need assistance. The instructions requires the kernel source, i have successfully obtained and configured it using the Command line prompt, except for one feature. I need to enable the intel IPW2200 driver code in the kernel source for this driver. What procedure do I follow to enable it?

> I know in face value, that my request may seem odd. I just need to use the source of the kernel, not a new kernel... I have found that what I am requesting... will fix the problem, based on a Gentoo solution: http://forums.gentoo.org/viewtopic-t-93 … art-0.html. Needing to know how to configure the kernel source to enable the intel driver still stands. The source I am using is the latest arch kernel source.
===============
RT5592 Linux Driver quick start       
====================
Check tools: 
====================
*Before install driver, please check already install compile tool and  kernel source code
1>Install compile tool
    $yum install gcc-c++
2>check kernel source code exists /usr/src/kernels/ "kernel name"
    Download your kernel source code
    *http://www.kernel.org/pub/linux/kernel/        
    or
    $yum install kernel-devel
====================
Build Instructions: 
====================
1> $tar -jxvf DPO_GPL_RT5592STA_LinuxSTA_vx.x.x.x.tar.bz2
     go to "DPO_GPL_RT5592STA_LinuxSTA_vx.x.x.x" directory.
2> In Makefile
     set the "MODE = STA" in Makefile and chose the TARGET to Linux by set "TARGET = LINUX"
     define the linux kernel source include file path LINUX_SRC
     modify to meet your need.
3> In os/linux/config.mk
     define the GCC and LD of the target machine
     define the compiler flags CFLAGS
     modify to meet your need.
     ** Build for being controlled by NetworkManager or wpa_supplicant wext functions
         Please set 'HAS_WPA_SUPPLICANT=y' and 'HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y'.
         => $wpa_supplicant -Dwext -ira0 -c wpa_supplicant.conf -d
     ** Build for being controlled by WpaSupplicant with Ralink Driver
         Please set 'HAS_WPA_SUPPLICANT=y' and 'HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n'.
         => $wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d
4> $make           
     # compile driver source code, need administrator.
     # To fix "error: too few arguments to function ¡¥iwe_stream_add_event"
        => $patch -i os/linux/sta_ioctl.c.patch os/linux/sta_ioctl.c
5> $make install
     #install driver
     #copy RT2860STA.dat to /etc/Wireless/RT2860STA/RT2860STA.dat
6>$vi /etc/rc.d/rc.local
     #input "ifconfig ra0 up"
    $reboot
7> unload driver   
     $ifconfig ra0 down
     $rmmod rt5592sta
======
Heres the output of my error, when I compile:
=======
make -C tools
make[1]: Entering directory `/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/tools'
gcc -g bin2h.c -o bin2h
make[1]: Leaving directory `/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/tools'
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/tools/bin2h
cp -f os/linux/Makefile.6 /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/Makefile
make -C /home/white/linux-3.2.9 SUBDIRS=/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux modules
make[1]: Entering directory `/home/white/linux-3.2.9'
  WARNING: Symbol version dump /home/white/linux-3.2.9/Module.symvers
           is missing; modules will have no dependencies and modversions.
  CC [M]  /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.o
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2364:2: error: unknown field ‘private’ specified in initializer
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2364:2: warning: initialization from incompatible pointer type [enabled by default]
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2364:2: warning: (near initialization for ‘rt28xx_iw_handler_def.get_wireless_stats’) [enabled by default]
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2365:2: error: unknown field ‘num_private’ specified in initializer
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2365:2: warning: excess elements in struct initializer [enabled by default]
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2365:2: warning: (near initialization for ‘rt28xx_iw_handler_def’) [enabled by default]
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2366:2: error: unknown field ‘private_args’ specified in initializer
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2366:26: warning: excess elements in struct initializer [enabled by default]
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2366:26: warning: (near initialization for ‘rt28xx_iw_handler_def’) [enabled by default]
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2367:2: error: unknown field ‘num_private_args’ specified in initializer
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2367:2: warning: excess elements in struct initializer [enabled by default]
/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2367:2: warning: (near initialization for ‘rt28xx_iw_handler_def’) [enabled by default]
make[2]: *** [/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.o] Error 1
make[1]: *** [_module_/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux] Error 2
make[1]: Leaving directory `/home/white/linux-3.2.9'
make: *** [LINUX] Error 2
Last edited by confusedoldman (2012-12-25 20:14:34)

Similar Messages

  • 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

  • Need assistance deciphering Kernel Panic Log

    Been getting a few kernel panics on some brand new machines and I can't for the life of me figure out what's causing them.
    Any help would be greatly appreciated.
    Anonymous UUID:       0A8BE2E6-11D6-7259-23CC-008CD41D3DBC
    Thu Nov 20 08:37:18 2014
    panic(cpu 4 caller 0xffffff8019adc43e): Kernel trap at 0xffffff8019a91590, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000000000040, CR3: 0x00000000574ed039, CR4: 0x00000000001606e0
    RAX: 0x000000001c13d000, RBX: 0x0000000000000000, RCX: 0xffffff81fb19b000, RDX: 0x00000001362cc000
    RSP: 0xffffff82068c3c60, RBP: 0xffffff82068c3cd0, RSI: 0x0000000000000000, RDI: 0xffffff803e9fd5f0
    R8:  0x00007f943d200000, R9:  0x00007f943d201000, R10: 0x0000000000000000, R11: 0x0000000080073d80
    R12: 0xffffff803e9fd5f0, R13: 0x0000000000000001, R14: 0x0000000000000001, R15: 0x00007f943d200000
    RFL: 0x0000000000010282, RIP: 0xffffff8019a91590, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000000000040, Error code: 0x0000000000000000, Fault CPU: 0x4
    Backtrace (CPU 4), Frame : Return Address
    0xffffff82068c38f0 : 0xffffff8019a22f79
    0xffffff82068c3970 : 0xffffff8019adc43e
    0xffffff82068c3b40 : 0xffffff8019af3976
    0xffffff82068c3b60 : 0xffffff8019a91590
    0xffffff82068c3cd0 : 0xffffff8019a91454
    0xffffff82068c3cf0 : 0xffffff8019a85486
    0xffffff82068c3de0 : 0xffffff8019aadb2f
    0xffffff82068c3e20 : 0xffffff8019a616b3
    0xffffff82068c3e50 : 0xffffff8019a26bc1
    0xffffff82068c3e80 : 0xffffff8019a139c5
    0xffffff82068c3ef0 : 0xffffff8019a1e013
    0xffffff82068c3f70 : 0xffffff8019ac9b9d
    0xffffff82068c3fb0 : 0xffffff8019af4196
    BSD process name corresponding to current thread: spindump
    Mac OS version:
    13F34
    Kernel version:
    Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64
    Kernel UUID: 9477416E-7BCA-3679-AF97-E1EAAD3DD5A0
    Kernel slide:     0x0000000019800000
    Kernel text base: 0xffffff8019a00000
    System model name: MacBookPro11,2 (Mac-3CBD00234E554E41)
    System uptime in nanoseconds: 3525053185087
    last loaded kext at 2735689069516: com.apple.driver.AppleMikeyHIDDriver 124 (addr 0xffffff7f9bae0000, size 20480)
    last unloaded kext at 305004570346: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7f9ba94000, size 57344)
    loaded kexts:
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.filesystems.smbfs 2.0.3
    com.apple.driver.AudioAUUC 1.60
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleBluetoothMultitouch 80.14
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleGraphicsDevicePolicy 3.6.22
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.iokit.IOBluetoothSerialManager 4.2.7f3
    com.apple.driver.ApplePlatformEnabler 2.0.9d7
    com.apple.driver.AGPM 100.14.34
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.7f3
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleIntelHD5000Graphics 8.2.8
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleIntelFramebufferAzul 8.2.8
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleCameraInterface 4.26.0
    com.apple.driver.AppleBacklight 170.4.11
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleUSBCardReader 3.4.1
    com.apple.iokit.SCSITaskUserClient 3.6.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AirPort.Brcm4360 842.21.65
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleBluetoothHIDKeyboard 170.15
    com.apple.driver.AppleHIDKeyboard 170.15
    com.apple.kext.triggers 1.0
    com.apple.driver.IOBluetoothHIDDriver 4.2.7f3
    com.apple.driver.AppleMultitouchDriver 245.13.1
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.7f3
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothFamily 4.2.7f3
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOAcceleratorFamily2 98.23
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBMultitouch 240.10
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.7
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.7
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIUpAdapter 1.4.5
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IO80211Family 640.36
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBFamily 686.4.1
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1

    Hi GunzaDBD,
    I apologize, I'm a bit unclear on the exact nature of the issue you are describing. If you are having persistent hangs, crashes, or kernel panics, you may find the troubleshooting steps outlined in the following article helpful (apologies if you have already seen it):
    OS X: When your computer spontaneously restarts or displays "Your computer restarted because of a problem." - Apple Support
    Regards,
    - Brenden

  • External directory child folder mapped to C Drive (need assistance to remove it).

    Some how a child foler of my externel harddrive directory links to C: drive and I can't remove it. see attached images
    Please advice

    Hi,
    Based on your information, I suspect this is caused when you install or configure some programs. Thus if it didn't cause any issue, I would like to suggest you ignore it.
    Karen Hu
    TechNet Community Support

  • Need assistance for seeded element configuration in payroll for SA Legislation

    Dear All,
    I am implementing Oracle Fusion Global Payroll for SA Legislation. I referred workforce setup guide for Payroll and supplemental guide for HR and Payroll implementation of SA Legislation.
    However, I am not able to figure out precise configurations needed for Transport Allowance calculation and feed its value to GOSI for further calculations.
    Document 1567452.1 - Oracle Fusion HRMS (Saudi Arabia): HR Implementation and Functional Considerations
    Document 1619159.1 - Oracle Fusion HRMS (Saudi Arabia): Payroll Implementation and Functional Considerations
    Could anyone elaborate configuration needed to achieve below mentioned requirement? As per seeded configuration, system generates Fast Formula for calculation. But element and formula by itself does not achieve required functionality. I know there is additional configuration needed in system but not sure how to proceed ahead with it. I have completed all steps mentioned in above mentioned two documents and yet stuck with non-functioning element.
    Basic Salary: 1000 SAR
    Transport: 10% of Basic Salary (Based on Grade Eligibility)
    I am specifically expediting functionality as below
    1. Manage calculation value definition
    2. Manage Component Group Rules (if applicable)
    3. Attach % Grade Rate to value definition
    Regards,
    Saurabh

    Hi,
    As I mentioned earlier, I added the appropriate balances which are used to calculate Tax to Retro Elements and those Balances got updated with the delta amount but Tax was not updated. I want to know is there any process provided by Oracle using which Tax for those already paid amounts can be recalculated.
    I calculated the Tax manually and using Adjust Balance form added ZA_TAX_BALANCE_ADJUSTMENT Element and given the difference tax amount in PAYE and Tax Input values and saved the form. The Tax got updated.
    Tax_ASG_RUN - 15000
    Tax_ASG_TAX_YTD - 153257.32 (Prev - 138257.32). When I run the IRP5 (Tax Certificate Process) the tax is also getting correctly on it.
    But client wants Oracle to calculate the Tax for those retro amounts so thats the challenge.
    Could you help me with this.
    Thanks,
    Sri

  • Need to update kernel or build driver

    I just installed Oracle VM on my Dell Vostro 1400 notebook and found that the wired network driver does not work.
    According to the Dell site I need a updated version of the tg3 driver. I downloaded the sources but the Oracle Server VM CD does not seem to have the GCC compiler. I even downloaded a pre-compiled RH ES 4.0 version of the driver, for the same kernel number version, but it does not load.
    Anyone has pointers on how to compile modules for the Oracle VM kernel? Or where to get a updated kernel version?
    Regards,
    Luis

    There is no way to bail out if your kernel does not support network interface or video card. I had similar problems, though with x64 drivers, and I have tried everything I have managed to Google out, to avail.
    Simply, Oracle VM has to come out with new kernel version in a short time, to announce a roadmap (could not find one so far), and firmly stick to it.

  • 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

  • Reasonable to have compile kernel + source package?

    Most modules require the kernel sources in order to compile, and I thought it would be nice to have the kernel sources used for the stock kernels available as a package. I know it's possible to use the abs or to download the kernel from kernel.org, but then you must go through the hassle of compiling the same kernel.
    This isn't a big deal, just a nice kernel thing to have.
    Any thoughts?

    bardo wrote:Well, I don't use the provided PKGBUILD. The latest stable kernel is 2.6.11.11, our latest build is 2.6.11.10, at least in current. The last number increases as trivial fixes are inserted in the kernel tree, so they're not prone to vulnerabilities as other packages are. IMHO these shouldn't be treated as new releases, but as fixes, which is exactly what they are. Just like when someone releases a new build of a package. That's why the lesser minor was created, and why I think it should arrive faster than other packages in the stable repo.
    This way I could get and compile my own source without discrepancies from the headers package, often needed by other packages. Otherwise, I should have a "stable" headers package and the latest full kernel sources providing kernel26. The source is not unstable by itself. It is what I do of it that makes it a risk. But this happens with many softwares, doesn't it?
    What does that have to do with anything under discussion? We're talking about the kernel binary + kernel headers.  If you compile your own kernel of a different version, then OF COURSE your headers will be different, unless you install the headers with your new kernel as the PKGBUILD does - if you compile a new kernel because you feel the release speed isn't fast enough, do you really thing a new kernel-headers package is going to release any faster?
    using the default arch package, the kernel binary and headers are provided.  If you want to compile your own kernel, fine, do that - just provide your own headers in that case - it's not hard.
    bardo wrote:Another reason because I don't use that PKGBUILD is because abs doesn't work on my machine, but that's totally OT here
    abs is a bash script... there's no possible way it could fail unless:
    a) you don't have cvsup installed (abs will spit out a big fat error saying "install cvsup" if you don't)
    b) you don't have a network connection
    c) user error
    hell, you don't need to use abs to build a package - "man makepkg"

  • Can I purchase Mountain Lion and make a flash drive bootable? I do not want to install it on my Macbook Pro. I have Snow Leopard on my Macbook Pro now, and due to my hard drive needing repair I need to boot off of another source, like my flash drive.

    Can I purchase Mountain Lion and make a flash drive bootable? I do not want to install it on my Macbook Pro. I have Snow Leopard on my Macbook Pro now, and due to my hard drive needing repair, I need to boot off of another source, like my flash drive. I am in Paris and my Snow Leopard DVD is in Texas.

    Mac OS X has a built-in disk diagnostic and repair program called fsck or file system consistency check. Here’s how to verify and repair your startup disk with fsck.  As soon as you hear the startup tone, press and hold Command-S on the keyboard. Keep holding down those keys until you see a black screen with white lettering. This is called “booting into Single User Mode.”  As the Mac boots in this mode, the screen reports each step of the process. The line should end in root#.  Right after the root# prompt, enter the following: /sbin/fsck -fy
    If repairing the disk in single user mode fails, it means one of two things. Either your hard drive itself is failing (a hardware failure), or the directory damage on your hard drive is beyond the capability of the built-in repair procedures in OS X.

  • I need GPIB Driver for Keithley 263 Calibrator/Source Meter using Labview. Can anybody help? Thank you.

    I need GPIB Driver for Keithley 263 Calibrator/Source Meter using Labview. Can anybody help?
    Thank you in advance.

    Hi,
    on Keithley's website is explained :
    "The Model 263 offers a more economical, more precise alternative to the Model 6430 or the Model 236 when used as a low-current source. It is used almost exclusively as a current calibrator."
    This leads to Model 236.... A LabVIEW-driver is available @: http://search.ni.com/query.html?lk=1&col=alldocs&nh=500&rf=3&ql=&pw=595&qp=%2BContentType%3AInstrumentDriver+%2BIDNetManufacturer%3A%22Keithley%22&qt=&layout=IDNet
    Maybe you have to "reconstruct" some parts - but it will help.
    regards
    wha

  • [SOLVED] Building flashcache - need kernel source?

    Sorry for noob question, but..
    Trying to build flashcache, and it seems that kernel source is required. How do I obtain the source?
    Last edited by asg1448 (2014-07-07 22:51:15)

    Trilby wrote:No, 3.15.2-1
    I upgraded to 3.15.2-1-ARCH and have exactly the same issue
    Note, that building of flashcache itself completes fine, the issue happens when I install the built module:
    loading packages...
    warning: flashcache-dkms-git-1.0.r223.g304bbc1-1 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Packages (1): flashcache-dkms-git-1.0.r223.g304bbc1-1
    Total Installed Size: 0.54 MiB
    Net Upgrade Size: 0.00 MiB
    :: Proceed with installation? [Y/n]
    (1/1) checking keys in keyring [##########################################] 100%
    (1/1) checking package integrity [##########################################] 100%
    (1/1) loading package files [##########################################] 100%
    (1/1) checking for file conflicts [##########################################] 100%
    (1/1) checking available disk space [##########################################] 100%
    flashcache, 1.0.r223.g304bbc1: added
    Deleting module version: 1.0.r223.g304bbc1
    completely from the DKMS tree.
    Done.
    (1/1) reinstalling flashcache-dkms-git [##########################################] 100%
    >>> DKMS: Module install
    dkms install -m flashcache -v 1.0.r223.g304bbc1
    Creating symlink /var/lib/dkms/flashcache/1.0.r223.g304bbc1/source ->
    /usr/src/flashcache-1.0.r223.g304bbc1
    DKMS: add completed.
    Kernel preparation unnecessary for this kernel. Skipping...
    Building module:
    cleaning build area....
    KERNEL_TREE=/usr/lib/modules/3.15.2-1-ARCH/build make modules....(bad exit status: 2)
    Error! Bad return status for module build on kernel: 3.15.2-1-ARCH (x86_64)
    Consult /var/lib/dkms/flashcache/1.0.r223.g304bbc1/build/make.log for more information.
    modprobe: FATAL: Module flashcache not found.

  • Intel 3945 driver needs hotplug firmware

    I'm having some issues getting the Intel 3945 wifi adapter to become recognized by Oracle Enterprise Linux 5.5.
    It seems that the 802.11 and the driver are present however it seems to need a microcode piece as well. This is documented at:
    [http://ipw3945.sourceforge.net/|http://ipw3945.sourceforge.net/]
    Step 1 on the requirements listing is for the microcode.
    The install docs say to look at /etc/hotplug/firmware.agent file to get the directory.
    I just redid my installation and this file is still not present.
    It also lists the steps to use the kernel source to come up with the directory.
    So, make gconfig and take a look:
    Device Drivers ->
    Generic Driver Options ->
    are present, however,
    Hotplug firmware loading support
    after that is not present. I saw some options for CPU hotplugging and memory hotplugging but the install docs are calling for this option which doesn't seem to be present.
    So, what's the easiest way to get hotplugging support on this version of Linux? I've tried the Red Hat forums but everyone there says to just install the ucode to /lib/firmware and off you go.
    thanks in advance,
    alan

    http://dag.wieers.com/rpm/packages/ipw3945d/
    http://dag.wieers.com/rpm/packages/dkms-ipw3945/
    http://dag.wieers.com/rpm/packages/ipw3945-firmware/
    All of these kept giving 404 errors unless I chose the source option. Oh well. So I gave up and thought I'd just compile up the latest kernel and see if that would help.
    I checked for the hotplug option and it still isn't there so I have no clue what Intel was talking about.
    I did remember seeing another message about the ucode file having a different file name so I finally ran it down.
    All you need to do is to find the firmware file and copy it so it reads:
    /lib/firmware/iwlwifi-3945-2.ucode
    and then service network start and up she comes. I tried various permutations of strace -f trying to figure out the filename but never could come up with it. Oh well. Then it's:
    add the following to modprobe.conf
    options iwl3945 disable_hw_scan=1
    and finally:
    service NetworkManager restart
    to get the little network icon on the upper right-hand side so I can get the easy wifi access point pick list.
    Then I ran firefox and it connected to web pages.
    Thanks for effort,
    alan

  • Kernel source support for Xperia L

    Hi,
    I'm an XDA forum member.
    I'm have created this thread to inform you about the hiccups kernel devs are running into compiling prima module properly. Firstly, the prima source you've hosted on your git, don't compile with the 15.0.A.2.17 source. The wcnss driver in the kernel source needs to be patched to make the module even compile.
    It's my sincerest request to include buildable prima sources in the kernel sources itself. If not possible, atleast give us some pointers on how to fix it.
    By this kernel devs can target their efforts on other important things which otherwise would have been wasted on fixing and debugging the prima module.
    Awaiting reply.
    Regards
    Raj.Joshi (my profile: http://forum.xda-developers.com/member.php?u=4753363)
    XDA
    R@J

    To get in contact with our developers i recommend that you go to stackoverflow.com or that you send an email to [email protected]
    I've edited your topic and moved it to the proper forum.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • OEL5.5 Kernel source

    Hello
    I am very thankful for your support. Now I need a package kernel-2.6.18-194.el5.src.rpm for install R1soft hotcopy disk cloning software.Could you please suggest me the link from which I can download.Thanks in advance...

    How about http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/5/base/x86_64/kernel-2.6.18-194.el5.src.rpm
    Building the kernel from scratch will be more complex then simply installing the source rpm. You will need instructions if you are not familiar with the task.
    Do you really need to recompile the kernel, or do you just need to compile a kernel driver module, in which case you might just need the kernel-devel package

  • 2.4.31 kernel source / .config

    Hi,
    Please forgive me if this is posted somewhere.
    I need to build that pesky new e1000 module from Intel and I can't find the
    2.4.31 .config for zfd 4.0.1 ir7 anywhere.
    Does anyone know where I can find it? I dont have a lot of time to spend
    on this, but I also don't want to replace this kernel with my own.
    Thanks,
    -Brian

    On Tue, 18 Jul 2006 18:19:47 GMT, [email protected] wrote:
    > Also, Do you know who has built the e1000 module for 2.4.31 or are you
    > assuming that someone has done it by now?
    I read it in another thread IIRC.. you don't really need the config files..
    From: [email protected]
    Ok, so I have gotten my boot disk to work following the process below,
    which is kind of a sampling of other peoples stuff out there, which I hope
    to give credit for when I'm all done here.....
    I have not tested the PXE boot, only the bootcd.iso
    Download the 2.4.22 Linux Kernel
    wget http://www.kernel.org/pub/linux/kern...2.4.22.tar.bz2
    unpack the Source
    tar xvfj linux-2.4.22.tar.bz2
    enter the directory created
    cd linux-2.4.22
    Download the 2.4.22-ac4 patch.
    wget http://www.kernel.org/pub/linux/kern...le/alan/linux-
    2.4/2.4.22/patch-2.4.22-ac4.bz2
    Uncompress the patch
    bunzip2 patch-2.4.22-ac4.bz2
    Download the Novell ZENworks Kernel Patch
    wget http://www.novell.com/coolsolutions/...dimgkrnlpatch-
    2.4.18-4.0-p1.tgz
    Unpack the file
    tar xvfz zfdimgkrnlpatch-2.4.18-4.0-p1.tgz
    Change the Kernel version
    sed 's/2.4.18/2.4.22/' <zenpatch-2.4.18-4.0-p1.patch > zenpatch-
    2.4.22.patch
    Apply the Patches
    patch -p0 < zenpatch-2.4.22.patch
    patch -p1 < patch-2.4.22-ac4
    Configure the Kernel
    make menuconfig
    I went in and did the following
    Processor Type and Features ->
    No to Math Emulation
    SCSI Support ->
    SCSI low-level drivers->
    Yes to SATA Support
    USB Support ->
    ---USB Human Interface Devices (HID)
    Yes to USB Human Interface Device (full HID) support
    Yes to HID input Layer Support (NEW)
    Exit and Save the configuration
    Run the following
    make clean ***Note Novell Recommends this***
    make dep
    make bzImage ***Note Case does matter on the I***
    make modules
    make modules_install
    Get the ZENDist package
    wget http://www.novell.com/coolsolutions/...ist-4.0-p1.tgz
    tar zxvf zendist-4.0-p1.tgz
    cd /usr/src/build
    ../buildImages.s
    Copy the 2.4.22 kernel and modules over to our build area....
    cp /usr/src/linux-2.4.22/arch/i386/boot/bzImage bootdisk/firstdisk/kernel
    cp -r /lib/modules/2.4.22-ac4 bootdisk/thirddisk/lib/modules
    Remove old stuff
    rm -rf bootdisk/thirddisk/lib/modules/2.4.18
    ../buildImages.s
    Copy the BroadCom Driver from the Forge site into
    the /build/bootdisk/thirddisk/lib/modules/2.4.22-ac4/kernel/drivers/net
    directory and then redo the
    ../buildImages.s
    This will add-in the BroadCom drivers for the GX280 computer.
    ***NOTE*** I had to run the GX280 SATA drive in Compatability mode in the
    BIOS, otherwise the drive did not show under the img dump ******
    I should also note here that the hdparm command does nto work with this.
    Imaging my Windows XP image took about 6 minutes though.
    I also did the 2.4.22 kernel because there is a compiled BroadCom driver
    on the Forge site.
    And from Roy Erez...
    So... SATA isn't supported by this trick on the Gx280 machines.
    The only way I could get SATA to work in "normal" (not "compatibility")
    mode in these machines was using the 2.4.28 kernel.
    As of kernel 2.4.27 SATA is merged into the kernel source tree so you
    don't need Alan Cox's patch to enable SATA.
    This only patches I applied to my kernel were the zen patch and a
    broadcom 57xx patch (had to change the version string in this one).
    Although ICH6 isn't yet fully supported it does work in a "Looks like
    ICH5" mode and I'm able to successfully take and put an image in "normal
    " sata mode.
    As to USB keyboard support - after trying several combinations I think
    it's better to compile HID support using HIDBP rather than the full HID
    layer - the only HID feature needed in the imaging environment is
    keyboard support and HIDBP handles it well enough.
    If you have already compiled drivers or have linux.2 please put them on
    http://forge.novell.com/modules/xfmo...ect/?zfdimgdrv
    Live BootCd and USB Disk from Mike Charles
    http://forge.novell.com/modules/xfmod/project/?imagingx
    eZie http://forge.novell.com/modules/xfmod/project/?ezie
    Marcus Breiden
    If you are asked to email me information please change -- to - in my e-mail
    address.
    The content of this mail is my private and personal opinion.
    http://www.edu-magic.net

Maybe you are looking for

  • Password for a new bug tracker user

    I installed bug tracker and it works fine. When I created a user I didn't find where to provide/change password. When I got login screen and type new user name, I don't know what is the password. How to set password for the new user in bug tracker?

  • BPM Block step

    Hi everyone, In my scenario IDOC XI JDBC scenario I am using the BPM. My IDOC message type is Vendor master and needs to send to 4 Legacy systems. My BPM steps are: 1)Receive step 2)Transformation step. 3)Fork step(4 branches). Inside the fork a)4 re

  • How to open a bmp file

    I Want to display a bmp file and use an image icon to display it, how do I do this? tnx

  • Offline Approval Problem-format of email in lotus notes is not poplulationg

    Hi Gurus,   I am working on a support project now i have a problem in Offline approval . the email in the approver  inbox is not populating the correct values and i checked in the workflow side in SWI1 it is populating correct values but in the lotus

  • PSE12 missing images

    About half my images in the organizer folders are missing. Just "blank page".  If I click on them and hit editor button, it puts the images there and then opens editor. I have tried the "missing photo" option, but it didn't help. Why are images missi