Nouveau for multiple kernels?

Hi all,
Am thinking of trying out the nouveau driver, since I've been gaming a LOT less lately. I understand I need xf86-video-nouveau (roughly analogous to the nvidia-utils package), nouveau-firmware, and nouveau-drm (roughly analogous to the nvidia package).
Thing is, I use 3 kernels and switch between them fairly regularly. Because of this I use (and maintain) the nvidia-beta-all package on the AUR. In order to get this same level of functionality with nouveau I'd need something like nouveau-drm-all.
There is an nouveau-drm-bfs PKGBUILD in the AUR, but all that does is copy the .ko files built for 2.6.33-ARCH to a new /lib/modules/* location. I'm pretty sure that wouldn't work for all kernels (especially the -rt kernel I'm fond of using), so I'd like to ask those who are already using nouveau, do you use custom kernels? Does re-running the nouveau-drm PKGBUILD on your custom kernel work?

Actually, more needs to be done, since the PKGBUILD I have in mind will build N copies of nouveau-drm .ko files if you have N kernels installed. I've never understood, for example, why nvidia-beta is written in such a way that if I use it in my custom kernel and for some reason can't boot the custom kernel, I don't have nvidia.ko in my stock -ARCH kernel so I can't even get GUI on that.
In any case, I believe I would also have to modify the Makefile, which uses `uname -r` in several places. nouveao-drm-bfs doesn't, because that PKGBUILD writer assumed that you would run it while kernel26-bfs is already installed and running. My nvidia-beta-all PKGBUILD can be used whatever kernel happens to be booted at the time.

Similar Messages

  • Is it possible to compile NVIDIA for multiple kernels simultaneously?

    Hi all,
    First, the reference is http://wiki.archlinux.org/index.php/NVI … tom_kernel, as well as a small discussion I started at http://aur.archlinux.org/packages.php?ID=20410.
    Basically, currently the nvidia-beta (and I'm sure the rest of the nvidia scripts) use `uname -r` to obtain the current kernel name, which is then used for the rest of the PKGBUILD. Its relatively trivial to alter that to the name of whichever kernel, meaning there's no problem compiling nvidia.ko for kernel26-ice from within kernel26 itself, and to alter the name of the package so that your nvidia-beta package does not need to be over-written (you then have two nvidia.ko, each for their own kernel.
    My question is, is it possible for a single PKGBUILD to compile nvidia.ko for all kernels currently installed (probably through looking at either /lib/modules or /usr/src)? This would mean only one maintainer is needed for nvidia-beta or nvidia-17xx or whichever series, and the same PKGBUILD could be used on any system, even those with multiple kernels.
    I'm not very familiar with the limitations of PKGBUILDs, or the rules governing what they may or may not do (for example, accessing and checking the machine itself outside the fakeroot?), so this may be nonsense, if so feel free to point it out. Another idea would be for a simple bash script to create as many PKGBUILDs as required, based on the most recent nvidia-beta PKGBUILD, simply sed-replacing uname -r with the appropriate kernel names and modifying the PKG name.

    Hi,
    it's not difficult to do but I DO NOT recommend to do it (see my notes below the code).
    PKGBUILD
    pkgname=nvidia-beta
    pkgver=185.18.04
    pkgrel=1
    pkgdesc="NVIDIA beta drivers for kernel26."
    arch=('i686' 'x86_64')
    [ "$CARCH" = "i686" ] && ARCH=x86 && NV=0
    [ "$CARCH" = "x86_64" ] && ARCH=x86_64 && NV=0
    provides=(nvidia=${pkgver})
    url="http://www.nvidia.com/"
    depends=(kernel26 nvidia-utils-beta)
    conflicts=('nvidia-96xx' 'nvidia-71xx' 'nvidia-legacy')
    license=('custom')
    install=('nvidia.install')
    source=(ftp://download.nvidia.com/XFree86/Linux-$ARCH/${pkgver}/NVIDIA-Linux-$ARCH-${pkgver}-pkg${NV}.run)
    md5sums=('95b67e6f17cc54d36ae2743df76c9f6d')
    [ "$CARCH" = "x86_64" ] && md5sums=('33967a6d452c562bb8af02b0734ebf22')
    build()
    # Read list of installed kernels
    KERNELS=`ls -1 /lib/modules`
    # Extract the nvidia drivers
    cd $startdir/src/
    sh NVIDIA-Linux-${ARCH}-${pkgver}-pkg${NV}.run --extract-only
    cd NVIDIA-Linux-${ARCH}-${pkgver}-pkg${NV}
    cd usr/src/nv
    ln -s Makefile.kbuild Makefile
    # Now build modules for each kernel
    for KERNEL in $KERNELS; do
    echo "Building for ${KERNEL}"
    # Compile the module
    make SYSSRC=/lib/modules/${KERNEL}/build module || return 1
    # Install kernel module
    mkdir -p $startdir/pkg/lib/modules/${KERNEL}/kernel/drivers/video/
    install -m644 nvidia.ko $startdir/pkg/lib/modules/${KERNEL}/kernel/drivers/video/ || return 1
    # Clean
    make clean || return 1
    done;
    nvidia.install
    # arg 1: the new package version
    post_install() {
    KERNELS=`ls -1 /lib/modules`
    for KERNEL in $KERNELS; do
    depmod -v $KERNEL > /dev/null 2>&1
    done;
    # arg 1: the new package version
    # arg 2: the old package version
    post_upgrade() {
    post_install $1
    rmmod nvidia || echo 'In order to use the new nvidia module, exit Xserver and unload it manually.'
    # arg 1: the old package version
    post_remove() {
    KERNELS=`ls -1 /lib/modules`
    for KERNEL in $KERNELS; do
    depmod -v $KERNEL > /dev/null 2>&1
    done;
    op=$1
    shift
    $op $*
    PS: I haven't test it because I don't use multiple kernels
    But be aware of possible problems. Some modifications may influence kernel functionalities, so once you compile a driver for kernel26-xyz on kernel26-zyx the module may not work on kernel26-xyz or may cause unexpected issues.
    You also should not (you possibly even won't be able to) build module for different release version (eg. build for 2.6.28 on 2.6.29) due changes in kernel headers.
    I'm also not sure if it is safe to generate module dependencies for another kernel then you are currently running.
    As you can see above, it is not problem to make such a PKGBUILD, but it also brings too many problems and it's too dangerous that it is better to stay at current model "module package for each kernel". So if you want to you may try to use this PKGBUILD, but I strictly warn everyone else that it may cause more harm then use so don't blame me if something goes wrong. You were warned .
    Last edited by ProgDan (2009-04-30 13:48:06)

  • Kernel patch upgrade for multiple instance

    Hi expert,
    I want to know will we follow the same process while upgrade the kernel patch only for Multiple ABAP STAK.
    We have system which has 3 instances....................so my question is exactly where we ned to put the kernel files (Generlly it should be in /EXE or /RUN file)and in which instance.......

    1.If I copy the patches only in central instance will it affect to all other instances.....?
    If you have configured your SAP system correctly then Yes, Kernel upgrade in Central Instance will reflect in Dialog Instances also.
    2.what is the concept of SAPMNT..(/sapmnt/SID/exe ).........?
    /sapmsnt/SID/SYS/exe -> to share the kernel across the instances
    3.What is the difference between EXE and RUN directory ............will it make any difference if I copy into EXE folder instead of
    /usr/sap/<SID>/SYS/exe/run is located on the host system of the R/3 instance and is for locally-stored executables
    /sapmsnt/SID/SYS/exe/run -> Central Instance directory
    /usr/sap/<SID>/SYS/exe - Dialog Instance directory
    you can check the values of DIR_EXECUTABLE or DIR_CT_RUN (if you are using sapcpe) to determine the kernel directories for central and dialog instances respectively

  • Multiple kernel panics & black screen on Macbook Pro Retina early 2013

    My Macbook Pro Retina (early 2013, 8GB ram, 250 GB hard drive) has been experiencing multiple kernel panics forcing rapid-fire restarts of the computer multiple times within a very short time frame. This is followed by the screen staying black even if the computer is on (keyboard lit up, can hear volume buttons) but nothing is on the screen. Once the screen goes black, I have to employ some combination of manually shutting it down (by holding down the power button) and then turning it back on (+/- doing an SMC reset) to get the screen working again. I also tried a PRAM reset once, but it didn't seem to have any effect, and I've repaired the disk permissions. 
    This issue has happened multiple times in the past week. It seems to vary as to how long it takes to happen again (could be a few days, could be less than an hour), and it has happened during multiple different activities (surfing the web, using Word, using Mail). I have experienced this both on Mavericks and after updating to Yosemite over the weekend.
    I took it to the Apple Store on Saturday and while the Genius saw that the screen was black when I initially brought it in (even though the computer was on), we couldn't recreate the issue and the diagnostic tests he ran showed nothing. It even started back up fine for him. I thought I was OK, until I had another round of kernel panics + black screen this afternoon. At this point, doing a normal restart of the machine results in a kernel panic before it even makes it off of the loading screen and then a black screen.
    This time, I checked the logs and saw the panic report included below. I don't know enough about this to understand what it means, but hopefully someone else does! Some internet searching has suggested that it might be a problem with the GPU (and the log below says GPU panic). Help, please!
    Mon Nov  3 16:43:08 2014
    *** Panic Report ***
    panic(cpu 6 caller 0xffffff7f868daf63): "GPU Panic: [<None>] 3 0 a0 d9 9 8 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0x104000000 0xffffff8114d8a000 0x0e7150a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.7.21/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 6), Frame : Return Address
    0xffffff8111a12d30 : 0xffffff8003d3a811
    0xffffff8111a12db0 : 0xffffff7f868daf63
    0xffffff8111a12e90 : 0xffffff7f84a1cd28
    0xffffff8111a12f50 : 0xffffff7f84ae71b6
    0xffffff8111a12f90 : 0xffffff7f84ae7226
    0xffffff8111a13000 : 0xffffff7f84d1ed7e
    0xffffff8111a13090 : 0xffffff7f84d3650b
    0xffffff8111a130d0 : 0xffffff7f84b5fa13
    0xffffff8111a13100 : 0xffffff7f84b5f99d
    0xffffff8111a13130 : 0xffffff7f84c6dc9f
    0xffffff8111a13160 : 0xffffff7f84c6f971
    0xffffff8111a13200 : 0xffffff7f84c6ff38
    0xffffff8111a13280 : 0xffffff7f84a31bbf
    0xffffff8111a132d0 : 0xffffff7f84c74157
    0xffffff8111a13430 : 0xffffff7f84c745fa
    0xffffff8111a134b0 : 0xffffff7f84b1ebee
    0xffffff8111a13680 : 0xffffff7f84b1d78f
    0xffffff8111a136c0 : 0xffffff7f84b2d8f8
    0xffffff8111a13720 : 0xffffff7f84b27d63
    0xffffff8111a13740 : 0xffffff7f84ae3f76
    0xffffff8111a13780 : 0xffffff7f84ae3060
    0xffffff8111a137e0 : 0xffffff7f84a20164
    0xffffff8111a13800 : 0xffffff7f84a20b5b
    0xffffff8111a13a20 : 0xffffff7f84a20e48
    0xffffff8111a13ac0 : 0xffffff7f849ce330
    0xffffff8111a13b40 : 0xffffff7f849cdb9e
    0xffffff8111a13ba0 : 0xffffff7f849cf4c6
    0xffffff8111a13be0 : 0xffffff7f849818d0
    0xffffff8111a13c70 : 0xffffff7f849798ac
    0xffffff8111a13cb0 : 0xffffff7f849d0164
    0xffffff8111a13d00 : 0xffffff80042b85b1
    0xffffff8111a13d50 : 0xffffff80042ff0b5
    0xffffff8111a13dc0 : 0xffffff8003dea95e
    0xffffff8111a13e10 : 0xffffff8003d3e91c
    0xffffff8111a13e40 : 0xffffff8003d235a3
    0xffffff8111a13e90 : 0xffffff8003d33e8d
    0xffffff8111a13f10 : 0xffffff8003e0a142
    0xffffff8111a13fb0 : 0xffffff8003e3ac66
          Kernel Extensions in backtrace:
    com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f8496f000->0xffffff7f849a9fff
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f84524000
    com.apple.driver.AppleMuxControl(3.7.21)[32B7E2DE-1F9D-3555-B687-7A76A62B81D2]@ 0xffffff7f868cc000->0xffffff7f868dffff
    dependency: com.apple.driver.AppleGraphicsControl(3.7.21)[62689710-EEA7-307A-AC83-B8F25DA88 A6A]@0xffffff7f868c4000
    dependency: com.apple.iokit.IOACPIFamily(1.4)[70E2B65E-A91A-3522-A1A0-79FD63EABB4C]@0xfffff f7f8526e000
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f84524000
    dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f8496f000
    dependency: com.apple.driver.AppleBacklightExpert(1.1.0)[0183904C-6A16-32C4-9405-EEFD7F820B 02]@0xffffff7f868c7000
    com.apple.nvidia.driver.NVDAResman(10.0)[53CC0E05-7382-336C-8239-AE884D6CA71A]@ 0xffffff7f849cc000->0xffffff7f84c41fff
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f84524000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[F4738C55-B507-3627-A9CA-3D29A5230A03]@0xff ffff7f849b6000
    dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f8496f000
    dependency: com.apple.AppleGraphicsDeviceControl(3.7.21)[4700601D-3FEB-3B86-B2BA-8D71AF84D1 C4]@0xffffff7f849c6000
    com.apple.nvidia.driver.NVDAGK100Hal(10.0)[DC43029D-568A-3B7C-976B-E922C17F5143 ]@0xffffff7f84c4d000->0xffffff7f84dfafff
                dependency: com.apple.nvidia.driver.NVDAResman(10.0.0)[53CC0E05-7382-336C-8239-AE884D6CA71A ]@0xffffff7f849cc000
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f84524000
    BSD process name corresponding to current thread: WindowServer

    The logic board is faulty and will have to be replaced.
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider. You may have to leave the machine there for several days.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. There are ways to back up a computer that isn't fully functional—ask if you need guidance.
    If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    Keeping your confidential data secure during hardware repair
    Apple also recommends that you deauthorize a device in the iTunes Store before having it serviced.
    *An SSD doesn't need to be zeroed.

  • PKGBUILD for custom kernel issue

    Hi all,
    Last night I was putting together a PKGBUILD for a kernel I'd like to compile that has the ck patchset, grsecurity (latest testing), and had broadcom-wl on it already so I don't have to keep reinstalling it from AUR and doing depmod each time as it keeps making me have to find an ethernet cable. I used the kerne26 Arch PKGBUILD as a base and included parts of kernel-netbook for broadcom-wl, kernel26-grsecurity, and kernel26-ck and altered name variables and links etc so it all works and all sources are downloaded. I also got the two .patch files (semaphore and something else) from the kernel-netbook tarball to build the thing with, I don't know if it would work without them.
    However when I get into the build() a few patches are applied before I get messages about patches already applied or reversed, and then it says build failed because of an error, I can't tell which package is causing thins or why (it all goes by too fast, and the error says failed without reason, and the reversed patch messages are what is immediately previous to it). I have not yet gone all the way through the pkgbuild - especially towards the end, and I felt that the standard setup of init file system creation and such were ok, and if anything does need altering about it, I can deal with it once I get these first troubles solved.
    Below is my pkgbuild so far. Hopefully there are people out there who can aid me with this.
    Thanks,
    Ben.
    # Maintainer: Ben Ward <[email protected]>
    pkgbase="kernel26"
    # pkgname=('kernel26' 'kernel26-headers' 'kernel26-docs') # Build stock -ARCH kernel
    pkgname=kernel26-custom # Build kernel with a different name
    #Base kernel info
    _kernelname=${pkgname#kernel26}
    _basekernel=2.6.38
    pkgver=${_basekernel}.3
    pkgrel=1
    #ARCH patch info
    _archpatchver=1
    _archpatchname="patch-${pkgver}-${_archpatchver}-ARCH"
    #_archpatchname="patch-${pkgver}-1-ARCH"
    #grsecurity info
    _grsec=2.2.2
    _timestamp=201104182227
    #Broadcom-wl info
    _broadcom_ver=5.100.82.38
    _broadcom="hybrid-portsrc_x86_32-v${_broadcom_ver//./_}"
    #ck-patch info
    _ckpatchversion=3
    _ckpatchname="patch-${_basekernel}-ck${_ckpatchversion}"
    arch=(i686 x86_64)
    license=('GPL2')
    url="http://www.kernel.org"
    options=(!strip)
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$_basekernel.tar.bz2
    ftp://ftp.kernel.org/pub/linux/kernel/v2.6/patch-${pkgver}.bz2
    ftp://ftp.archlinux.org/other/kernel26/${_archpatchname}.bz2
    http://grsecurity.net/test/grsecurity-${_grsec}-${pkgver}-${_timestamp}.patch
    http://www.broadcom.com/docs/linux_sta/${_broadcom}.tar.gz
    http://www.kernel.org/pub/linux/kernel/people/ck/patches/2.6/${_basekernel}/${_basekernel}-ck${_ckpatchversion}/${_ckpatchname}.bz2
    "semaphore.patch"
    "mutex-sema.patch"
    # the main kernel config files
    config config.x86_64
    # standard config files for mkinitcpio ramdisk
    kernel26.preset)
    md5sums=('7d471477bfa67546f902da62227fa976'
    'b3677121c4b5efcb8128c2000788d0aa'
    '5b14b6eb2cdcb074905d4974437c4df6'
    'a19024797f192fe21a468de80c101d8a'
    'c0074a1622c75916442e26763ddf47d0'
    '88d5b3e0622f8c48dad19ab9ac3c16f0'
    'aee89fe7f034aea2f2ca95322774c1b5'
    '21ce3f7967d7305064bf7eb60030ffea'
    'f66543886835ab8599b29cd0c48aa66d'
    'd866bcc06672fee17736bd5022f700fe'
    '25584700a0a679542929c4bed31433b6')
    build() {
    cd ${srcdir}/linux-$_basekernel
    # Apply kernel.org patch to basekernel
    msg "Checking basekernel is ip to date..."
    if [[ "${_basekernel}" != "${pkgver}" ]]; then
    msg "Patching source with upstream patch..."
    patch -Np1 -i "${srcdir}/patch-${pkgver}" || return 1
    fi
    # Add -ARCH patches
    # See http://projects.archlinux.org/linux-2.6-ARCH.git/
    msg "Patching Kernel with ARCH patches..."
    patch -Np1 -i ${srcdir}/${_archpatchname}
    # Add ck patch
    msg "Patching Kernel with ck patches..."
    patch -Np1 -i ${srcdir}/${_ckpatchname}
    # Add grsecurity patch
    msg "Patching kernel with grsecurity testing branch..."
    if [ "$CARCH" = "x86_64" ]; then
    cat ../config.x86_64 >./.config
    else
    cat ../config >./.config
    fi
    if [ "${_kernelname}" != "" ]; then
    sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"${_kernelname}\"|g" ./.config
    fi
    # get kernel version
    make prepare
    # load configuration
    # Configure the kernel. Replace the line below with one of your choice.
    #make menuconfig # CLI menu for configuration
    make nconfig # new CLI menu for configuration
    #make xconfig # X-based configuration
    #make oldconfig # using old config from previous kernel version
    # ... or manually edit .config
    # stop here
    # this is useful to configure the kernel
    #msg "Stopping build"
    #return 1
    yes "" | make config
    # build!
    make ${MAKEFLAGS} bzImage modules
    package_kernel26() {
    pkgdesc="The Linux Kernel and modules"
    groups=('base')
    backup=(etc/mkinitcpio.d/${pkgname}.preset)
    depends=('coreutils' 'linux-firmware' 'module-init-tools>=3.12-2' 'mkinitcpio>=0.6.8-2')
    # pwc, ieee80211 and hostap-driver26 modules are included in kernel26 now
    # nforce package support was abandoned by nvidia, kernel modules should cover everything now.
    # kernel24 support is dropped since glibc24
    replaces=('kernel24' 'kernel24-scsi' 'kernel26-scsi'
    'alsa-driver' 'ieee80211' 'hostap-driver26'
    'pwc' 'nforce' 'squashfs' 'unionfs' 'ivtv'
    'zd1211' 'kvm-modules' 'iwlwifi' 'rt2x00-cvs'
    'gspcav1' 'atl2' 'wlan-ng26' 'rt2500' 'nouveau-drm')
    install=kernel26.install
    optdepends=('crda: to set the correct wireless channels of your country')
    KARCH=x86
    cd ${srcdir}/linux-$_basekernel
    # get kernel version
    _kernver="$(make kernelrelease)"
    mkdir -p ${pkgdir}/{lib/modules,lib/firmware,boot}
    make INSTALL_MOD_PATH=${pkgdir} modules_install
    cp System.map ${pkgdir}/boot/System.map26${_kernelname}
    cp arch/$KARCH/boot/bzImage ${pkgdir}/boot/vmlinuz26${_kernelname}
    # # add vmlinux
    install -m644 -D vmlinux ${pkgdir}/usr/src/linux-${_kernver}/vmlinux
    # install fallback mkinitcpio.conf file and preset file for kernel
    install -m644 -D ${srcdir}/kernel26.preset ${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset
    # set correct depmod command for install
    sed \
    -e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/g" \
    -e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" \
    -i $startdir/kernel26.install
    sed \
    -e "s|source .*|source /etc/mkinitcpio.d/kernel26${_kernelname}.kver|g" \
    -e "s|default_image=.*|default_image=\"/boot/${pkgname}.img\"|g" \
    -e "s|fallback_image=.*|fallback_image=\"/boot/${pkgname}-fallback.img\"|g" \
    -i ${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset
    echo -e "# DO NOT EDIT THIS FILE\nALL_kver='${_kernver}'" > ${pkgdir}/etc/mkinitcpio.d/${pkgname}.kver
    # remove build and source links
    rm -f ${pkgdir}/lib/modules/${_kernver}/{source,build}
    # remove the firmware
    rm -rf ${pkgdir}/lib/firmware
    # gzip -9 all modules to safe 100MB of space
    find "$pkgdir" -name '*.ko' -exec gzip -9 {} \;
    ##Section: Broadcom-wl
    msg "Compiling broadcom-wl module:"
    cd ${srcdir}/
    #patching broadcom as broadcom-wl package on AUR
    patch -p1 < license.patch
    patch -p1 < semaphore.patch
    patch -p1 < mutex-sema.patch
    make -C ${srcdir}/linux-$_basekernel M=`pwd`
    install -D -m 755 wl.ko ${pkgdir}/lib/modules/$_kernver/kernel/drivers/net/wireless/wl.ko
    package_kernel26-headers() {
    pkgdesc="Header files and scripts for building modules for kernel26"
    mkdir -p ${pkgdir}/lib/modules/${_kernver}
    cd ${pkgdir}/lib/modules/${_kernver}
    ln -sf ../../../usr/src/linux-${_kernver} build
    cd ${srcdir}/linux-$_basekernel
    install -D -m644 Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/Makefile
    install -D -m644 kernel/Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/kernel/Makefile
    install -D -m644 .config \
    ${pkgdir}/usr/src/linux-${_kernver}/.config
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include
    for i in acpi asm-generic config generated linux math-emu media net pcmcia scsi sound trace video xen; do
    cp -a include/$i ${pkgdir}/usr/src/linux-${_kernver}/include/
    done
    # copy arch includes for external modules
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/x86
    cp -a arch/x86/include ${pkgdir}/usr/src/linux-${_kernver}/arch/x86/
    # copy files necessary for later builds, like nvidia and vmware
    cp Module.symvers ${pkgdir}/usr/src/linux-${_kernver}
    cp -a scripts ${pkgdir}/usr/src/linux-${_kernver}
    # fix permissions on scripts dir
    chmod og-w -R ${pkgdir}/usr/src/linux-${_kernver}/scripts
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/.tmp_versions
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/kernel
    cp arch/$KARCH/Makefile ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/
    if [ "$CARCH" = "i686" ]; then
    cp arch/$KARCH/Makefile_32.cpu ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/
    fi
    cp arch/$KARCH/kernel/asm-offsets.s ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/kernel/
    # add headers for lirc package
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video
    cp drivers/media/video/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/
    for i in bt8xx cpia2 cx25840 cx88 em28xx et61x251 pwc saa7134 sn9c102; do
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/$i
    cp -a drivers/media/video/$i/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/$i
    done
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/staging/usbvideo/
    cp -a drivers/staging/usbvideo/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/staging/usbvideo/
    # add docbook makefile
    install -D -m644 Documentation/DocBook/Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile
    # add dm headers
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/md
    cp drivers/md/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/md
    # add inotify.h
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include/linux
    cp include/linux/inotify.h ${pkgdir}/usr/src/linux-${_kernver}/include/linux/
    # add wireless headers
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/
    cp net/mac80211/*.h ${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/9912
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core
    cp drivers/media/dvb/dvb-core/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core/
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/11194
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/
    cp include/config/dvb/*.h ${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/
    # add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new
    # in reference to:
    # http://bugs.archlinux.org/task/13146
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    cp drivers/media/dvb/frontends/lgdt330x.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    cp drivers/media/video/msp3400-driver.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    # add dvb headers
    # in reference to:
    # http://bugs.archlinux.org/task/20402
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-usb
    cp drivers/media/dvb/dvb-usb/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-usb/
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends
    cp drivers/media/dvb/frontends/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/common/tuners
    cp drivers/media/common/tuners/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/common/tuners/
    # add xfs and shmem for aufs building
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/fs/xfs
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/mm
    cp fs/xfs/xfs_sb.h ${pkgdir}/usr/src/linux-${_kernver}/fs/xfs/xfs_sb.h
    # add headers vor virtualbox
    # in reference to:
    # http://bugs.archlinux.org/task/14568
    cp -a include/drm $pkgdir/usr/src/linux-${_kernver}/include/
    # add headers for broadcom wl
    # in reference to:
    # http://bugs.archlinux.org/task/14568
    cp -a include/trace $pkgdir/usr/src/linux-${_kernver}/include/
    # add headers for crypto modules
    # in reference to:
    # http://bugs.archlinux.org/task/22081
    cp -a include/crypto $pkgdir/usr/src/linux-${_kernver}/include/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/`echo $i | sed 's|/Kconfig.*||'`
    cp $i ${pkgdir}/usr/src/linux-${_kernver}/$i
    done
    chown -R root.root ${pkgdir}/usr/src/linux-${_kernver}
    find ${pkgdir}/usr/src/linux-${_kernver} -type d -exec chmod 755 {} \;
    # strip scripts directory
    find ${pkgdir}/usr/src/linux-${_kernver}/scripts -type f -perm -u+w 2>/dev/null | while read binary ; do
    case "$(file -bi "$binary")" in
    *application/x-sharedlib*) # Libraries (.so)
    /usr/bin/strip $STRIP_SHARED "$binary";;
    *application/x-archive*) # Libraries (.a)
    /usr/bin/strip $STRIP_STATIC "$binary";;
    *application/x-executable*) # Binaries
    /usr/bin/strip $STRIP_BINARIES "$binary";;
    esac
    done
    # remove unneeded architectures
    rm -rf ${pkgdir}/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,microblaze,mn10300,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa}
    package_kernel26-docs() {
    pkgdesc="Kernel hackers manual - HTML documentation that comes with the Linux kernel."
    cd ${srcdir}/linux-$_basekernel
    mkdir -p $pkgdir/usr/src/linux-$_kernver
    mv Documentation $pkgdir/usr/src/linux-$_kernver
    find $pkgdir -type f -exec chmod 444 {} \;
    find $pkgdir -type d -exec chmod 755 {} \;
    # remove a file already in kernel26 package
    rm -f $pkgdir/usr/src/linux-$_kernver/Documentation/DocBook/Makefile
    I wonder if localyesconfig would take care of broadcom-wl for me...
    Last edited by Ben9250 (2011-04-20 00:12:44)

    Thank you. I guess trying the abs method wouldn't hurt. My main issue was configuration. I've only just skimmed the PKGBUILD so I'm not aware of how it handles it. I suppose I could write my own as described in the wiki as well. Thanks again.
    Edit: Further research has revealed to me that the kernel headers are merely there for when the full source tree isn't. Seeing as the full tree is present in my case, the headers are unnecessary. I may take graysky's advice though and use pacman to manage my kernel.
    Last edited by smithr.michael1997 (2011-03-31 02:17:29)

  • Multiple Kernel Panics

    Hello guys, I'm experiencing multiple kernel panics on my 15'MBP 6,2 with installed OS 10.6.6. I tried to archive and reinstall the OS, resetted the PRAM, successfully repaired disk and wrong permissions, tried different sw (Drive Genius etc) BUT the issues come back in the short term. I performed a few tests with techtool pro 5 and it seems all good except temperature of SSD disk which is excessive. It also tells to repair disk because it may be corrupted, but as I said, it was repaired a few times and it cannot stay well for long time. Apple HW test all passed. I also suspect there is something wrong with Flash player too on safari because when surfing the net it often closes the plugin and report another error. And finally, I think there are issues with automatic switching between discrete+integrated graphic cards too. Safari often displays big squares instead of static images and flash contents. In fact when I force use of nvidia discrete card, it returns to run and show anything without image distortion. I will post the latest today's crash log here, please note that I had an external HD for backup on FW800 port. But the panics still happen with or without any device connected to MBP ports. Many thank's to anyone who will help and work on this issue.
    Interval Since Last Panic Report: 216005 sec
    Panics Since Last Report: 1
    Anonymous UUID: 4A590DA8-69CD-4C36-849F-6A5726B6760B
    Sun Jan 9 15:29:24 2011
    panic(cpu 2 caller 0x2aab55): Kernel trap at 0xc3a81a34, type 14=page fault, registers:
    CR0: 0x80010033, CR2: 0xc3a81a34, CR3: 0x00100000, CR4: 0x00000660
    EAX: 0x156b8900, EBX: 0x00000000, ECX: 0x0000000c, EDX: 0x0d4c4380
    CR2: 0xc3a81a34, EBP: 0xba603c18, ESI: 0x0d4c4380, EDI: 0x6bba5000
    EFL: 0x00010246, EIP: 0xc3a81a34, CS: 0x00000008, DS: 0x00000010
    Error code: 0x00000010
    Backtrace (CPU 2), Frame : Return Address (4 potential args on stack)
    0xba6039f8 : 0x21b50c (0x5d4438 0xba603a2c 0x223974 0x0)
    0xba603a48 : 0x2aab55 (0x59623c 0xc3a81a34 0xe 0x596406)
    0xba603b28 : 0x2a09a8 (0xba603b40 0x8205100c 0xba603c18 0xc3a81a34)
    0xba603b38 : 0xc3a81a34 (0xe 0xe3ff0048 0x6bba0010 0xcf40010)
    0xba603c18 : 0x828ba657 (0x6bba5000 0xd4c4380 0x0 0x0)
    0xba603c48 : 0x828c4d0c (0x6bba5000 0xdc61adc 0xd4c4380 0x828c489c)
    0xba603c78 : 0x828c4e73 (0xdc61800 0x6bba5000 0xdc61b20 0x8)
    0xba603ca8 : 0x8289e46a (0xdc61800 0x6bba5000 0xba603cd8 0x213ebb)
    0xba603cd8 : 0x53724b (0x6bba5000 0xe5b85dc 0xe5b85dc 0x1)
    0xba603d28 : 0x5672a4 (0x6bba5000 0xe5b85dc 0xe5b85dc 0x1)
    0xba603d88 : 0x286234 (0x6bba5000 0xe5b85dc 0x1 0x0)
    0xba603df8 : 0x21d8ba (0xc88d468 0x12dd4784 0xc88d470 0xc88d4a4)
    0xba603e38 : 0x210a3a (0xc88d400 0xba603e7c 0x1a648ebc 0xba603e70)
    0xba603e98 : 0x216c9d (0xc88d400 0x0 0x0 0x0)
    0xba603f18 : 0x294e13 (0xba603f44 0x0 0x0 0x0)
    0xba603fc8 : 0x2a1018 (0x1e0f6d40 0x0 0x10 0xe67c5e0)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelHDGraphics(6.2.6)@0x8289a000->0x82948fff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x7a778000
    dependency: com.apple.iokit.IONDRVSupport(2.2)@0x81f15000
    dependency: com.apple.iokit.IOGraphicsFamily(2.2)@0x827f2000
    BSD process name corresponding to current thread: WebKitPluginHost
    Mac OS version:
    10J567
    Kernel version:
    Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 234426962383642
    unloaded kexts:
    com.apple.filesystems.msdosfs 1.6.3 (addr 0xc39a5000, size 0x53248) - last unloaded 171011926292970
    loaded kexts:
    com.rim.driver.BlackBerryUSBDriverVSP 0.0.45 - last loaded 158337685554276
    com.rim.driver.BlackBerryUSBDriverInt 0.0.52
    com.wdc.driver.1394HP 1.0.7
    com.intego.iokit.VirusBarrierX6Service 10.6.9
    com.intego.iokit.VBX6NKE 1
    com.intego.iokit.BehavioralKext 1
    com.parallels.kext.prl_vnic 6.0 11992.625578
    com.parallels.kext.prl_netbridge 6.0 11992.625578
    com.parallels.kext.prlusbconnect 6.0 11992.625578
    com.intego.kext.VirusBarrier.AppBarrierKPI 10.6.9
    com.parallels.kext.prlhidhook 6.0 11992.625578
    com.intego.kext.VirusBarrierKPI 10.6.9
    com.parallels.kext.prl_hypervisor 6.0 11992.625578
    com.apple.filesystems.afpfs 9.7
    com.apple.nke.asp_tcp 5.0
    com.apple.driver.AppleHWSensor 1.9.3d0
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AGPM 100.12.19
    com.apple.driver.AudioAUUC 1.13
    com.apple.driver.AppleMikeyHIDDriver 1.2.0
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AppleUpstreamUserClient 3.4.5
    com.apple.driver.AppleMikeyDriver 1.9.9f12
    com.apple.driver.AppleIntelHDGraphics 6.2.6
    com.apple.driver.AppleHDA 1.9.9f12
    com.apple.driver.AudioIPCDriver 1.1.6
    com.apple.driver.AppleMCCSControl 1.0.17
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.driver.AppleIntelHDGraphicsFB 6.2.6
    com.apple.driver.AppleLPC 1.4.12
    com.apple.iokit.AppleBCM5701Ethernet 2.3.9b6
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.driver.AppleGraphicsControl 2.8.68
    com.apple.GeForce 6.2.6
    com.apple.driver.AirPortBrcm43224 426.36.1
    com.apple.driver.ACPISMCPlatformPlugin 4.5.0d5
    com.apple.driver.AppleUSBTCButtons 200.3.2
    com.apple.driver.AppleUSBTCKeyboard 200.3.2
    com.apple.driver.AppleUSBCardReader 2.5.8
    com.apple.driver.AppleIRController 303.8
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage 1.6.3
    com.apple.driver.AppleUSBHub 4.1.7
    com.apple.driver.AppleEFINVRAM 1.4.0
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.driver.AppleUSBEHCI 4.1.7
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleAHCIPort 2.1.5
    com.apple.driver.AppleACPIButtons 1.3.5
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.5
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.13.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.13.0
    com.apple.iokit.IOFireWireSerialBusProtocolTransport 2.0.1
    com.apple.iokit.IOFireWireSBP2 4.0.6
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.iokit.IOSurface 74.2
    com.apple.iokit.IOBluetoothSerialManager 2.3.8f7
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.driver.DspFuncLib 1.9.9f12
    com.apple.iokit.IOAudioFamily 1.8.0fc1
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleSMBusController 1.0.8d0
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleHDAController 1.9.9f12
    com.apple.iokit.IOHDAFamily 1.9.9f12
    com.apple.iokit.IO80211Family 312
    com.apple.driver.AppleSMC 3.1.0d3
    com.apple.driver.IOPlatformPluginFamily 4.5.0d5
    com.apple.driver.AppleSMBusPCI 1.0.8d0
    com.apple.nvidia.nv50hal 6.2.6
    com.apple.NVDAResman 6.2.6
    com.apple.iokit.IONDRVSupport 2.2
    com.apple.iokit.IOGraphicsFamily 2.2
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.3.8f7
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.8f7
    com.apple.iokit.IOBluetoothFamily 2.3.8f7
    com.apple.driver.AppleUSBMultitouch 206.6
    com.apple.iokit.IOUSBMassStorageClass 2.6.5
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.iokit.IOUSBHIDDriver 4.1.5
    com.apple.driver.AppleUSBMergeNub 4.1.5
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.5
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IOUSBUserClient 4.1.5
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IOUSBFamily 4.1.7
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.driver.AppleEFIRuntime 1.4.0
    com.apple.iokit.IOHIDFamily 1.6.5
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.TMSafetyNet 6
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.DiskImages 289
    com.apple.iokit.IOStorageFamily 1.6.2
    com.apple.driver.AppleACPIPlatform 1.3.5
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f15
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: APPLE SSD TS512B, 465,92 GB
    Serial ATA Device: MATSHITADVD-R UJ-898
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0xfa130000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0237, 0xfa120000
    USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8218, 0xfa113000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0xfd110000
    FireWire Device: My Passport 070C, WD, Up to 800 Mb/sec

    Interval Since Last Panic Report: 344572 sec
    Panics Since Last Report: 4
    Anonymous UUID: 4A590DA8-69CD-4C36-849F-6A5726B6760B
    Wed Jan 12 10:26:30 2011
    panic(cpu 1 caller 0x2aab55): Kernel trap at 0x00000000, type 14=page fault, registers:
    CR0: 0x80010033, CR2: 0x00000000, CR3: 0xb1fde000, CR4: 0x00000660
    EAX: 0x1a84de80, EBX: 0x00000000, ECX: 0x0000000c, EDX: 0x1a73a780
    CR2: 0x00000000, EBP: 0xbb73bc78, ESI: 0x1a73a780, EDI: 0x6d18f000
    EFL: 0x00010246, EIP: 0x00000000, CS: 0x00000008, DS: 0x00000010
    Error code: 0x00000010
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0xbb73ba58 : 0x21b50c (0x5d4438 0xbb73ba8c 0x223974 0x0)
    0xbb73baa8 : 0x2aab55 (0x59623c 0x0 0xe 0x596406)
    0xbb73bb88 : 0x2a09a8 (0xbb73bba0 0x102e00c 0xbb73bc78 0x0)
    0xbb73bb98 : 0x0 (0xe 0xe3ff0048 0x6d180010 0xe130010)
    0xbb73bc78 : 0x123f657 (0x6d18f000 0x1a73a780 0x0 0x0)
    0xbb73bca8 : 0x1249d0c (0x6d18f000 0x110c02dc 0x1a73a780 0x124989c)
    0xbb73bcd8 : 0x1249e73 (0x110c0000 0x6d18f000 0x110c0320 0x8)
    0xbb73bd08 : 0x122346a (0x110c0000 0x6d18f000 0xbb73bd38 0xc)
    0xbb73bd38 : 0x53724b (0x6d18f000 0xfd823e8 0xfd823e8 0x1)
    0xbb73bd88 : 0x5672a4 (0x6d18f000 0xfd823e8 0xfd823e8 0x1)
    0xbb73bde8 : 0x286234 (0x6d18f000 0xfd823e8 0x1 0x0)
    0xbb73be58 : 0x21d8ba (0x1c8bbb68 0xf6a6e84 0x1c8bbb6c 0x1c8bbba4)
    0xbb73be98 : 0x210a3a (0x1c8bbb00 0xbb73bedc 0xe35d290 0xbb73bed0)
    0xbb73bef8 : 0x216c9d (0x1c8bbb00 0x0 0x0 0x0)
    0xbb73bf78 : 0x295156 (0xfe95068 0x0 0x0 0x0)
    0xbb73bfc8 : 0x2a148d (0xfe95064 0x1 0x10 0x104fed84)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelHDGraphics(6.2.6)@0x121f000->0x12cdfff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x927000
    dependency: com.apple.iokit.IONDRVSupport(2.2)@0x95a000
    dependency: com.apple.iokit.IOGraphicsFamily(2.2)@0x938000
    BSD process name corresponding to current thread: Safari
    Mac OS version:
    10J567
    Kernel version:
    Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 126648755149236
    unloaded kexts:
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit 2.5.8 (addr 0xba822000, size 0x8192) - last unloaded 91010445661554
    loaded kexts:
    com.rim.driver.BlackBerryUSBDriverVSP 0.0.45
    com.rim.driver.BlackBerryUSBDriverInt 0.0.52
    com.intego.iokit.VirusBarrierX6Service 10.6.9
    com.intego.iokit.VBX6NKE 1
    com.intego.iokit.BehavioralKext 1
    com.parallels.kext.prl_vnic 6.0 11992.625578
    com.parallels.kext.prl_netbridge 6.0 11992.625578
    com.intego.kext.VirusBarrier.AppBarrierKPI 10.6.9
    com.intego.kext.VirusBarrierKPI 10.6.9
    com.parallels.kext.prlusbconnect 6.0 11992.625578
    com.parallels.kext.prlhidhook 6.0 11992.625578
    com.parallels.kext.prl_hypervisor 6.0 11992.625578
    com.apple.driver.Oxford_Semi 2.5.8 - last loaded 90898347118994
    com.apple.filesystems.msdosfs 1.6.3
    com.apple.driver.AppleHWSensor 1.9.3d0
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AppleMikeyHIDDriver 1.2.0
    com.apple.driver.AGPM 100.12.19
    com.apple.driver.AppleMikeyDriver 1.9.9f12
    com.apple.driver.AppleHDA 1.9.9f12
    com.apple.driver.AudioAUUC 1.13
    com.apple.driver.AppleUpstreamUserClient 3.4.5
    com.apple.driver.AppleMCCSControl 1.0.17
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.6
    com.apple.driver.ACPISMCPlatformPlugin 4.5.0d5
    com.apple.GeForce 6.2.6
    com.apple.driver.AppleLPC 1.4.12
    com.apple.driver.AppleGraphicsControl 2.8.68
    com.apple.driver.AppleIntelHDGraphics 6.2.6
    com.apple.driver.AppleIntelHDGraphicsFB 6.2.6
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.driver.AppleUSBTCButtons 200.3.2
    com.apple.driver.AppleUSBCardReader 2.5.8
    com.apple.driver.AppleUSBTCKeyboard 200.3.2
    com.apple.driver.AppleIRController 303.8
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage 1.6.3
    com.apple.driver.AppleUSBHub 4.1.7
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.driver.AirPortBrcm43224 426.36.1
    com.apple.iokit.AppleBCM5701Ethernet 2.3.9b6
    com.apple.driver.AppleEFINVRAM 1.4.0
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleUSBEHCI 4.1.7
    com.apple.driver.AppleAHCIPort 2.1.5
    com.apple.driver.AppleACPIButtons 1.3.5
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.5
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.13.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.13.0
    com.apple.iokit.IOFireWireSerialBusProtocolTransport 2.0.1
    com.apple.iokit.IOFireWireSBP2 4.0.6
    com.apple.driver.DspFuncLib 1.9.9f12
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.driver.AppleSMBusController 1.0.8d0
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IOSurface 74.2
    com.apple.iokit.IOBluetoothSerialManager 2.3.8f7
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.driver.AppleHDAController 1.9.9f12
    com.apple.iokit.IOHDAFamily 1.9.9f12
    com.apple.iokit.IOAudioFamily 1.8.0fc1
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.IOPlatformPluginFamily 4.5.0d5
    com.apple.driver.AppleSMBusPCI 1.0.8d0
    com.apple.nvidia.nv50hal 6.2.6
    com.apple.NVDAResman 6.2.6
    com.apple.iokit.IONDRVSupport 2.2
    com.apple.iokit.IOGraphicsFamily 2.2
    com.apple.driver.AppleSMC 3.1.0d3
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.3.8f7
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.8f7
    com.apple.iokit.IOBluetoothFamily 2.3.8f7
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.iokit.IOUSBMassStorageClass 2.6.5
    com.apple.driver.AppleUSBMultitouch 206.6
    com.apple.iokit.IOUSBHIDDriver 4.1.5
    com.apple.driver.AppleUSBMergeNub 4.1.5
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.5
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IOUSBUserClient 4.1.5
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IO80211Family 312
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOUSBFamily 4.1.7
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.driver.AppleEFIRuntime 1.4.0
    com.apple.iokit.IOHIDFamily 1.6.5
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 289
    com.apple.iokit.IOStorageFamily 1.6.2
    com.apple.driver.AppleACPIPlatform 1.3.5
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f15
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: APPLE SSD TS512B, 465,92 GB
    Serial ATA Device: MATSHITADVD-R UJ-898
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: RIM Composite Device, 0x0fca, 0x8004, 0xfa140000
    USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8218, 0xfa113000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0xfa130000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0237, 0xfa120000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0xfd110000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    FireWire Device: d2 quadra (button), LaCie, Up to 800 Mb/sec

  • Multiple kernel panics- help really needed-log included

    Please bare with me, want to give as many detaisl as possible:
    So in general the computer is running along fine, there are a few odd quirks including the inability to open azureus bit torrent files by double-clicking them though I used to be able to, and occasional airport outages which are becoming of recent a bit more frequent. But I could live with that, maybe azureus is acting screwy and maybe my ibook is just located in an odd place and getting spotty reception.
    Yesterday when I unplugged my computer from teh wall, it froze after 3 minutes, no "please restart your computer" just a complete freeze. I shut down and restarted only to have it kernel panic immediatly. Restarted it and bam another kernel panic. This time I just shut it down, and let it rest. Turned it back on only to have nothign happen except the fans starting blasting at full power. Another hard reset. Got to the finder, greeted by message about the date being incorrect and potential problems this coudl cause. I worked for five minutes and then another kernel panic. I let the computer "rest" over night, and began using it in the morning with airport off, and it worked fine, i then turned on airport and it has since been working fien except for the occasional airport outtages from before.
    Incidentally the computer has frozen before, always after I have unplugged the ibook from the wall. I have heard the multiple kernel panics like the one I experienced likely result from hardware issues, just wanted to see if there are any software fixes I can make before I send it in.
    I'm including my kernel panic log in the hopes that someone can decipher it and explain what the issue may be. I'm starting to think there mayb be an issue with the airport card, but I really do not know. Ram has been upgraded but I am confident that the ram is not at all faulty.
    Thank you very much.
    Sun Feb 12 22:58:56 2006
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000000000016 PC=0x00000000004F8D90
    Latest crash info for cpu 0:
    Exception state (sv=0x384EFC80)
    PC=0x004F8D90; MSR=0x00009030; DAR=0x00000016; DSISR=0x40000000; LR=0x004FB4E8; R1=0x21FA2EB0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x004FFC08 0x004FAE28 0x004FA8D8 0x004FA590 0x004FA054 0x004F9D00
    0x004F9C9C 0x002D0018 0x004F9C54 0x004F5B10 0x00506ECC 0x00509360 0x0050BA94 0x004DB3A8
    0x004DE02C 0x004E12F0 0x004E0474 0x004DCE6C 0x004DC9DC 0x004E6A64 0x004EC808 0x004E6A64
    0x004E9F6C 0x004E8E98 0x00108A38 0x000D5DCC 0x000FE254 0x000DBC60 0x000DC4A0 0x0022B734
    0x000FDA70 0x002A3C80
    backtrace continues...
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.iokit.IOATABlockStorage(1.4.2)@0x505000
    dependency: com.apple.iokit.IOStorageFamily(1.4)@0x4d7000
    dependency: com.apple.iokit.IOATAFamily(1.6.0f2)@0x4f4000
    com.apple.iokit.IOStorageFamily(1.4)@0x4d7000
    com.apple.iokit.IOATAFamily(1.6.0f2)@0x4f4000
    Proceeding back via exception chain:
    Exception state (sv=0x384EFC80)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x384F1000)
    PC=0x9B5D7B98; MSR=0x4200D030; DAR=0x0000031C; DSISR=0x42000000; LR=0x9B44DC84; R1=0xF0417A60; XCP=0x00000010 (0x400 - Inst access)
    Kernel version:
    Darwin Kernel Version 8.3.0: Mon Oct 3 20:04:04 PDT 2005; root:xnu-792.6.22.obj~2/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095698 0x00095BB0 0x0002683C 0x000A8304 0x000ABC80
    Proceeding back via exception chain:
    Exception state (sv=0x384EFC80)
    PC=0x004F8D90; MSR=0x00009030; DAR=0x00000016; DSISR=0x40000000; LR=0x004FB4E8; R1=0x21FA2EB0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x004FFC08 0x004FAE28 0x004FA8D8 0x004FA590 0x004FA054 0x004F9D00
    0x004F9C9C 0x002D0018 0x004F9C54 0x004F5B10 0x00506ECC 0x00509360 0x0050BA94 0x004DB3A8
    0x004DE02C 0x004E12F0 0x004E0474 0x004DCE6C 0x004DC9DC 0x004E6A64 0x004EC808 0x004E6A64
    0x004E9F6C 0x004E8E98 0x00108A38 0x000D5DCC 0x000FE254 0x000DBC60 0x000DC4A0 0x0022B734
    0x000FDA70 0x002A3C80
    backtrace conp
    Sun Feb 12 23:10:17 2006
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000000000016 PC=0x00000000004F8D90
    Latest crash info for cpu 0:
    Exception state (sv=0x384EFC80)
    PC=0x004F8D90; MSR=0x00009030; DAR=0x00000016; DSISR=0x40000000; LR=0x004FB4E8; R1=0x21FA2EB0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x004FFC08 0x004FAE28 0x004FA8D8 0x004FA590 0x004FA054 0x004F9D00
    0x004F9C9C 0x002D0018 0x004F9C54 0x004F5B10 0x00506ECC 0x00509360 0x0050BA94 0x004DB3A8
    0x004DE02C 0x004E12F0 0x004E0474 0x004DCE6C 0x004DC9DC 0x004E6A64 0x004EC808 0x004E6A64
    0x004E9F6C 0x004E8E98 0x00108A38 0x000D5DCC 0x000FE254 0x000DBC60 0x000DC4A0 0x0022B734
    0x000FDA70 0x002A3C80
    backtrace continues...
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.iokit.IOATABlockStorage(1.4.2)@0x505000
    dependency: com.apple.iokit.IOStorageFamily(1.4)@0x4d7000
    dependency: com.apple.iokit.IOATAFamily(1.6.0f2)@0x4f4000
    com.apple.iokit.IOStorageFamily(1.4)@0x4d7000
    com.apple.iokit.IOATAFamily(1.6.0f2)@0x4f4000
    Proceeding back via exception chain:
    Exception state (sv=0x384EFC80)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x384F1000)
    PC=0x9B5D7B98; MSR=0x4200D030; DAR=0x0000031C; DSISR=0x42000000; LR=0x9B44DC84; R1=0xF0417A60; XCP=0x00000010 (0x400 - Inst access)
    Kernel version:
    Darwin Kernel Version 8.3.0: Mon Oct 3 20:04:04 PDT 2005; root:xnu-792.6.22.obj~2/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095698 0x00095BB0 0x0002683C 0x000A8304 0x000ABC80
    Proceeding back via exception chain:
    Exception state (sv=0x384EFC80)
    PC=0x004F8D90; MSR=0x00009030; DAR=0x00000016; DSISR=0x40000000; LR=0x004FB4E8; R1=0x21FA2EB0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x004FFC08 0x004FAE28 0x004FA8D8 0x004FA590 0x004FA054 0x004F9D00
    0x004F9C9C 0x002D0018 0x004F9C54 0x004F5B10 0x00506ECC 0x00509360 0x0050BA94 0x004DB3A8
    0x004DE02C 0x004E12F0 0x004E0474 0x004DCE6C 0x004DC9DC 0x004E6A64 0x004EC808 0x004E6A64
    0x004E9F6C 0x004E8E98 0x00108A38 0x000D5DCC 0x000FE254 0x000DBC60 0x000DC4A0 0x0022B734
    0x000FDA70 0x002A3C80
    backtrace conp
    Sun Feb 12 23:16:09 2006
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000000000016 PC=0x00000000004F8D90
    Latest crash info for cpu 0:
    Exception state (sv=0x384EFC80)
    PC=0x004F8D90; MSR=0x00009030; DAR=0x00000016; DSISR=0x40000000; LR=0x004FB4E8; R1=0x21FA2EB0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x004FFC08 0x004FAE28 0x004FA8D8 0x004FA590 0x004FA054 0x004F9D00
    0x004F9C9C 0x002D0018 0x004F9C54 0x004F5B10 0x00506ECC 0x00509360 0x0050BA94 0x004DB3A8
    0x004DE02C 0x004E12F0 0x004E0474 0x004DCE6C 0x004DC9DC 0x004E6A64 0x004EC808 0x004E6A64
    0x004E9F6C 0x004E8E98 0x00108A38 0x000D5DCC 0x000FE254 0x000DBC60 0x000DC4A0 0x0022B734
    0x000FDA70 0x002A3C80
    backtrace continues...
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.iokit.IOATABlockStorage(1.4.2)@0x505000
    dependency: com.apple.iokit.IOStorageFamily(1.4)@0x4d7000
    dependency: com.apple.iokit.IOATAFamily(1.6.0f2)@0x4f4000
    com.apple.iokit.IOStorageFamily(1.4)@0x4d7000
    com.apple.iokit.IOATAFamily(1.6.0f2)@0x4f4000
    Proceeding back via exception chain:
    Exception state (sv=0x384EFC80)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x384F1000)
    PC=0x9B5D7B98; MSR=0x4200D030; DAR=0x0000031C; DSISR=0x42000000; LR=0x9B44DC84; R1=0xF0417A60; XCP=0x00000010 (0x400 - Inst access)
    Kernel version:
    Darwin Kernel Version 8.3.0: Mon Oct 3 20:04:04 PDT 2005; root:xnu-792.6.22.obj~2/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095698 0x00095BB0 0x0002683C 0x000A8304 0x000ABC80
    Proceeding back via exception chain:
    Exception state (sv=0x384EFC80)
    PC=0x004F8D90; MSR=0x00009030; DAR=0x00000016; DSISR=0x40000000; LR=0x004FB4E8; R1=0x21FA2EB0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x004FFC08 0x004FAE28 0x004FA8D8 0x004FA590 0x004FA054 0x004F9D00
    0x004F9C9C 0x002D0018 0x004F9C54 0x004F5B10 0x00506ECC 0x00509360 0x0050BA94 0x004DB3A8
    0x004DE02C 0x004E12F0 0x004E0474 0x004DCE6C 0x004DC9DC 0x004E6A64 0x004EC808 0x004E6A64
    0x004E9F6C 0x004E8E98 0x00108A38 0x000D5DCC 0x000FE254 0x000DBC60 0x000DC4A0 0x0022B734
    0x000FDA70 0x002A3C80
    backtrace conp

    Hi Matteo,
    Welcome to Apple Discussions
    You might be having a problem with your hard drive. Did you check the S.M.A.R.T. status? You might want to Repair your disk.
    I hope that helps,
    Jon

  • Multiple kernels on boot

    Hi
    I am wondering how can i keep different kernels. I am used of Ubuntu which keeps different version of kernels which i can choose on boot. Is it enough to just rename existing kernel to, let's say, kernel26-old.img and edit the menu.lst accordingly before installing new ones?
    Thanks for help because i really miss that freedom and simplicity.
    Last edited by Shark (2011-07-22 21:59:50)

    Shark wrote:
    Hi
    I am wondering how can i keep different kernels. I am used of Ubuntu which keeps different version of kernels which i can choose on boot. Is it enough to just rename existing kernel to, let's say, kernel26-old.img and edit the menu.lst accordingly before installing new ones?
    Thanks for help because i really miss that freedom and simplicity.
    kernel26.img is not your kernel. I can't wait for this naming convention to go away. Currently, the way we build kernels, its not possible to keep multiple kernels with the same package name installed at the same time. For any given kernel series, the module directory will always be  the same (e.g. 2.6.39 as well as 2.6.39.3 use /lib/modules/2.6.39-ARCH). The name of the kernel is hardcoded into it during the build and you cannot get around this without some fairly hackish maneuvers. Installing a completely unrelated kernel (with a differing package name) is your best bet.

  • How to use Keychain for multiple users on one computer?

    I have a new Macbook Pro with Yosemite.  I just moved over from PC for my work computer and the Keychain thing is killing me!  I am a social media consultant so I manage multiple accounts for multiple clients.  I need a way to log in and out as them on many different platforms.  The reality is that I am the only user but I log in and out of different things as if this was a public computer with multiple users. 
    PC allowed me a drop-down option with each login.  For example the email box could be clicked and then I could select the client email that I needed to fill in.  The password would then auto-populate.  Is there any setting I can change to make this happen on a Macbook? I have been logging in, deleting the info in Keychain, then logging in for the next client, delete...etc.
    Most password managers don't work because of this same problem.  Please don't recommend a password manager app unless it can handle logging in and out of (for example)10 different LinkedIn profiles.
    Any advice would be greatly appreciated!

    Tanja Turtsanyi wrote:
    I have a new Macbook Pro with Yosemite.
    Apple>About This Mac>More Info>Service
    Please read the warranty paperwork that came w/your computer.
    You have 14 days to return the computer w/no questions asked. 
    You have 90 days of FREE phone tech support on top of your standard 1 year warranty unless you also purchased AppleCare which gives you an additional 2 years of coverage plus FREE phone support.
    Strongly suggest that you take FULL advantage of the above before it runs out.  Let Apple deal w/the problems.
    Mac OS X (10.4)
    Conflicting info:  Please update/correct your profile so that you can receive the correct troubleshooting suggestions.  This will assist the users in trying to help you.  Thank you.

  • Itunes for multiple family members

    My situation is I've been using iTunes since its inception and built quite a library. I've been through multiple ipods and now on to iphones for multiple family members. All the while using one itunes account on separate devices for multiple family members. Now that we have iphones its become necessary to create separate icloud accounts for each family member. This creates a problem for those with new icloud accounts. The iTunes music library can no longer be shared on separate devices (that I know of). The music library and playlists I have built over years cannot be shared with those devices that now have separate icloud accounts. I am aware of "family sharing" and have set that up going forward but how do I resolve the issue of all the music and playlists that were shared when we all used one itunes account, prior to creating separate icloud accounts? I hope this makes sense. For example my wife and son no longer have access to any of the music/playlists on their iphones that they used to have prior to creating their own accounts. Even though all purchases made before and after creating separate icloud accounts were made using the same credit card.
    I believe I could just go back to having the other devices sign back into my itunes account and I think that may resolve the issue but what happens to purchases that were made on the other devices while they were signed into their own accounts? Another point that comes up is that we all have gift card balances on each itunes account. This is so confusing

    This is great news as I've been struggling with this issue for some time. Mainly because my wife is a little old school and likes to put music on CD's and this solves that problem. Thanks again!!
    Mr Mars,
    You are welcome!  I hope you have achieved the expected degree of "harmony." 
    Family Sharing:  A new way to bring harmony to your family’s digital life
    Ed.

  • I have one apple ID for multiple devices in my family.  I'd like to keep it that way for itunes/app purchases.  I would like a simple step 1, step 2, step 3 response on what I need to do to separate all other features like imessage, contacts, emails, etc.

    I have one apple ID for multiple devices in my family.  I'd like to keep it that way for itunes/app purchases.  I would like a simple step 1, step 2, step 3 response on what I need to do to separate all other features like imessage, contacts, emails, etc.
    I have been reasearching how to do this on the internet, but I haven't found an easy explanation yet.  My family is going crazy over each others imessages being sent to others in the family and not being able to use FaceTime because of conflicting email addresses.  I have read that if each person gets their own iCloud account, this would work.  However, I need to know what to do after I set everyone up with their own iCloud account.  Do I make that the default email address to be contacted or can they still use their hotmail email addresses.  Any help- with easy explanation- would be much appreciated!!

    We do this in my family now.  We have one account for purchases, so it is used to share music and apps (I think that is in Settings/iTunes & App Stores).  Each iDevice has this configured.
    Then, each of us has our own iCloud account that is configured under Settings/iCloud.  That then allows us to have our own Mail/Contacts/Calendars/Reminders/Safari Bookmarks/Notes/Passbook/Photo Stream/Documents & Data/Find My iPhone/and Backup.  That Backup piece is pretty sweet and comes in handly if you replace your iDevice.  You can just restore from it.
    So we all share the Apple Store account but we all have our own iCloud accounts to keep the rest seperate or things like you mentioned are a nightmare.
    In answer to what iCloud does for you: http://www.apple.com/icloud/features/
    Think of it as an internet based ("cloud") area for all of those items listed in my response.  What you need to remember is photo stream only maintans the last 1000 pictures so don't count it as a complete backup solution for your pictures.  Even though I rarely sync with a computer these days, I do still try to sync my phone with iPhoto (I have an iMac) so that I have copies of all of my pictures.  1000 may not stretch as far as it sounds.
    Message was edited by: Michael Pardee

  • How to use one email adress for multiple recipients

    Hello,
    I'd like to know how to use one email adress for multiple recipients. 
    this would be very useful or projects. for example;
    if i send one mail to [email protected], all people in this project get an email.
    I will add the people in this project myself. 
    I know it is possible, but I don't know how to do it ;-)
    please help me! 

    Hope this help.
    _http://technet.microsoft.com/en-us/library/cc164331(v=exchg.65) .aspx

  • Can I use the "same" button multiple times for multiple galleries?

    OK so I am extremely untrained in CS4 and Actionscript. However I have managed to get along fairly well until I started to dynamically upload images as a gallery. This works great if I have one gallery, but for my site I have 9 galleries!!! I have a back and next button, but I want to be able to use those same buttons for all of the galleries so they look the same. I have split them up and renamed them, but I am clueless on how to script the buttons to work. Please help...and don't laugh at my poor scripting. This is what I have now because I do not know where to put the other button names without getting errors.
    stop();
    next_btn .addEventListener(MouseEvent.CLICK, nextImage);
    var imageNumber: Number=1;
    function checkNumber(): void{
        next_btn.visible=true;
        back_btn.visible=true;
        if(imageNumber==15){
            trace(imageNumber);
        next_btn.visible=false;
        if(imageNumber==1){
            trace(imageNumber);
        back_btn.visible=false;
    function nextImage(evtObj:MouseEvent):void {
        imageNumber++;
        mc_engagement.source= "photo/engagement/en0"+imageNumber+".jpg";
        mc_amish.source= "photo/amish/Amish"+imageNumber+".jpg";
        mc_chicago.source= "photo/chicago/ch"+imageNumber+".jpg";
        mc_landscapes.source= "photo/landscapes/land"+imageNumber+".jpg";
        mc_goodvsevil.source= "photo/goodvsevil/ge"+imageNumber+".png";
        mc_animals.source= "design/animals/an"+imageNumber+".png";
        mc_icons.source= "design/icons/icon0"+imageNumber+".png";
        mc_objects.source= "design/objects/pc"+imageNumber+".png";
        mc_typography.source= "design/typography/type"+imageNumber+".png";
        checkNumber();
    back_btn .addEventListener(MouseEvent.CLICK, backImage);
    function backImage(evtObj:MouseEvent):void {
        imageNumber--;
        mc_engagement.source= "photo/engagement/en0"+imageNumber+".jpg";
        mc_amish.source= "photo/amish/Amish"+imageNumber+".jpg";
        mc_chicago.source= "photo/chicago/ch"+imageNumber+".jpg";
        mc_landscapes.source= "photo/landscapes/land"+imageNumber+".jpg";
        mc_goodvsevil.source= "photo/goodvsevil/ge"+imageNumber+".png";
        mc_animals.source= "design/animals/an"+imageNumber+".png";
        mc_icons.source= "design/icons/icon0"+imageNumber+".png";
        mc_objects.source= "design/objects/pc"+imageNumber+".png";
        mc_typography.source= "design/typography/type"+imageNumber+".png";
        checkNumber();

    I'm still a novice with Flash myself, but I have two comments.
    First, at this point, won't your buttons control all galleries at the same time? Which means, if I go to image 5 in one gallery, then move to another gallery, I'll start at image 5, because the actions are all connected.
    Second, you can definitely use the same buttons for multiple galleries. It seems to me that as long as you've assigned the buttons an instance name, these actions should already work to control all the galleries (see the note above). I guess I would need to understand a bit more about how your project is built.

  • How to use the same POWL query for multiple users

    Hello,
    I have defined a POWL query which executes properly. But if I map the same POWL query to 2 portal users and the 2 portal users try to access the same page simultaneously then it gives an error message to one of the users that
    "Query 'ABC' is already open in another session."
    where 'ABC' is the query name.
    Can you please tell me how to use the same POWL query for multiple users ?
    A fast reply would be highly appreciated.
    Thanks and Regards,
    Sandhya

    Batch processing usually involves using actions you have recorded.  In Action you can insert Path that can be used during processing documents.  Path have some size so you may want to only process document that have the same size.  Look in the Actions Palette fly-out menu for insert path.  It inserts|records the current document work path into the action being worked on and when the action is played it inserts the path into the document as the current work path..

  • How to Configure Cisco ASA 5512 for multiple public IP interfaces

    Hi
    I have a new ASA 5512 that I would like to configure for multiple public IP support.  My problem may be basic but I am an occasional router admin and don't touch this stuff enough to retain everything I have learned.
    Here is my concept.    We have a very basic network setup using three different ISPs that are currently running with cheap routers for internet access.  We use these networks to open up access for Sales to demo different products that use a lot of bandwidth (why we have three)
    I wanted to use the 5512 to consolidate the ISPs so we are using one router to manage the connections.  I have installed an add on license that allows multiple outside interfaces along with a number of other features.
    Outside Networks (I've changed the IPs for security purposes)
    Outside1 E 0/0 : 74.55.55.210  255.255.255.240 gateway 74.55.55.222
    Outside2 E 0/2: 50.241.134.220 255.255.248 gateway 50.241.134.222
    Inside1 : E 0/1 192.168.255.1 255.255.248.0
    Inside2 : E 0/3 172.16.255.1 255.255.248.0
    My goal is to have Inside 1 route all internet traffic using Outside1 and Inside 2 to use Outside2.    The problem is I can't seem to do this. I can get inside 1 to use outside 1 but Inside2 uses Outside 1 as well.
    I tried adding static routes on Outside2 to have all 172.16.248.0/21 traffic use gateway 50.241.134.222 but that doesn't seem to work.   
    I can post my config up as needed.  I am not well versed in Cisco CLI, I've been using the ASDM 7.1 app.  My ASA 5512 is at 9.1.   
    Thanks in advance for the suggestions/help

    I have been away for a while and am just getting caught up on some posts. so my apology for a delayed response.
    I find the response very puzzling. It begins by proclaiming that to achieve the objective we must use Policy Based Routing. But then in the suggested configuration there is no PBR. What it gives us is two OSPF processes using one process for each of the public address ranges and with some strange distribute list which uses a route map. I am not clear what exactly it is that this should accomplish and do not see how it contributes to having one group of users use one specific ISP and the other group of users use the other ISP>
    To the original poster
    It seems to me that you have chosen the wrong device to implement the edge function of your network. The ASA is a good firewall and it does some routing things. But fundamentally it is not a router. And to achieve what you want were a group of users will use a specified ISP and the other group of users will use the other ISP you really need a router. You want to control outbound traffic based on the source of the traffic, and that is a classic situation where PBR is the ideal solution. But the ASA does not do PBR.
    HTH
    Rick

Maybe you are looking for

  • [Solved] Samba log spam: Unable to connect to CUPS server

    Hi everyone, I'm running into an annoying issue with samba. I don't have any printers installed, and probably won't. However smbd complains to no end in /var/log/errors.log about not being able to connect to a cups server: Apr 18 12:30:05 asakura nmb

  • Pages '09: mailmerge from AddressBook AND a Number document ???

    I have a +Pages '09+ document in which I have successfully associated mailmerge placeholders with fields in, first, +Address Book+ ; and, second, a Numbers document. But when I try to run the Merge from Edit > Mail merge, either the fields from one (

  • Problem to install Oracle Application Server, required for BI EE

    Hi all I want to install Oracle BI EE and it need OracleAS wich I can install from Oracle SOA suite (2nd choice of the installation type). But in the setup progression of AS, I had a message that the ORACLE HOME exist. I had an instance of SOA suite

  • Three questions about applets

    First I double click the html file, and then it opens up Internet Explorer but the information bar says: To help protect your security, Internet Explorer has restricted this file from showing active content that could access your computer. Click here

  • Int question

    what is meant by up stream and down stream clients