[solved] Building a kernel meant for one computer on another computer?

Hi!
Is it possible to use my laptop to build a kernel meant for a much slower desktop computer?
They're both running up-to-date Arch i686.
Last edited by francisc1701 (2010-02-14 17:43:24)

Everything does after its answered. Please mark solved. And you're welcome

Similar Messages

  • [solved] building the kernel headers for custom kernels

    well, ive been building several different kernels for my laptop, so that i can test stuff. but ive got a problem with the kernel headers.
    ive mirrored the arch kernel's PKGBUILD and modified some naming to get a custom kernel. but when i try to build a custmo module, it complains the headers are broken. (example, vbox_build_module).
    im pasting the pkgbuild here for future reference...if someone sees something thats plain wrong, please say so.
    thanks
    # $Id: PKGBUILD 60382 2009-12-04 15:31:11Z tpowa $
    # Maintainer: Tobias Powalowski <[email protected]>
    # Maintainer: Thomas Baechler <[email protected]>
    pkgbase="kernel26"
    #pkgname=('kernel26' 'kernel26-firmware' 'kernel26-headers') # Build stock -ARCH kernel
    pkgname=('kernel26-git' 'kernel26-git-headers') # Build kernel with a different name
    _kernelname=${pkgname#kernel26}
    pkgver=2.6.34
    pkgrel=1
    _patchname=""
    _branch="linux-2.6"
    _gittag="v2.6.34-rc3"
    #_gittag="origin"
    arch=(i686 x86_64)
    license=('GPL2')
    groups=('base')
    url="http://www.kernel.org"
    source=(config
    # standard config files for mkinitcpio ramdisk
    kernel26.preset
    ${_patchname})
    build() {
    cd ${srcdir}/$_branch
    msg "Fetching branch ${_branch}"
    ## FOR BISECT, Comment these lines
    git reset --hard
    git clean -d -f
    git fetch
    msg "Cheking out tag ${_gittag}"
    git checkout $_gittag
    ### a patch
    if [ "${_patchname}" != "" ]; then
    patch -Np1 -i ${srcdir}/$_patchname || return 1
    fi
    # 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 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 bzImage modules || return 1
    package_kernel26-git() {
    pkgdesc="The Linux Kernel and modules"
    backup=(etc/mkinitcpio.d/${pkgname}.preset)
    depends=('coreutils' 'kernel26-firmware>=2.6.32' 'module-init-tools' 'mkinitcpio>=0.5.20')
    # 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')
    install=kernel26.install
    optdepends=('crda: to set the correct wireless channels of your country')
    KARCH=x86
    cd ${srcdir}/$_branch
    _kernver="$(make kernelrelease)"
    mkdir -p ${pkgdir}/{lib/modules,boot}
    make INSTALL_MOD_PATH=${pkgdir} modules_install || return 1
    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 || return 1
    # 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
    package_kernel26-git-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}/$_branch
    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,x86} config linux math-emu media net pcmcia scsi sound trace video; 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 usbvideo zc0301; 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
    # 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 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/
    # 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
    cd ${pkgdir}/usr/src/linux-${_kernver}/include && ln -s asm-$KARCH asm
    # add header for aufs2-util
    cp -a ${srcdir}/$_branch/include/asm-generic/bitsperlong.h ${pkgdir}/usr/src/linux-${_kernver}/include/asm/
    chown -R root.root ${pkgdir}/usr/src/linux-${_kernver}
    find ${pkgdir}/usr/src/linux-${_kernver} -type d -exec chmod 755 {} \;
    # 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-firmware() {
    pkgdesc="The included firmware files of the Linux Kernel"
    groups=('base')
    cd ${srcdir}/$_branch
    make firmware || return 1
    make INSTALL_MOD_PATH=${pkgdir} firmware_install || return 1
    Last edited by eldragon (2010-04-04 14:58:16)

    ngoonee wrote:
    Check out this line
    for i in acpi asm-{generic,x86} config linux math-emu media net pcmcia scsi sound trace video; do
    for anything that might be missing. The error message when compiling would give you more of a clue. Off-hand, you may need to add 'generated', as I recall I needed that when the kernel moved to 2.6.33.
    Problem with vbox_build_module after Kernel update.
    Would you care to elaborate for us less versed in "Linux Geek" skills?
    Thanks.......
    [root@Arch2009p2 jeff]# vbox_build_module
    Building vboxdrv for Linux 2.6.33-ARCH
    make[1]: Entering directory `/opt/VirtualBox/src/vboxdrv'
    for f in . linux r0drv r0drv/generic r0drv/linux VBox common/err common/string common/log generic math/gcc; \
    do rm -f $f/*.o $f/.*.cmd $f/.*.flags; done
    rm -rf .vboxdrv* .tmp_ver* vboxdrv.* Module.symvers Modules.symvers modules.order
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxdrv'
    make[1]: Entering directory `/opt/VirtualBox/src/vboxnetflt'
    for f in . linux r0drv r0drv/linux VBox common/err common/string common/log generic math/gcc; \
    do rm -f $f/*.o $f/.*.cmd $f/.*.flags; done
    rm -rf .vboxnetflt* .tmp_ver* vboxnetflt.* Modules.symvers modules.order
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxnetflt'
    make[1]: Entering directory `/opt/VirtualBox/src/vboxnetadp'
    for f in . linux r0drv r0drv/linux VBox common/err common/string common/log generic math/gcc; \
    do rm -f $f/*.o $f/.*.cmd $f/.*.flags; done
    rm -rf .vboxnetadp* .tmp_ver* vboxnetadp.* Modules.symvers modules.order
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxnetadp'
    rm -f vboxdrv.ko vboxnetflt.ko vboxnetadp.ko
    *** Building 'vboxdrv' module ***
    make[1]: Entering directory `/opt/VirtualBox/src/vboxdrv'
    make KBUILD_VERBOSE= -C /lib/modules/2.6.33-ARCH/build SUBDIRS=/opt/VirtualBox/src/vboxdrv SRCROOT=/opt/VirtualBox/src/vboxdrv modules
    make[2]: Entering directory `/usr/src/linux-2.6.33-ARCH'
    CC [M] /opt/VirtualBox/src/vboxdrv/linux/SUPDrv-linux.o
    In file included from /opt/VirtualBox/src/vboxdrv/include/VBox/types.h:34,
    from /opt/VirtualBox/src/vboxdrv/linux/../SUPDrvInternal.h:39,
    from /opt/VirtualBox/src/vboxdrv/linux/SUPDrv-linux.c:37:
    /opt/VirtualBox/src/vboxdrv/include/iprt/types.h:100:30: error: linux/autoconf.h: No such file or directory
    make[3]: *** [/opt/VirtualBox/src/vboxdrv/linux/SUPDrv-linux.o] Error 1
    make[2]: *** [_module_/opt/VirtualBox/src/vboxdrv] Error 2
    make[2]: Leaving directory `/usr/src/linux-2.6.33-ARCH'
    make[1]: *** [vboxdrv] Error 2
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxdrv'
    make: *** [all] Error 2

  • Adobe Flash Builder 4 licence is for one desktop and one laptop, only one at a time run or

    After installing Adobe Flash Builder 4 needed install AIR? Adobe Flex 4 SDK IS ALREADY INCLUDED?
    Adobe Flash Builder 4 licence is for one desktop and one laptop, only one at a time run or...?

    hi,
    Flashbuilder has the ability to create and run Air content from the IDE, to actually usean Air App outside of the IDE you need to install Air.
    Flashbuilder install includes 2 sdks, the 3.5 sdk for 'backward' compatibility with Flexbuilder and for targeting flashplayer 9, the 4.x SDK for Flashbuilder and  targetting flashplayer 10.0 and above.
    As far as fair use is concerned Adobe have had fair use software licensing for a while, single user 2 devices is not a problem, what is not clear is if you can use the software on both devices at the same time.
    David

  • HT201109 Why can't I open a final cut project from one computer in another computer?

    I'm using Final Cut Pro Trial. Why can't I open a final cut project from one computer in another computer? When I try to open the project on my desktop it doesn't recognize the format. Please help!

    I downloaded FCPX trial on my laptop as well as on my desktop. I did some editing on my laptop but I need to get the project I created on my laptop onto my desktop. When I import the project onto my desktop the videos are Red and they say "Missing File."

  • [SOLVED]Building UEFI (EDK II) for x64 platform

    HI,
    I am trying to build the EDK II source for an x86 platform. I am carrying out the following steps from the release notes for Unix Systems. My OS is Linux 2.6.32
    ===============================================================================
                             HOW TO BUILD (UNIX-LIKE SYSTEM)
    ================================================================================
    Unix-Like System Configuration:
      DistributorID: Ubuntu
      Description:   Ubuntu 9.10
      Release:       Ubuntu 9.10
      Codename:      Karmic
    1.  Extract Common Source Code
        1)  Create a working space directory in the build machine, for example, ~/src/MyWorkspace
        2)  Extract files in [UDK2010.UP4] to the working space directory.
            In this case, it is ~/src/MyWorkspace. There are two BaseTools package one
            is for Windows system and another is for UNIX-Like system. Please make
            sure BaseTools(Unix).tar is used here.
        3)  Extract files in [P.UDK2010.UP4.Network] and copy the NetworkPkg Directory to the working    
    space directory. In this case, it is ~/src/MyWorkspace.
        4)  Extract files in [P.UDK2010.UP4.SourceDebugging] and copy the SourceDebuggingPkg Directory    
        to the working space directory. In this case, it is ~/src/MyWorkspace.
    3.  Generate OpenSSL* Crypto Library
        1)  Open file "~/src/MyWorkspace/CryptoPkg/Library/OpensslLib/Patch-HOWTO.txt"
            and follow the instruction to install OpenSSL* for UEFI building.
    4.  Setup Build Environment
        1)  Follow instructions for setting up the build environment on tianocore.org.
            http://sourceforge.net/apps/mediawiki/t … ke_systems
            a) Please be noticed that here the root is "~/src/MyWorkspace" instead
               of "~/src/edk2"
            b) Follow the instructions for building GCC* for X64 and IA32 as well as
               building the Intel ASL compiler. Some of these steps are listed under
               the <Enabling Other Tools> section.
            c) At last check again and make sure "BaseTools", "GCC* for IA32", "GCC*
               for X64" and IASL compiler are successfully built out. Check if these
               tools path defined in "Conf/tools_def.txt" are accordant with actual
               tools path especially for UNIXGCC_IA32_PETOOLS_PREFIX,
               UNIXGCC_X64_PETOOLS_PREFIX and UNIX_IASL_BIN.
    5.  Build Steps
        1)  Open a terminal and type "cd ~/src/MyWorkspace" to enter the workspace
            directory.
        2)  Initialize the build environment by typing ". edksetup.sh BaseTools".
        3)  Now type "build -t UNIXGCC -a IA32 -p Nt32Pkg/Nt32Pkg.dsc"
            to build the platform.
    I am successful in executing the steps untill I run the last command which is 'build'. This instruction is from the link
    http://sourceforge.net/apps/mediawiki/t … ke_systems (as pointed up above in step 4.1)
    I get errors while running the command build.
    Could someone help?
    Regards!
    Last edited by Flash99 (2011-09-20 05:06:54)

    These are the Error messages that I receive:
    /tmp/cc21nZXF.s: Assembler messages:
    /tmp/cc21nZXF.s:2: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:2: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:2: Warning: setting incorrect section attributes for .debug_abbrev
    /tmp/cc21nZXF.s:4: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:4: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:4: Warning: setting incorrect section attributes for .debug_info
    /tmp/cc21nZXF.s:6: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:6: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:6: Warning: setting incorrect section attributes for .debug_line
    /tmp/cc21nZXF.s:11: Error: unknown pseudo-op: `.def'
    /tmp/cc21nZXF.s:11: Error: unknown pseudo-op: `.scl'
    /tmp/cc21nZXF.s:11: Error: unrecognized symbol type "32"
    /tmp/cc21nZXF.s:11: Error: unknown pseudo-op: `.endef'
    /tmp/cc21nZXF.s:58: Error: unknown pseudo-op: `.def'
    /tmp/cc21nZXF.s:58: Error: unknown pseudo-op: `.scl'
    /tmp/cc21nZXF.s:58: Error: unrecognized symbol type "32"
    /tmp/cc21nZXF.s:58: Error: unknown pseudo-op: `.endef'
    /tmp/cc21nZXF.s:117: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:117: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:148: Error: unknown pseudo-op: `.def'
    /tmp/cc21nZXF.s:148: Error: unknown pseudo-op: `.scl'
    /tmp/cc21nZXF.s:148: Error: unrecognized symbol type "32"
    /tmp/cc21nZXF.s:148: Error: unknown pseudo-op: `.endef'
    /tmp/cc21nZXF.s:1594: Error: unknown pseudo-op: `.def'
    /tmp/cc21nZXF.s:1594: Error: unknown pseudo-op: `.scl'
    /tmp/cc21nZXF.s:1594: Error: unrecognized symbol type "32"
    /tmp/cc21nZXF.s:1594: Error: unknown pseudo-op: `.endef'
    /tmp/cc21nZXF.s:1612: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:1612: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:1621: Error: unknown pseudo-op: `.def'
    /tmp/cc21nZXF.s:1621: Error: unknown pseudo-op: `.scl'
    /tmp/cc21nZXF.s:1621: Error: unrecognized symbol type "32"
    /tmp/cc21nZXF.s:1621: Error: unknown pseudo-op: `.endef'
    /tmp/cc21nZXF.s:1972: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:1972: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:2082: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:2082: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:2102: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:2114: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:2150: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:2210: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:2222: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:2281: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:2281: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:3839: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:3839: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:3842: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:3850: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4117: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4122: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4132: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4137: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4154: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4162: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4173: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4176: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4187: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4190: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4194: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4200: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4206: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4212: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4223: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4226: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4230: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4232: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4236: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4242: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4248: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4254: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4260: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4262: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4267: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4271: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4273: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4285: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4291: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4297: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4303: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4309: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4315: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4321: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4327: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4329: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4341: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4347: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4353: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4359: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4365: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4371: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4382: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4388: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4394: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4400: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4406: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4412: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4418: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4441: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4490: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4515: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4612: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4666: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4673: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4675: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4679: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4685: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4691: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4708: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4711: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4715: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4721: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4727: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4733: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4735: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4739: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4741: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4746: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4750: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4752: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4764: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4791: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4794: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4809: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4836: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4889: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4903: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:4944: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:4944: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:5567: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:5567: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:5570: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:5587: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:5587: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:5587: Warning: setting incorrect section attributes for .debug_aranges
    /tmp/cc21nZXF.s:5590: Error: unknown pseudo-op: `.secrel32'
    /tmp/cc21nZXF.s:5599: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:5599: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:5633: Warning: entity size for SHF_MERGE not specified
    /tmp/cc21nZXF.s:5633: Warning: group name for SHF_GROUP not specified
    /tmp/cc21nZXF.s:5648: Error: unknown pseudo-op: `.def'
    /tmp/cc21nZXF.s:5648: Error: unknown pseudo-op: `.scl'
    /tmp/cc21nZXF.s:5648: Error: unrecognized symbol type "32"
    /tmp/cc21nZXF.s:5648: Error: unknown pseudo-op: `.endef'
    /tmp/cc21nZXF.s:5649: Error: unknown pseudo-op: `.def'
    /tmp/cc21nZXF.s:5649: Error: unknown pseudo-op: `.scl'
    /tmp/cc21nZXF.s:5649: Error: unrecognized symbol type "32"
    /tmp/cc21nZXF.s:5649: Error: unknown pseudo-op: `.endef'
    /tmp/cc21nZXF.s:5650: Error: unknown pseudo-op: `.def'
    /tmp/cc21nZXF.s:5650: Error: unknown pseudo-op: `.scl'
    /tmp/cc21nZXF.s:5650: Error: unrecognized symbol type "32"
    /tmp/cc21nZXF.s:5650: Error: unknown pseudo-op: `.endef'
    /tmp/cc21nZXF.s:5651: Error: unknown pseudo-op: `.def'
    /tmp/cc21nZXF.s:5651: Error: unknown pseudo-op: `.scl'
    /tmp/cc21nZXF.s:5651: Error: unrecognized symbol type "32"
    /tmp/cc21nZXF.s:5651: Error: unknown pseudo-op: `.endef'
    /tmp/cc21nZXF.s:5652: Error: unknown pseudo-op: `.def'
    /tmp/cc21nZXF.s:5652: Error: unknown pseudo-op: `.scl'
    /tmp/cc21nZXF.s:5652: Error: unrecognized symbol type "32"
    /tmp/cc21nZXF.s:5652: Error: unknown pseudo-op: `.endef'
    as: /home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib/OUTPUT/./PrintLibInternal.obj: warning: sh_link not set for section `.debug_abbrev'
    as: /home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib/OUTPUT/./PrintLibInternal.obj: warning: sh_link not set for section `.debug_info'
    as: /home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib/OUTPUT/./PrintLibInternal.obj: warning: sh_link not set for section `.debug_line'
    as: /home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib/OUTPUT/./PrintLibInternal.obj: warning: sh_link not set for section `.rdata'
    as: /home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib/OUTPUT/./PrintLibInternal.obj: warning: sh_link not set for section `.debug_frame'
    as: /home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib/OUTPUT/./PrintLibInternal.obj: warning: sh_link not set for section `.debug_loc'
    as: /home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib/OUTPUT/./PrintLibInternal.obj: warning: sh_link not set for section `.debug_pubnames'
    as: /home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib/OUTPUT/./PrintLibInternal.obj: warning: sh_link not set for section `.debug_aranges'
    as: /home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib/OUTPUT/./PrintLibInternal.obj: warning: sh_link not set for section `.debug_ranges'
    as: /home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib/OUTPUT/./PrintLibInternal.obj: warning: sh_link not set for section `.debug_str'
    make: *** [/home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib/OUTPUT/PrintLibInternal.obj] Error 1
    build.py...
    : error 7000: Failed to execute command
    make tbuild [/home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BasePrintLib/BasePrintLib]
    build.py...
    : error 7000: Failed to execute command
    make tbuild [/home/max/UEFI/UDK2010.UP4/Build/MdeModule/DEBUG_UNIXGCC/X64/MdePkg/Library/BaseLib/BaseLib]
    build.py...
    : error F002: Failed to build module
    /home/max/UEFI/UDK2010.UP4/MdePkg/Library/BasePrintLib/BasePrintLib.inf [X64, UNIXGCC, DEBUG]
    Last edited by Flash99 (2011-09-16 15:12:20)

  • How do I transfer music in iTunes from one computer to another computer?

    I have an iTunes Library full of music in a laptop with Windows and I want to transfer it to my desktop computer, a Dell with Windows. I've heard you can import songs from your iPod that you got from one computer to another, I'd also like to know how to do that, because I think that might be the only way.

    You can use your iPod as a hard drive and move the ITunes folder:
    How to use your iPod to move your music to a new computer
    There is a manual method of accessing the iPod's hard drive and copying songs but not playlists back to iTunes on Windows posted in this thread: MacMuse - iPod to iTunes
    If you prefer something more automated then there are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod, this is just a selection. Have a look at the web pages and documentation for these, they are generally quite straightforward.
    iPod Access Mac and Windows Versions
    YamiPod Mac and Windows Versions
    PodUtil Mac and Windows Versions
    iPodCopy Mac and Windows Versions
    PodPlayer Windows Only
    iGadget Windows Only
    Alternatively you can network the two computers:
    New PC & moving iTunes library
    Copying songs over a network to use with iTunes for Windows

  • How do I link the javadoc for one jar to another?

    I'm starting to work on the javadocs for my project. It consists of three JAR files. The problem is I haven't figured out is how to link the javadoc for one JAR to that for another jar. So if JAR A declares class X and JAR B has class Y extend class X, they need to be linked. But the javadoc output only has plain text there. What am I doing wrong? Something like @see com.u3e.tests.tools.X is output as text, not a link. I have the same problem for any @see pointing to part of the JDK. @see java.lang.Object is text.
    My project is NetBeans IDE based.  Do I need to manually specify something on the command line?  I see the -sourcepath and -classpath command line options, but don't know if those would help or not.  Ideally, there would be a place directly in the Documentation portion of the properties for each JAR to list that, but I don't see it.  The various JARs are listed under the libraries section as needed to satisfy dependencies.

    The best way IMO is to sync each iPad with your computer. Having all your stuff backed up on a computer is a good idea anyway. Just read how many folks here are trying to recover lost stuff that could easily be copied back from either backup or iTunes on the computer.
    Sync both iPads to the computer. Transfer all photos to the same computer. Then sync again selecting which items you want on each iPad.

  • HT1657 how do you move a movie rental from one computer to another computer

    I rented a movie from iTunes and downloaded it to my Macbook Air.
    I now want to watch it on my iMac, but it tells me its authorized to play on another computer.
    FAQ says I need to move it from one computer to another.
    How do I do this?

    You may be able to move it by syncing it to an iPod or iOS device capable of playing it and then using the Transfer Purchases function; it won't play on the destination computer if moved in the normal way.
    If it can't be moved that way, no.
    If the MacBook Air isn't usable, ask the iTunes Store staff for assistance.
    (96630)

  • Forward Email for one account to another domain?

    I apologize if this is a repeat question, but I am still having problems setting this up.  Snow Lep used to have the ability to forward email for a user to another location.  I host my own domain with multiple users.  I want all mail sent to one of those users, in my domain, to go to another email address outside my dowmain.  Basiclly to do whatever process they "Forward mail" option in old Workgroup Manger, for a user.
    I looked into the "Virtual Domain" stuff for postfix, and forwarding there, but from what I can understand, thats for Virtual Domains, not for ones that  your actually hosting.  i.e. Can't have domain.com in Mydestinations AND Virtual file.
    So how do I acomplish this?
    Thanks in advance.
    Steve

    patricknh wrote:
    I was very happy to hear that Mail in iOS 4 would allow me to move individual email messages from one account to another, indeed from one folder in one account to another folder in another account. Of course, this has been trivially easy in OS X's Mail.app for ages.
    I'm very disappointed to find that there's a gigantic gotcha -- I cannot for the life of me move an email received in (say) my Gmail account, or my me.com account, into any folder in my work Exchange (2003) account. I get the same message: "Unable to move message. The message could not be moved into the mailbox [foo]."
    Is this in fact generally the case? If so, it should be owned up to.
    With two Exchange accounts, Gmail and a private business account, I can't move messages from either account to the other. I'd love to know if there's a fix.

  • Use a gtk theme for one app and another for the whole system??

    I would like to know if is it possible to use a theme for one application and use another for the remaining of the system? I use OpenBox and I change themes with Lxappearance...
    Thanks,

    Uhh, thanks mauryck for the question and anonymous_user for the answer! I use a very slow gtk theme, and one program suffer from it, but this theme is so beautiful so I dont like to change. Never though about this solution, use a different theme only for this program!
    Sometimes the solution is so simple...

  • MOVE iTiunes from one computer to another computer

    when you adapts titles - artists etc ... in iTunes this is written in a database or file somewhere - WHERE ?
    as consequence if you move your music from one hard drive/computer to another, besides the folders in which your music is stored what other fines need to be copied to new environment not to loose any info.
    thanks

    first make sure you install the same version on one computer as the other (this is extremely important!!) then go to your itunes folder located
    in vista:
    C:\users\<account name>\music\itunes
    in xp:
    C:\Documents and Settings\<account name>\My Documents\My Music\iTunes
    (note that this is only the default location this is stored) and then cut the itunes music folder and the two files iTunes Library.itl and iTunes Music Library.xml put them in the same locations on ur other computer and you are done

  • Deauthorizing one computer from another computer

    I need to know how to deauthorize an individual audible computer account from a different computer. I've had two computers crash over the past couple years and the computer I'm using right now is the last of my 5 authorized computers. I need to know how to deauthorize the crashed computers so I am ready in case another computer crashes in the future. Thanks in advance.

    You can't deauthorise computers you no longer have access to individually. However once you reach the limit of 5 authorisations you have the option to deauthorise them all in one go from your iTunes account and start over. *Just note that you can only use this option once a year*: About iTunes Music Store Authorisation and Deauthorisation

  • How do I update my iTunes on a computer from another computer from my phone

    I have been using my friends itunes and am now getting the new iphone and would like to put it onto my apple mac with my itunes but am stuck to what to do.
    I dont mind deleting the music on my itunes but really want to music from my friends itunes.
    Anyone help?

    Is this music your friend wrote and performed and which you have permisssion to copy?  Not being able to copy media from a phone synced to one library to a computer with a different library is probably deliberate to prevent people from distributing music for which they have not paid.

  • How do i transfer an itunes account from my old computer to another computer which already has an itunes account registered to someone else

    how do i transfer an itunes account from one computer to another which already has another account on it which is registered with someone else

    There is no account stored on any computer, the library however is stored.
    To move the iTunes library from one computer to another, copy the ENTIRE iTunes folder from one computer to another.

  • Lightroom 3.x won't start for one user on my computer.  Works fine for all others.  Help?

    I'm running Vista and LR 3.2.  I have multiple users accounts on the same computer (my family members).  Everyone is able to use LR except one user.  Whenever he trys to launch LR, he gets an error message that says:
    "Lightroom - Opening Catalog: IMG_0154.JPG.lrcat"
    Directly under that is the MS Windows dialog box that says "LR 64-bit has stopped working" and to look for an online solution and close the program.
    I really don't want to reinstall LR again unless I can do so without losing the catalogs from all the other users.  It would be best if we didn't lose the catalog from the user that can't start LR, too.  It's lotsa work to redo...  Help on what to do?
    -Willcy-

    Don't have a clue what's happening, but workaround
    should eb possible bu creating a ne catalog then importing original into
    new. Steps required:
    1. User opens their accoun on PC
    2. Hold down Alt key when launching Lightroom. A dialog should open that will allow you to switch catlogs or create a new one
    3. Choose Create New Catlog. Give it a name (e..g the Users name). and make sure that it is located within the Users account area on hard disk (same location as original is probably best).
    4. When Lr opens go to File menu and choose Import from Catalog
    5. A dialog will open. Locate the old catlog (i.e. the lrcat file) and select.
    6. Hit Choose button
    7. Lightroom will check integretity and contents of old catalog. A dialog will open. Make sure all folders are checked.
    8. Hit Import button.
    9. Close Lr when catlog import is complete.
    10 Reopen Lightroom. The new catalog should open by default

Maybe you are looking for

  • Ideas for a Mass Email form

    I'm looking to add something where people can sign up for a mothly news letter. Something where people sign up, and it automatically complies a list of emails. any ideas? Is this something MailChimp can do?

  • Adobe Photoshop Lightroom 3 updates won't work? Also tried DNG converter but will not work either.

    Does anyone know how to get the Adobe Photoshop Lightroom 3 to update so you can use it? I can't process raw files with my new Canon SD Mark 3. It looks like they stopped doing updates. Next I tried the DNG converter but it was useless. It could not

  • Is there a way to revert to OS 3.0 after updating to OS 4.0

    I'm asking this because I lost all of my contacts, pictures, and SMS. So basically I'm extremely fed up with Apple product right now and all I want is to revert back to OS 3.0 so that I can restore my iPhone and use one of my old back-ups to get my c

  • Document management requirement

    Hi, We need to provide document management feature in SAP enterprise portal. The requirements are users should be able to create folders, rename folders, delete folders, create, upload, delete documents such as word, pdf, excel etc. Also we would wan

  • NIO SocketChannel Re-Connection problem

    Hello all, I am developing poker game. in that i am using socketchannel. if any client have some problem and if it disconnects i have to reconnect the client and i have to establish a new connection. means i have to create another socketchannel. mean