A PKGBUILD that helps you compile kernel from local source tree

I don't know if someone did this beofore. Hours ago I wrote a PKGBUILD file for compiling kernel,
it is different than the one from abs. It allows you
compile a kernel from a exiting kernel source tree and leave it clean.
honor the Archway, this means you have a clean filesystem
It is acutally because I'm currently playing with The Eudyptula Challenge.
and I'm tied our compress/decompress a kernel tree all the time. If you are kernel developer, you
may also find it useful.
The PKGBUILD file worked on my machine, I will add headers and docs later.
Oh, almost forgot: here is my PKGBUILD:
#So we will have a clean src tree
pkgbase=linux-test
_kernel_bin=kernel_build
#the variable you have to provide
_builddir=kernel_build
kernel_src_dir='/home/developer/Courses/kernel-base'
_srcname=kernel_tree
#end the variable you have to provide
pkgver=3.8.1
pkgrel=1
pkgdesc="The Linux kernel and modules"
depends=('coreutils' 'linux-firmware' 'kmod' 'mkinitcpio>=0.7')
makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc')
optdepends=('crda: to set the correct wireless channels of your country')
provides=("kernel26${_kernelname}=${pkgver}")
conflicts=("kernel26${_kernelname}")
replaces=("kernel26${_kernelname}")
arch=('i686' 'x86_64')
url="http://www.kernel.org/"
license=('GPL2')
source=(#if we provide this, means kernel compile progress is already done
"${_kernel_bin}.tar.xz"
'linux.preset'
sha256sums=('65847bc847344434657db729d2dde4a408e303ea29ae1409520cecee8da6fc3d'
'2c2e8428e2281babcaf542e246c2b63dea599abb7ae086fa482081580f108a98')
#this one strip the linux off
_kernelname=${pkgbase#linux}
prepare() {
#XXX:checked
#build dir has to be the same as kernel_bin files, then builddir is created
#automatically by tar
if [ "${kernel_src_dir}" == "" ];then
return 1
fi
#provide kernel source tree for compile and move modules
ln -s ${kernel_src_dir} ${srcdir}/${_srcname}
mkdir -p "${srcdir}/${_srcname}"
#we need to check here if there exist kernel bin files
if [ "${_kernel_bin}" == "" ]; then
make O="${srcdir}/${_builddir}" menuconfig
fi
build() {
#XXX:checked
cd "${srcdir}/${_srcname}"
#we need to check here if there exist kernel bin files
if [ "${_kernel_bin}" == "" ]; then
#return 1
make O="${srcdir}/${_builddir}" bzImage modules
fi
#otherwise this step is done already done
_package() {
#we dont need to worry about mkinitcpio, depmod thing, They are done by
#install script, we need to provide a preset and install file instead.
#we build kernel objs on _builddir, and install them in pkgdir
#install binary files, this means we have a compiled binary tree
cd "${srcdir}/${_srcname}"
#echo "$(pwd)"
KARCH=x86
install=linux.install
# get kernel version
_kernver="$(make O="${srcdir}/${_builddir}" kernelrelease)"
_kernver=$(echo "${_kernver}" | sed -n 2p -)
#strip the -dirty away
_kernver=${_kernver%-*}
_basekernel=${_kernver%%-*}
_basekernel=${_basekernel%.*}
mkdir -p "${pkgdir}"/{lib/modules,lib/firmware,boot}
make O="${srcdir}/${_builddir}" INSTALL_MOD_PATH="${pkgdir}" modules_install
cp "${srcdir}/${_builddir}"/arch/$KARCH/boot/bzImage "${pkgdir}/boot/vmlinuz-${pkgbase}"
# set correct depmod command for install
cp -f "${startdir}/${install}" "${startdir}/${install}.pkg"
true && install=${install}.pkg
sed -e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/" -i "${startdir}/${install}"
sed "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/" -i "${startdir}/${install}"
# install mkinitcpio preset file for kernel
install -D -m644 "${srcdir}/linux.preset" "${pkgdir}/etc/mkinitcpio.d/${pkgbase}.preset"
sed \
-e "1s|'linux.*'|'${pkgbase}'|" \
-e "s|ALL_kver=.*|ALL_kver=\"/boot/vmlinuz-${pkgbase}\"|" \
-e "s|default_image=.*|default_image=\"/boot/initramfs-${pkgbase}.img\"|" \
-i "${pkgdir}/etc/mkinitcpio.d/${pkgbase}.preset"
# 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 save 100MB of space
find "${pkgdir}" -name '*.ko' -exec gzip -9 {} \;
# make room for external modules
ln -s "../extramodules-${_basekernel}${_kernelname:--ARCH}" "${pkgdir}/lib/modules/${_kernver}/extramodules"
# add real version for building modules and running depmod from post_install/upgrade
mkdir -p "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--ARCH}"
echo "${_kernver}" > "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--ARCH}/version"
# Now we call depmod...
#echo "Call Depmod"
cp "${srcdir}/${_builddir}/System.map" System.map
depmod -b "${pkgdir}" -F System.map "${_kernver}"
#echo "Called Depmod"
# move module tree /lib -> /usr/lib
mkdir -p "${pkgdir}/usr"
mv "${pkgdir}/lib" "${pkgdir}/usr/"
# add vmlinux
install -D -m644 "${srcdir}/${_builddir}/"vmlinux "${pkgdir}/usr/lib/modules/${_kernver}/build/vmlinux"
pkgname=("${pkgbase}")
for _p in ${pkgname[@]}; do
eval "package_${_p}() {
_package${_p#${pkgbase}}
done
and here is the address of it on github
Last edited by xedchou (2014-12-23 12:41:55)

Based on the title alone I almost reflexively binned this thread.  Please rename this thread to *something* relating to what you're actually posting.

Similar Messages

  • Update modules with compiling kernel from soure issue.

    Compiling kernel from abs or aur take me much time, so i decide compile kernel from source, compilation and installation successfully but make initial RAM disk doesn't update full modules (crypto,lvm...). I specified -c option to /etc/mkinitcpio.conf but the result is the sam, non-autodectec doesn't help too. When i look into /lib/modules directory, 3.6.6-1-ARCH folder contain "kernel" folder which has a lot of things (arch, crypto, net..) and i think this is my extra modules were declared in HOOK array's mkinitcpio.conf. The another one only contain net folder so i can't boot into this kernel without having loaded others.
    any suggestion for this problem? tks for reply.

    am sorry, i re-tried with HOOK array without autodectect and it can load modules but there are two error:
    ==> ERROR: module not found: `dm-crypt`
    ==> ERROR: modules not found: `dm-snapshot`
    ok i will try to load these modules by manually.
    EDIT: i tried to load dm-mod, dm-crypt, dm-snapshot but it isn't helpful. Errors still remain. any suggestion?
    Last edited by angelfalls (2012-11-12 23:33:53)

  • How do I pull up the left control panel that allows you to move from text to moving objects on page?

    How do I pull up the left control panel that allows you to move from text to moving objects on page?

    Do you mean this one:
    If so, go to the Window menu and make sure that Tools is checked.

  • I have a visa card for Zambia and there is no option in your countries that allow you to pay from Zambia. Please advise what I can do?

    I have a visa card for Zambia and there is no option in your countries that allow you to pay from Zambia. Please advise what I can do?

    TomWolves
    I would do another rename to disable or just delete all the OldFilm.AEX and OldFilm.AEXOLD in that NewBlue Folder.
    If you do, please let me know if that OldFilm.AEX regenerates itself the next time you open Premiere Elements 13.
    Here is the strange story...at least from my Premiere Elements 13 Windows perspective...never had the No Disc error issue
    Here are some details to sort through trying to figure out why you have 2 OldFilm.AEX file in the NewBlue Folder.
    1. The original OldFilm.AEX file of Premiere Elements 13 has the date of 9/4/2014 (just before the version was released on 9/24/2014).
    After the 13.1 update is done (whenever date), that OldFilm.AEX file has the date of 1/31/2015. I first saw notification of the 13.1 Update
    release early in February 2015.
    2. Now in Premiere Elements 13.1, if I take my OldFilm.AEX (date 1/31/2015) and disable it by renaming it to OldFilm.AEXOLD, close out of there, and reopen
    the program, the OldFilm.AEX is not seen to regenerate. The OldFilm.AEXOLD remains there as its lone self.
    3. So, I am thinking that your OldFilm.AEXOLD in the screenshoot is "original equipment" that you disabled to get rid of No disc error.
    Why the OldFilm.AEX is there also is not clear, but the dating on it suggests that it came along with the 13.1 Update.
    Bottom line: let us try the deletion or disabling one more time and see what happens.
    Looking forward to further reports on your findings, as your time permits.
    Thanks.
    ATR

  • How do I add a "PDF printer"  print to PDF so that I can create PDFs from any source I can print ?

    How do I add a "PDF printer"  print to PDF so that I can create PDFs from any source I can print ?
    I am using ADOBE Reader X Thanks

    Pat;  using Windows you can create a "PDF printer" which is a virtual device that you can select when you want to create an Adobe PDF file from anything you normally would print to hardcopy.  As an example if I were on a webpage article that spanned two or three pages so a screen capture wouldn't really work, if I had a "Adobe PDF Printer" I would select that as my default printer and then print the webpage article.  Instead of the webpage article going to a real printer and producing hardcopy, the Adobe PDF printer would ask me for a file name and then "print" the file by creating an Adobe PDF file.  Does that help ?  Best regards,  Doug

  • A PKGBUILD that allows multiple installed kernels

    Hi All,
    I've had so many people help me with so many things here at Arch, hopefully this will be useful to someone.
    What is it:
    I've got a kernel PKGBUILD file that allows me to build and install as many different kernels as desired, as long as each one has a unique $pkgver-$pkgrel setting.
    /var/abs/local/kernel-custom1/PKGBUILD:
    # $Id: PKGBUILD,v 1.17 2004/05/11 23:25:20 judd Exp $
    # Maintainer: judd <[email protected]>
    # 2004/06/30: Modified to support multiple loaded kernels -jea
    # Any kernel with a unique $pkgver-$pkgrel will not conflict with others.
    pkgver=2.6.6
    pkgrel=custom1
    # name mangling is necessary so pacman will load multiple packages
    pkgname=kernel$pkgver$pkgrel
    pkgdesc="Linux Kernel ver: $pkgver, build: $pkgrel"
    url="http://www.kernel.org"
    depends=('module-init-tools')
    # Is this file were patches to grub/menu.lst should occur? -jea
    install=kernel26.install
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$pkgver.tar.bz2
    config)
    # patch makepkg to use as many sums as listed, in order? -jea
    md5sums=('5218790bc3db41e77a7422969639a9ad' 'fd32e9f43e9b6060e01f71d666372518')
    build() {
    cd $startdir/src/linux-$pkgver
    # get rid of the 'i' in i686
    carch=`echo $CARCH | sed 's|i||'`
    cat ../config | sed "s|#CARCH#|$carch|g" >./.config
    yes "" | make config
    # set EXTRAVERSION to create unique /lib/modules/ subdirectories
    cat Makefile | sed "s|EXTRAVERSION =|EXTRAVERSION = -$pkgrel|" > tmpMake
    mv tmpMake Makefile
    make clean bzImage modules || return 1
    mkdir -p $startdir/pkg/{lib/modules,boot}
    make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
    # create unique names in /boot/
    cp System.map $startdir/pkg/boot/System.map-$pkgver-$pkgrel
    cp arch/i386/boot/bzImage $startdir/pkg/boot/vmlinuz-$pkgver-$pkgrel
    install -D -m644 Makefile $startdir/pkg/usr/src/linux-$pkgver/Makefile
    install -D -m644 .config $startdir/pkg/usr/src/linux-$pkgver/.config
    install -D -m644 .config $startdir/pkg/boot/kconfig-$pkgver-$pkgrel
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/include
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/arch/i386/kernel
    for i in acpi asm-generic asm-i386 config linux math-emu net pcmcia scsi video; do
    cp -a include/$i $startdir/pkg/usr/src/linux-$pkgver/include/
    done
    # copy files necessary for later builds, like nvidia and vmware
    # does this "$pkgver-$pkgrel" multi-kernel strategy screw these up? -jea
    cp -a scripts $startdir/pkg/usr/src/linux-$pkgver/
    cp arch/i386/Makefile $startdir/pkg/usr/src/linux-$pkgver/arch/i386/
    cp arch/i386/kernel/asm-offsets.s $startdir/pkg/usr/src/linux-$pkgver/arch/i386/kernel/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/`echo $i | sed 's|/Kconfig.*||'`
    cp $i $startdir/pkg/usr/src/linux-$pkgver/$i
    done
    cd $startdir/pkg/usr/src/linux-$pkgver/include && ln -s asm-i386 asm
    cd $startdir/pkg/usr/src
    # create a unique subdirectory under /usr/src/
    mv linux-$pkgver linux-$pkgver-$pkgrel
    chown -R root.root $startdir/pkg/usr/src/linux-$pkgver-$pkgrel
    cd $startdir/pkg/lib/modules/$pkgver-$pkgrel &&
    (rm -f build; ln -sf /usr/src/linux-$pkgver-$pkgrel build)
    How it works:
    The primary thing I've usually done is wipe out my custom kernel by inadvertantly overwriting the loadable modules in the /lib/modules/$pkgver directory with a pacman -Su.
    The reason for this is that the current arch kernel build does not set the EXTRAVERSION variable in the kernel top level makefile. Therefore all kernels of the same $pkgver use the same /lib/modules/$pkgver/ subdirectory.
    The above PKGBUILD sets EXTRAVERSION to the $pkgrel variable.
    This causes the loadable module tree to be in a /lib/modules/$pkgver-$pkgrel/ directory.
    There are two other places where kernels experience file conflicts:
    /boot/
    /usr/src/
    The /boot/ files: vmlinuz, System.map and kconfig are given unique names by appending the $pkgver-$pkgrel string.
    The /usr/src/linux-$pkgver/ directory is moved to /usr/src/linux-$pkgver-$pkgrel/.
    This allows the loadable kernel, the loadable modules and the stripped source headers to be in a unique place for each different kernel. Therefore multiple kernels can be loaded concurrently and the desired one may be chosen at boot time by grub.
    The only thing a little weird about this, is the $pkgname variable. pacman will only load one version of each $pkgname, so for multiple kernels to be loaded, they each have to have a unique $pkgname. This is accomplished by appending the $pkgver and $pkgrel to the $pkgname. This is fine, except it gives a slightly weird name for the resulting kernel package file. It has the format:
    kernel$pkgver$pkgrel-$pkgver-$pkgrel.pkg.tar.gz
    That is, the $pkgver and $pkgrel appear in the package file name twice. This also shows if one issues:
    pacman -Q | grep kernel -
    Which yields for me:
    kernel2.6.6custom1 2.6.6-custom1
    kernel2.6.61 2.6.6-1
    kernel26 2.6.7-1
    This command could only have shown one package before, now it shows that I currently have installed: a custom 2.6.6 kernel, the stock arch 2.6.6 kernel built with the above PKGBUILD and the current arch kernel26 package.
    I may choose between any of these at boot time with grub. And as an added bonus, the next time I pacman -Su I won't wipe out my custom /lib/modules subdirectory 8-)
    All of this assumes the supply of your own custom config file as in the arch wiki Building the Kernel in ABS instructions.
    Idle thoughts:
    It would sure be nice if something like this could be adopted for the stock arch kernels. Unlike most other packages it is often desirable to have multiple versions of the kernel package installed at once.
    I wonder if it is practical for pacman to allow multiple versions of the same $pkgname to be installed concurrently if the $pkgname-$pkgver-$pkgrel string is unique and the different versions do not have file conflicts?
    The other major package I could see this being applied to is gcc. It would be really cool to load different cross and other configurations of gcc concurently.
    I find one of the most diifficult things needed to get a workstation running is getting all of the correct kernel modules built in. It seems that most PCs today have all the major features built in to the motherboard chipset: graphics controller, sound, usb, ethernet, etc. If it was possible to build a database of custom kernels, one for each major chipset, then one could be chosen by hardware detection at install time. This would provide the benefits of a custom kernel in an autoload fashion.
    Just dreaming...
    Conclusion:
    I'm not sure how this strategy fits in with the bigger pictiure of running pkg repositories, building dependent packages, who knows what else.
    The thing I hope to add next is automatically adding and removing entries into: /boot/grub/menu.lst when the kernel package is installed and removed. The $pkgdesc string is perfect for serving as the title line.
    Hopefully this can be useful to others, it has helped me clean up my multi-kernel mess here.
    Thanks Again for such an awesome distro...
    John E. A.
    p.s Arch Rulz!

    Thank you, I tried to set something up like this in the wiki, but never tested it and it didn't work for some users. You've tested it well?
    If so, you can copy it over to the wiki (edit or overwrite the Kernel compile with ABS wiki entry), or I can.
    Thanks again, its much appreciated.
    Dusty

  • [Solved]Error compiling kernel from abs

    Hello Everyone,
    I've hit a wall trying to compile the kernel from the abs. I get this error message:
    patching file fs/fat/inode.c
    Hunk #1 succeeded at 800 (offset 74 lines).
    HOSTCC scripts/basic/fixdep
    /bin/sh: scripts/basic/fixdep: cannot execute binary file
    make[2]: *** [scripts/basic/fixdep] Error 126
    make[1]: *** [scripts_basic] Error 2
    SYSHDR arch/x86/syscalls/../include/generated/asm/unistd_32.h
    SYSHDR arch/x86/syscalls/../include/generated/asm/unistd_64.h
    make: *** No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop.
    make: *** Waiting for unfinished jobs....
    HOSTCC scripts/basic/fixdep
    SYSHDR arch/x86/syscalls/../include/generated/asm/unistd_x32.h
    SYSTBL arch/x86/syscalls/../include/generated/asm/syscalls_32.h
    /bin/sh: scripts/basic/fixdep: cannot execute binary file
    make[1]: *** [scripts/basic/fixdep] Error 126
    make: *** [scripts_basic] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    While trying to figure this out I came across this post: https://bbs.archlinux.org/viewtopic.php?id=99089 and have tried the solutions presented. I did end up having to change my fstab to include defaults,
    /dev/sda3 /home ext4 defaults,exec,rw,relatime,data=ordered 0 2
    and the permissions on scripts/basic/fixdep are: -rwxr-xr-x which i think it correct.
    Unfortunately, the problem still exists and I don't know how to continue trouble shooting. Can someone point me in a direction to troubleshoot this?
    Last edited by magyarm (2012-12-20 01:55:00)

    magyarm wrote:So now, I need to figure out a good way to handle multiple compilers on my system to prevent this from happening again. If anyone has any tips I would love to hear them.
    Set up a file that you source from bash to prepend the cross compiler to your path, that would only be active for that shell, and when you're done just close it. Means you only activate the cross compiler when you need it.

  • Using custom compiled kernel from Ubuntu

    I know I could always use my config file and recompile just for Arch, but I'm wondering what the downsides might be to using my bzImage file and doing a mkinitcpio to make the initrd file? They're both 64bit, all set up to use ext4 and ntfs. I am using kernel 3.2 sources with ubuntu's patches which add their debian/debian.master stuff, but I strip out everything I don't need for my system, set to core2 for cpu, turn off unneeded debugging options, and most importantly put in a DSDT.hex file I have from when I had to patch the DSDTAll of the drivers that my system uses are compiled in. I use Ubuntu 75% of the time, Arch 20% and Windows 7 5%. (I do use a seperate Arch in VirtualBox daily when in Ubuntu so please don't be mad at me for not being a full time Arch user yet!) . Figured I'd ask and see how friendly these forums are. I might just try later to see but I don't want to be in the middle of something important a week from now and then it's like oh f*ck.

    Actually that part I did know, because I rarely use bluetooth so those drivers are modules and not compiled in. I may just wind up recompiling whenever. I'm currently chrooted into arch still working on something else.
    EDIT: It works, but it makes my arch boot time worse and it freaked out at first 'cuz I sometimes use virtualbox to boot the install on the HD install itself with a raw vmdk pointing that partition which uses a virtualbox video driver instead of nvidia's binary . I'll just have to compile my own kernel on the arch side.
    Last edited by xyzzyman (2011-12-12 05:01:02)

  • Illustrator CS4 or CC, effect that lets you quickly change from color vector vector grayscale?

    In Illustrator CS4 or CC, is there an effect that lets you quickly change a color vector illustration into a grayscale vector illustration?

    edit >> edit colors >. convert to grayscale

  • You Tube Favorites from Two Sources

    I am adding You tube favorites from both my iPhone 3Gs and my Apple TV. When I merge the two, many of my saved favorites do not play. I get a couple of different error messages: Account suspended, inappropriate content, and video does not currently support iPhone. I understand the last message, but why the first two? BY the way, there is nothing X-rated here. Thanks.

    Hi Anders,
    Yes you have to achive that by creating new functions on organization
    determination rule. With this assume your partners both Sold To and
    Employee Responsible are entered before you save the documents,
    and then you set the organization determination take place when
    saving the document.
    Hope this helps.
    Gun.

  • Is there a site that help's diagnose Kernel Panics?

    Aised from Apple or a Genius Bar, is there a site what diagnoses kenral panics? My Mid 2010 MacPro with Mountain Lion (latest) is crashing several times a day. I have added nothing new to it. It passes the extended hardware test. It's fine for hours and then I notice a tiny halt in a mouse movement, and that means I'll crash soon. Within 10 minutes a random mouse movement will freeze, and then it crashes. I know the proper suspects are MEMORY, any added new equipment, etc. Is there a site where they can look at the Crash report and point me in the right direction?
    thanks.

    Fri Jan 18 13:31:16 2013
    panic(cpu 11 caller 0xffffff80204156b0): "Spinlock acquisition timed out: lock=0xffffff80665a02e8, lock owner thread=0xffffff8053e60550, current_thread: 0xffffff8053e60550, lock owner active on CPU 0xb, current owner: 0xffffff8053e60550"@/SourceCache/xnu/xnu-2050.18.24/osfmk/i386/locks_i386.c:363
    Backtrace (CPU 11), Frame : Return Address
    0xffffff82d04b3d50 : 0xffffff802041d626
    0xffffff82d04b3dc0 : 0xffffff80204156b0
    0xffffff82d04b3de0 : 0xffffff8020420b80
    0xffffff82d04b3e10 : 0xffffff8020410448
    0xffffff82d04b3e60 : 0xffffff8020420df2
    0xffffff82d04b3e90 : 0xffffff802044f021
    0xffffff82d04b3ed0 : 0xffffff8020416d00
    0xffffff82d04b3f20 : 0xffffff8020419f64
    0xffffff82d04b3f50 : 0xffffff8020418c97
    0xffffff82d04b3f70 : 0xffffff80204a5b16
    0xffffff82d04b3fb0 : 0xffffff80204ced53
    BSD process name corresponding to current thread: Transmit
    Mac OS version:
    12C60
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID:
    Kernel slide:     0x0000000020200000
    Kernel text base: 0xffffff8020400000
    System model name: MacPro5,1 (Mac-F221BEC8)
    System uptime in nanoseconds: 17454638458203
    last loaded kext at 17414723459581: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7fa2817000, size 16384)
    last unloaded kext at 16108151104375: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7fa2814000, size 12288)
    loaded kexts:
    com.eset.kext.esets_kac          1.0.0d1
    com.paceap.kext.pacesupport.snowleopard          5.9
    com.waves.driver.soundgrid          2.0.0
    com.rogueamoeba.InstantOnCore          6.0.1
    com.digidesign.iokit.DigiDal          10.3.2f47
    com.AmbrosiaSW.AudioSupport          4.1.2
    com.makemkv.kext.daspi          1
    com.owc.driver.Accelsior          1.0 b2
    com.rogueamoeba.InstantOn          6.0.1
    com.apple.driver.AppleUSBCDC          4.1.22
    com.apple.filesystems.udf          2.3
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.filesystems.autofs          3.0
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleUSBDisplays          353
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.kext.AMDFramebuffer          8.0.0
    com.apple.AMDRadeonAccelerator          1.0.0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.Intel82574L          2.3.0b4
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleUSBUHCI          5.2.5
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.driver.AppleUSBAudio          2.9.0f6
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.iokit.IOAcceleratorFamily          19.0.26
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleFWAudio          2.6.5fc5
    com.apple.kext.AMD5000Controller          8.0.0
    com.apple.kext.AMDSupport          8.0.0
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOFireWireAVC          4.2.2
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.driver.AppleUSBHIDKeyboard          165.5
    com.apple.driver.AppleHIDKeyboard          165.5
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.2
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0

  • [solved]Compile kernel from aur consumes time than from source?

    With my box from source take 1-1,5 minutes and from aur take ~1h, anyone can explain this situation? thanks.
    Last edited by angelfalls (2012-11-12 02:59:25)

    tks falconindy, i will look into it later.

  • [SOLVED] How to makepkg from local source

    Hello!
    I have downloaded a tarball from the Aur and when using "makepkg -si" it downloads and compiles the source from Github just fine.
    I want to do some changes on the source but I don't know how to get makepkg to use the edited files instead of getting the fresh source from Github. The only solution I have come up with is to fork on Github and change url in PKGBUILD, it works fine but it's a real hassle.
    Any help is appreciated.
    Last edited by Lime (2015-05-21 18:45:20)

    jasonwryan wrote:man makepkg | less -p extract
    I thought I had looked everywhere and I completely forgot about that, thanks!
    Solution for anyone else wanting to do this, use -e/--noextract flag.

  • Website/software that prevens you from logging onto the Internet

    Recently I read about a website or software that allows you to disengage from the Internet for a period of time.
    Do you know the URL for this site or product?
    Thank you.

    Your question says that you want to prevent logging onto the internet...that is very easy to do, simply unplug the cable to your modem. Or turn the AirPort card off if you are using wireless.
    If you are looking for software for another purpose, such as parental controls, that is a different topic and there are various ways of preventing unfettered access to the internet.

  • Password forgetfulness causes phone breakages (see how I made it like a headline, that means you have to help me pleeeeeaaaseeeee)

    I (stupidly) changed the password on my handset then forgot it, I typed it in too many times, thinking when it said "handset will be wiped" they meant of pictures and contacts, so I remover my memory card and carried on (my contacts are all backed up so I didn't worry about them)
    turns out they meant wipe everything including the operating system. I have no idea how to fix this and would love anyone who told me how to fix this very much and for a long time

    A security wipe does not wipe or delete the operating system of the device.
    It only deletes the user preferences, contacts, messages, email, calendar, etc., and basically leaves the device in a "like new" state.
    I don't know what you did, if the operating system is deleted.
    What happens if you Do a simple reboot on the BlackBerry in this manner: With the BlackBerry device POWERED ON, remove the battery for a minute, and then reinsert the battery to reboot. A reboot in this manner is prescribed for most glitches and operating system errors, and you will lose no data on the device doing this.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • PHP in SAP Enterprise Portal

    Hi experts!!!!!!! I am making an application in php, but I need to know, who is the user that it is loggued in the portal. any idea?? thanks in advance!!! Regards

  • Help me granting privilege on a view (!)

    I have two schema A & B.In schema A I have table T_tb.Now I want to create view T_vw (select * from T_tb) on T_tb in schema B and I want some of my users having role R make a select on this view. I tried this way.. CONN SYS GRANT SELECT ON A.T_tb TO

  • BlackBerry Wireless Headset HS700

    I like to know if his BlackBerry Wireless Headset HS700 can be use in the left ear with one of the hocks provide, Because I have a damage right ear and I can't put any think in that ear. Please any reply will help Thanks.

  • Programmatically Add JUCtrlAttrsBinding At Runtime

    Hi , I have try to add new JUCtrlAttrsBinding mapping in DCBindingContainer at runtime.Its added successfully , but when i try to write valueExpression for this attribute i have get the below error. javax.el.PropertyNotFoundException: Target Unreacha

  • My iphone4's one speaker is only working

    my iphone4's one speaker is only working. send me some suggestions ...wat to do for it ...