Howto guide for Debian GNU/Linux on the Apple MacBook Pro 5,5 (Summer 2009)
Last updated: Mon Jun 21 07:40 UTC 2010
Forum:
http://forum.notebookreview.com/showthread.php?t=418403
Mirror:
http://allurgroceries.com/mbp55/
Contents:
Status
Installation
Booting Linux by default
Upgrade to Sid
Kernel
Graphics drivers
Wireless
Touchpad
Keyboard
Sound
LCD Brightness
Fan control
Recommended packages
Resources
Appendices:
Building the latest rc kernel
Problems upgrading dkms packages
System Information
I'm dual booting OS X 10.6.1 and Debian Sid AMD64. Specs of my 13" MBP:
Code:
Model Name: MacBook Pro
Model Identifier: MacBookPro5,5
Processor Name: Intel Core 2 Duo
Processor Speed: 2.53 GHz
Number Of Processors: 1
Total Number Of Cores: 2
L2 Cache: 3 MB
Memory: 4 GB
Bus Speed: 1.07 GHz
Boot ROM Version: MBP55.00AC.B03
SMC Version (system): 1.47f2
Status
Not working yet:
-Expose and Dashboard hotkeys
Works (out of the box):
-Bluetooth
-Camera
-Suspend and resume
Works (after some tweaks):
-Wireless (via proprietary Broadcom STA module).
-Sound with headphone sensing and digital (optical) switch (via manual ALSA build). See important note below about volume balance.
-NVIDIA 9400M GPU with HDMI out over Mini DisplayPort (via proprietary NVIDIA drivers). Note: hardware does NOT support HDMI audio -- Mini DisplayPort cannot carry audio signals.
-Touchpad two finger scrolling, two finger right click, three finger 3rd button, click-and-drag (via bcm5974-dkms).
-Rebooting and halting the machine works with 2.6.31 and later but not .30 or earlier
-Light sensor (via pommed).
-Keyboard backlight, adjustment with F5 and F6 (via pommed).
-LCD backlight adjustment with F1 and F2 (via pommed and nvidia-bl).
Installation
Step 1. Upgrade to Snow Leopard. (optional)
Step 2. Resize primary partition to 120GB (or whatever). Open the Terminal (from Applications->Utilities) and run:
Code:
diskutil list
sudo diskutil resizevolume disk0s2 120G
Where 120G is 120GB or however much space you want to leave for OS X out of your whole disk.
Step 3. Reboot.
Step 4. Create MS-DOS partition in Disk Utility (from Applications->Utilities) to fill up free space. Do not choose a different partition type besides MS-DOS.
Step 5.
Install rEFIt. If rEFIt doesn't show up immediately upon rebooting, in OS X open the Terminal (from Applications->Utilities) and run:
Code:
cd /efi/refit
./enable.sh
You may need to enter your password (or press enter for a blank password).
Step 6. Burn
Debian 5.0.3 AMD64 Netinst ISO and reboot holding the C key (note: the latest Squeeze daily build did not work for me it would hang after setting console mode to UTF-8).
Step 7. Start Debian installer with Ethernet plugged in, go through first steps.
Step 8. Choose manual partitioning and delete the MS-DOS partition. In its space create a primary Linux and swap partitions. Other partitions for sharing data are optional. Format the partitions and make sure the primary Linux partition is bootable.
Step 9. Configure package sources and install base system. Choose software and install the rest of the system up until the bootloader.
Step 10. When prompted to install GRUB select 'Go Back'. Hit Fn+control+option+F2 to get to the terminal. Hit return. The partitions need to be synchronized:
Code:
chroot /target
aptitude install refit
/sbin/gptsync /dev/sda
Step 12. Now install GRUB where /dev/sda4 is the linux system partition:
Code:
aptitude install grub
grub-install /dev/sda4
update-grub
Step 13. Hit Fn+control+option+F1, complete the installation and reboot.
Step 14. Choose Linux from the rEFIt menu and boot Debian.
Boot Linux by default
This is optional. If you want OS X to be your default OS, skip this section.
Boot OS X and open the Terminal. Run:
Code:
nano +93 /efi/refit/refit.conf
You should start on a line that reads:
Hit Fn+Delete to remove the # from the beginning of the line (to
uncomment it).
Optional: If you want to change the timeout (default 5 seconds), it is at the top of the file. Press Control+w and type timeout and press return and you should see it.
Hit Control+o (the letter O NOT number 0) and press Enter/Return to save the file.
Upgrade to Sid
Edit your /etc/apt/sources.list (as root) to read:
Code:
deb http://mirrors.kernel.org/debian/ sid main contrib non-free
deb-src http://mirrors.kernel.org/debian/ sid main contrib non-free
Comment out (or delete) any other lines. Then update the package list and do the upgrade:
Code:
apt-get update && apt-get dist-upgrade
Kernel
First get a few packages installed (as root):
Code:
apt-get install build-essential kernel-package
Next, add your regular user account to the src group (as root):
Code:
adduser yourname src
Copy over the kernel installation scripts (otherwise no initrd will be created and the system won't boot until a manual mkinitramfs) as root:
Code:
cp /usr/share/kernel-package/examples/etc/kernel/postinst.d/initramfs /etc/kernel/postinst.d/
cp /usr/share/kernel-package/examples/etc/kernel/postrm.d/initramfs /etc/kernel/postrm.d/
Log out and back in (restart X) from System->Log Out.
After logging back in with your regular user account you will have write access on /usr/src. Next, download and build the kernel as a regular user (not root).
Code:
cd /usr/src
wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.31.13.tar.bz2
tar jxvf linux-2.6.31.13.tar.bz2
cd linux-2.6.31.13
export CONCURRENCY_LEVEL=2
wget -O .config http://allurgroceries.com/mbp55/config-2.6.31.6
make oldconfig && make prepare
make-kpkg clean
fakeroot make-kpkg --initrd kernel_image kernel_headers
This should take about an hour or so. After it finishes, install the .debs in the parent directory and update grub (as root):
Code:
dpkg -i /usr/src/linux-image-2.6.31.13_2.6.31.13-10.00.Custom_amd64.deb /usr/src/linux-headers-2.6.31.13_2.6.31.13-10.00.Custom_amd64.deb
update-grub
Now reboot and select the 2.6.31.13 kernel from the boot menu.
Graphics drivers
Hit Fn+control+option+F1 if you are in a graphical environment.
Code:
/etc/init.d/gdm stop
cd ~
wget http://us.download.nvidia.com/XFree86/Linux-x86_64/195.36.31/NVIDIA-Linux-x86_64-195.36.31-pkg2.run
chmod +x NVIDIA-Linux-x86_64-195.36.31-pkg2.run
modprobe -r nvidia
./NVIDIA-Linux-x86_64-195.36.31-pkg2.run -Nqa --ui=none
nvidia-xconfig
/etc/init.d/gdm start
Optional: install my xorg.conf which has PowerMizer enabled to throttle back the GPU when it's not being used by 3D apps. Also disables the NVIDIA logo on X startup. Do this as root (use sudo if needed):
Code:
mv /etc/X11/xorg.conf /etc/X11/xorg.conf.old
wget -O /etc/X11/xorg.conf http://allurgroceries.com/mbp55/xorg.conf
Wireless
First make sure that the b43 module is not installed and loaded because it does not support the BCM4322 in the MBP5,5 and it will cause conflicts (lockups).
Check to see if b43 is loaded (as root):
If anything is listed, it means the module is loaded. Unload it (as root):
To prevent the module from loading on startup, add it to the blacklist (as root):
Code:
echo "blacklist b43" >> /etc/modprobe.d/blacklist.conf
echo "blacklist ssb" >> /etc/modprobe.d/blacklist.conf
Now install the wireless drivers:
Code:
apt-get update
apt-get install wireless-tools
cd /usr/src
mkdir wl
cd wl
wget http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_64-v5.10.91.9.3.tar.gz
tar zxvf hybrid-portsrc-x86_64-v5.10.91.9.3.tar.gz
KBUILD_NOPEDANTIC=1 make -C /lib/modules/`uname -r`/build M=`pwd`
install -D -m 755 wl.ko /lib/modules/`uname -r`/kernel/drivers/net/wireless/wl.ko
depmod -r
modprobe wl
echo wl >> /etc/modules
Touchpad
First, configure the touchpad by creating /etc/hal/fdi/policy/x11-synaptics-bcm5974.fdi. There is an example file here:
https://help.ubuntu.com/community/Ma...aunty#Touchpad
Next, install dkms and get a patched bcm5974-dkms that enables click-and-drag:
Code:
apt-get install dkms
wget http://launchpadlibrarian.net/24871974/bcm5974-dkms_1.1.4_all_test.deb
dpkg -i bcm5974-dkms_1.1.4_all_test.deb
modprobe -r bcm5974
modprobe bcm5974
Click and drag will work, but you must click first and then place 2nd finger down to drag, otherwise it ends up a right click (remember -- two fingers to right click and three for the 3rd mouse button).
Keyboard
To get the keyboard backlight working (with F5 and F6 to control it):
Code:
apt-get install pommed
Also see the
resources section below on how to manually control the keyboard backlight level.
Sound
First install the build dependencies, then get the ALSA driver source, compile it, install, and reload ALSA. Note that the pulseaudio line is optional. If you are not running pulseaudio disregard that command below. Most Ubuntu users probably have it enabled.
Code:
apt-get build-dep alsa-source
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.21.tar.bz2
tar jxvf alsa-driver-1.0.21.tar.bz2
cd alsa-driver-1.0.21
./configure
make
make install
/etc/init.d/pulseaudio stop
alsa force-reload
Sound will now work.* You may notice that the left channel is louder than the right at first. This is because the mixer has the 'Surround Speaker' switch off by default and its levels at 0. Enable the switch in your mixer (gnome-alsamixer for example) and turn up its channel and the levels should even out. This is by hardware design - the left speaker is above the Esc key and the right is below the return key, thus the left is more directly exposed and reflects off of the LCD. With the surround speaker ("subwoofer") enabled it will sound even between left and right channels.
*Ubuntu users: If sound doesn't work still, try this:
http://ubuntuforums.org/showthread.p...68#post8076668
How to stop the terribly annoying volume adjustment sound. Edit
/etc/pommed.conf
Code:
# Audio support
audio {
# Use amixer or alsamixer/alsamixergui to determine the sound card
# and the mixer elements to use here.
# sound card to use
card = "default"
# initial volume [80] (0 - 100%, -1 to disable)
init = -1
# step value (1 - 50%)
step = 10
# beep on volume change
beep = no
LCD Brightness
This requires nvidia-bl-dkms from the
Mactel PPA along with pommed 1.29 or later.
First install nvidia-bl-dkms:
Code:
wget https://launchpad.net/~mactel-support/+archive/ppa/+files/nvidia-bl-dkms_0.16.9~lucid_all.deb
dpkg -i nvidia-bl-dkms_0.16.9~lucid_all.deb
Then, blacklist mbp_nvidia_bl and add nvidia_bl to /etc/modules:
Code:
echo "blacklist mbp_nvidia_bl" >> /etc/modprobe.d/blacklist.conf
echo "nvidia_bl" >> /etc/modules
Reboot and the backlight control with F1 and F2 should work now (inside X and at the terminal).
Update: pommed seems to be killing my backlight brightness now when I unplug from AC power. Also the step is too low so I have to hold down the brightness keys forever for it to change. Here's a workaround. Edit
/etc/pommed.conf, the changes are in bold:
Code:
# sysfs backlight control
# nVidia machines, will fall back to nv8600gmt if not supported by the kernel
lcd_sysfs {
# The sysfs backlight control is a generic interface provided
# by the Linux kernel for backlight control on most graphic cards.
# The brightness range can differ depending on the hardware.
# initial backlight level [12] (0 - 15, -1 to disable)
init = -1
# step value (1 - 2)
step = 32
# backlight level when on battery [6] (1 - 15, 0 to disable)
on_batt = 1024
}
Then restart pommed:
Code:
/etc/init.d/pommed restart
OBSOLETE: This is for reference if you used the previous method with a patched version of gnome-power-manager. Here is how to remove and reinstall the stock gnome-power-manager package:
Code:
dpkg -P gnome-power-manager
apt-get install gnome-power-manager
Fan control
With the use of the applesmc module the fan can be manually controlled:
Code:
echo 1 > /sys/devices/platform/applesmc.768/fan1_manual
echo 7000 > /sys/devices/platform/applesmc.768/fan1_min
Recommended packages
Preload "is an adaptive readahead daemon. It monitors applications that users run, and by analyzing this data, predicts what applications users might run, and fetches those binaries and their dependencies into memory for faster startup times."
Code:
apt-get install preload
cpufrequtils: "utilities to deal with the cpufreq Linux kernel feature". Use with cpufreq-applet (part of the gnome-applets package).
Code:
apt-get install cpufrequtils
blueman: Gnome applet to control bluetooth.
Code:
apt-get install blueman
sensors-applet: Display readings from hardware sensors in your Gnome panel.
Code:
apt-get install sensors-applet
Laptop Mode Tools "is a laptop power saving package for Linux systems. It allows you to extend the battery life of your laptop, in several ways. It is the primary way to enable the Laptop Mode feature of the Linux kernel, which lets your hard drive spin down. In addition, it allows you to tweak a number of other power-related settings using a simple configuration file."
Code:
apt-get install laptop-mode-tools
Resources:
http://wiki.debian.org/MacBook
https://help.ubuntu.com/community/MacBookPro5-5/Jaunty
https://help.ubuntu.com/community/MacBookPro5-5/Karmic
Wireless:
http://www.broadcom.com/support/802.11/linux_sta.php
Sound:
http://ubuntuforums.org/showthread.p...17#post7627817
Touchpad click and drag:
https://bugs.edge.launchpad.net/mact...rt/+bug/356317
Keyboard backlight (manual control):
https://bugs.launchpad.net/ubuntu/+s...945/comments/3
LCD backlight:
http://lists.alioth.debian.org/piper...09-October.txt (this patch is included in pommed 1.29).
http://ubuntuforums.org/showpost.php...1&postcount=13
NVIDIA drivers:
http://www.nvnews.net/vbulletin/showthread.php?t=122606
Disassembly (teardown):
http://www.ifixit.com/Teardown/MacBo...-Unibody/814/1
Building the latest rc kernel
THIS IS VERY OLD - for reference only.
Code:
cd /usr/src
wget http://www.kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.32-rc7.tar.bz2
tar jxvf linux-2.6.32-rc7.tar.bz2
cd linux-2.6.32-rc7
export CONCURRENCY_LEVEL=2
wget -O .config http://allurgroceries.com/mbp55/config-2.6.32-rc7
make oldconfig && make prepare
fakeroot make-kpkg clean
fakeroot make-kpkg --initrd kernel_image kernel_headers
sudo dpkg -i /usr/src/linux-image-2.6.32-rc7_2.6.32-rc7-10.00.Custom_amd64.deb /usr/src/linux-headers-2.6.32-rc7_2.6.32-rc7-10.00.Custom_amd64.deb
sudo update-grub
Problems upgrading DKMS packages
If you have trouble upgrading dkms packages with an error like 'bad config file' or similar, move the dkms files out of the way and reinstall the deb.
Example for nvidia-bl:
Code:
mv /var/lib/dkms/nvidia_bl ~/nvidia_bl.old
Example for bcm5974:
Code:
mv /var/lib/dkms/bcm5974 ~/bcm5974.old
Now reinstall the deb packages and there should be no errors.
lspci:
Code:
00:00.0 Host bridge: nVidia Corporation MCP79 Host Bridge (rev b1)
00:00.1 RAM memory: nVidia Corporation MCP79 Memory Controller (rev b1)
00:03.0 ISA bridge: nVidia Corporation MCP79 LPC Bridge (rev b3)
00:03.1 RAM memory: nVidia Corporation MCP79 Memory Controller (rev b1)
00:03.2 SMBus: nVidia Corporation MCP79 SMBus (rev b1)
00:03.3 RAM memory: nVidia Corporation MCP79 Memory Controller (rev b1)
00:03.4 RAM memory: nVidia Corporation Device 0a98 (rev b1)
00:03.5 Co-processor: nVidia Corporation MCP79 Co-processor (rev b1)
00:04.0 USB Controller: nVidia Corporation MCP79 OHCI USB 1.1 Controller (rev b1)
00:04.1 USB Controller: nVidia Corporation MCP79 EHCI USB 2.0 Controller (rev b1)
00:06.0 USB Controller: nVidia Corporation MCP79 OHCI USB 1.1 Controller (rev b1)
00:06.1 USB Controller: nVidia Corporation MCP79 EHCI USB 2.0 Controller (rev b1)
00:08.0 Audio device: nVidia Corporation MCP79 High Definition Audio (rev b1)
00:09.0 PCI bridge: nVidia Corporation MCP79 PCI Bridge (rev b1)
00:0a.0 Ethernet controller: nVidia Corporation MCP79 Ethernet (rev b1)
00:0b.0 IDE interface: nVidia Corporation MCP79 SATA Controller (rev b1)
00:10.0 PCI bridge: nVidia Corporation MCP79 PCI Express Bridge (rev b1)
00:15.0 PCI bridge: nVidia Corporation MCP79 PCI Express Bridge (rev b1)
00:16.0 PCI bridge: nVidia Corporation MCP79 PCI Express Bridge (rev b1)
02:00.0 VGA compatible controller: nVidia Corporation C79 [GeForce 9400M] (rev b1)
03:00.0 Network controller: Broadcom Corporation BCM4322 802.11a/b/g/n Wireless LAN Controller (rev 01)
04:00.0 FireWire (IEEE 1394): Agere Systems FW643 PCI Express1394b Controller (PHY/Link) (rev 07)
lspci -v:
Code:
00:00.0 Host bridge: nVidia Corporation MCP79 Host Bridge (rev b1)
Flags: bus master, 66MHz, fast devsel, latency 0
00:00.1 RAM memory: nVidia Corporation MCP79 Memory Controller (rev b1)
Flags: bus master, 66MHz, fast devsel, latency 0
00:03.0 ISA bridge: nVidia Corporation MCP79 LPC Bridge (rev b3)
Subsystem: nVidia Corporation Device cb79
Flags: bus master, 66MHz, fast devsel, latency 0
I/O ports at 2000 [size=256]
00:03.1 RAM memory: nVidia Corporation MCP79 Memory Controller (rev b1)
Flags: 66MHz, fast devsel
00:03.2 SMBus: nVidia Corporation MCP79 SMBus (rev b1)
Subsystem: nVidia Corporation Device cb79
Flags: 66MHz, fast devsel, IRQ 15
I/O ports at 2180 [size=64]
I/O ports at 2140 [size=64]
I/O ports at 2100 [size=64]
Capabilities: [44] Power Management version 2
Kernel driver in use: nForce2_smbus
00:03.3 RAM memory: nVidia Corporation MCP79 Memory Controller (rev b1)
Flags: 66MHz, fast devsel
00:03.4 RAM memory: nVidia Corporation Device 0a98 (rev b1)
Subsystem: nVidia Corporation Device cb79
Flags: 66MHz, fast devsel
00:03.5 Co-processor: nVidia Corporation MCP79 Co-processor (rev b1)
Subsystem: nVidia Corporation Device cb79
Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 23
Memory at d3400000 (32-bit, non-prefetchable) [size=512K]
00:04.0 USB Controller: nVidia Corporation MCP79 OHCI USB 1.1 Controller (rev b1) (prog-if 10 [OHCI])
Subsystem: nVidia Corporation Device cb79
Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 18
Memory at d3488000 (32-bit, non-prefetchable) [size=4K]
Capabilities: [44] Power Management version 2
Kernel driver in use: ohci_hcd
00:04.1 USB Controller: nVidia Corporation MCP79 EHCI USB 2.0 Controller (rev b1) (prog-if 20 [EHCI])
Subsystem: nVidia Corporation Device cb79
Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 20
Memory at d3489200 (32-bit, non-prefetchable) [size=256]
Capabilities: [44] Debug port: BAR=1 offset=00a0
Capabilities: [80] Power Management version 2
Kernel driver in use: ehci_hcd
00:06.0 USB Controller: nVidia Corporation MCP79 OHCI USB 1.1 Controller (rev b1) (prog-if 10 [OHCI])
Subsystem: nVidia Corporation Device cb79
Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 16
Memory at d3487000 (32-bit, non-prefetchable) [size=4K]
Capabilities: [44] Power Management version 2
Kernel driver in use: ohci_hcd
00:06.1 USB Controller: nVidia Corporation MCP79 EHCI USB 2.0 Controller (rev b1) (prog-if 20 [EHCI])
Subsystem: nVidia Corporation Device cb79
Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 19
Memory at d3489100 (32-bit, non-prefetchable) [size=256]
Capabilities: [44] Debug port: BAR=1 offset=00a0
Capabilities: [80] Power Management version 2
Kernel driver in use: ehci_hcd
00:08.0 Audio device: nVidia Corporation MCP79 High Definition Audio (rev b1)
Subsystem: nVidia Corporation Device cb79
Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 21
Memory at d3480000 (32-bit, non-prefetchable) [size=16K]
Capabilities: [44] Power Management version 2
Kernel driver in use: HDA Intel
00:09.0 PCI bridge: nVidia Corporation MCP79 PCI Bridge (rev b1) (prog-if 01 [Subtractive decode])
Flags: bus master, 66MHz, fast devsel, latency 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
Memory behind bridge: d3300000-d33fffff
Capabilities: [b8] Subsystem: nVidia Corporation Device cb79
00:0a.0 Ethernet controller: nVidia Corporation MCP79 Ethernet (rev b1)
Subsystem: nVidia Corporation Device cb79
Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 27
Memory at d3486000 (32-bit, non-prefetchable) [size=4K]
I/O ports at 21e0 [size=8]
Memory at d3489000 (32-bit, non-prefetchable) [size=256]
Memory at d3489300 (32-bit, non-prefetchable) [size=16]
Capabilities: [44] Power Management version 2
Capabilities: [50] MSI: Enable+ Count=1/16 Maskable+ 64bit+
Kernel driver in use: forcedeth
00:0b.0 IDE interface: nVidia Corporation MCP79 SATA Controller (rev b1) (prog-if 85 [Master SecO PriO])
Subsystem: nVidia Corporation Device cb79
Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 26
I/O ports at 21d8 [size=8]
I/O ports at 21ec [size=4]
I/O ports at 21d0 [size=8]
I/O ports at 21e8 [size=4]
I/O ports at 21c0 [size=16]
Memory at d3484000 (32-bit, non-prefetchable) [size=8K]
Capabilities: [44] Power Management version 2
Capabilities: [8c] SATA HBA ?
Capabilities: [b0] MSI: Enable+ Count=1/8 Maskable- 64bit+
Kernel driver in use: ahci
00:10.0 PCI bridge: nVidia Corporation MCP79 PCI Express Bridge (rev b1) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
I/O behind bridge: 00001000-00001fff
Memory behind bridge: d2000000-d30fffff
Prefetchable memory behind bridge: 00000000c0000000-00000000d1ffffff
Capabilities: [40] Subsystem: nVidia Corporation Device 0000
Capabilities: [48] Power Management version 2
Capabilities: [50] MSI: Enable- Count=1/2 Maskable- 64bit+
00:15.0 PCI bridge: nVidia Corporation MCP79 PCI Express Bridge (rev b1) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
Memory behind bridge: d3200000-d32fffff
Capabilities: [40] Subsystem: nVidia Corporation Device 0000
Capabilities: [48] Power Management version 3
Capabilities: [50] MSI: Enable+ Count=1/2 Maskable- 64bit+
Capabilities: [80] Express Root Port (Slot+), MSI 00
Kernel driver in use: pcieport
00:16.0 PCI bridge: nVidia Corporation MCP79 PCI Express Bridge (rev b1) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
Memory behind bridge: d3100000-d31fffff
Capabilities: [40] Subsystem: nVidia Corporation Device 0000
Capabilities: [48] Power Management version 3
Capabilities: [50] MSI: Enable+ Count=1/2 Maskable- 64bit+
Capabilities: [80] Express Root Port (Slot+), MSI 00
Kernel driver in use: pcieport
02:00.0 VGA compatible controller: nVidia Corporation C79 [GeForce 9400M] (rev b1) (prog-if 00 [VGA controller])
Subsystem: Apple Computer Inc. Device 00b9
Flags: bus master, fast devsel, latency 0, IRQ 22
Memory at d2000000 (32-bit, non-prefetchable) [size=16M]
Memory at c0000000 (64-bit, prefetchable) [size=256M]
Memory at d0000000 (64-bit, prefetchable) [size=32M]
I/O ports at 1000 [size=128]
[virtual] Expansion ROM at d3000000 [disabled] [size=128K]
Capabilities: [60] Power Management version 2
Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
Kernel driver in use: nvidia
03:00.0 Network controller: Broadcom Corporation BCM4322 802.11a/b/g/n Wireless LAN Controller (rev 01)
Subsystem: Apple Computer Inc. Device 008d
Flags: bus master, fast devsel, latency 0, IRQ 23
Memory at d3200000 (64-bit, non-prefetchable) [size=16K]
Capabilities: [40] Power Management version 3
Capabilities: [58] Vendor Specific Information ?
Capabilities: [e8] MSI: Enable- Count=1/1 Maskable- 64bit+
Capabilities: [d0] Express Endpoint, MSI 00
Capabilities: [100] Advanced Error Reporting
Capabilities: [13c] Virtual Channel ?
Capabilities: [160] Device Serial Number
Capabilities: [16c] Power Budgeting ?
Kernel driver in use: wl
04:00.0 FireWire (IEEE 1394): Agere Systems FW643 PCI Express1394b Controller (PHY/Link) (rev 07) (prog-if 10 [OHCI])
Subsystem: Agere Systems Device 5900
Flags: bus master, fast devsel, latency 0, IRQ 22
Memory at d3100000 (64-bit, non-prefetchable) [size=4K]
Capabilities: [44] Power Management version 3
Capabilities: [4c] MSI: Enable- Count=1/1 Maskable- 64bit+
Capabilities: [60] Express Endpoint, MSI 00
Capabilities: [100] Advanced Error Reporting
Capabilities: [140] Virtual Channel ?
Capabilities: [170] Device Serial Number 00-00-00-00-00-00-00-00
Kernel driver in use: firewire_ohci
lsusb:
Code:
Bus 004 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)
Bus 004 Device 003: ID 05ac:8213 Apple, Inc.
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 003: ID 05ac:0236 Apple, Inc.
Bus 003 Device 002: ID 05ac:8242 Apple, Inc.
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 002: ID 05ac:8507 Apple, Inc.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 003: ID 05ac:8403 Apple, Inc.
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
lshw:
Code:
description: Notebook
product: MacBookPro5,5
vendor: Apple Inc.
version: 1.0
serial:
width: 64 bits
capabilities: smbios-2.4 dmi-2.4 vsyscall64 vsyscall32
configuration: boot=normal chassis=notebook uuid=
*-core
description: Motherboard
product: Mac-F2268AC8
vendor: Apple Inc.
physical id: 0
serial: Base Board Serial#
slot: Part Component
*-cpu:0
description: CPU
product: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
vendor: Intel Corp.
physical id: 0
bus info: cpu@0
version: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
slot: U2E1
size: 798MHz
capacity: 2530MHz
width: 64 bits
clock: 266MHz
capabilities: fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx x86-64 constant_tsc arch_perfmon pebs bts rep_good aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm tpr_shadow vnmi flexpriority cpufreq
*-cache
description: L1 cache
physical id: 2
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back data
*-cache:0
description: L1 cache
physical id: 1
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back instruction
*-cpu:1
description: CPU
vendor: Intel(R) Corporation
physical id: 3
bus info: cpu@1
version: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
slot: U2E1
size: 798MHz
capacity: 2530MHz
clock: 266MHz
capabilities: cpufreq
*-cache
description: L1 cache
physical id: 5
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back data
*-cache:1
description: L1 cache
physical id: 4
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back instruction
*-memory
description: System Memory
physical id: 6
slot: System board or motherboard
size: 4GiB
*-bank:0
description: SODIMM Synchronous 1067 MHz (0.9 ns)
product: 0x31364A53463235363634485A2D3147314631
vendor: 0x802C
physical id: 0
serial:
slot: DIMM0
size: 2GiB
clock: 1067MHz (0.9ns)
*-bank:1
description: SODIMM Synchronous 1067 MHz (0.9 ns)
product: 0x31364A53463235363634485A2D3147314631
vendor: 0x802C
physical id: 1
serial:
slot: DIMM0
size: 2GiB
clock: 1067MHz (0.9ns)
*-firmware
description: BIOS
vendor: Apple Inc.
physical id: e
version: MBP55.88Z.00AC.B03.0906151708 (06/15/09)
size: 1MiB
capacity: 4032KiB
capabilities: pci upgrade shadowing cdboot bootselect acpi ieee1394boot smartbattery netboot
*-pci
description: Host bridge
product: MCP79 Host Bridge
vendor: nVidia Corporation
physical id: 100
bus info: pci@0000:00:00.0
version: b1
width: 32 bits
clock: 66MHz
*-memory:0 UNCLAIMED
description: RAM memory
product: MCP79 Memory Controller
vendor: nVidia Corporation
physical id: 0.1
bus info: pci@0000:00:00.1
version: b1
width: 32 bits
clock: 66MHz (15.2ns)
capabilities: bus_master
configuration: latency=0
*-isa
description: ISA bridge
product: MCP79 LPC Bridge
vendor: nVidia Corporation
physical id: 3
bus info: pci@0000:00:03.0
version: b3
width: 32 bits
clock: 66MHz
capabilities: isa bus_master
configuration: latency=0
resources: ioport:2000(size=256)
*-memory:1 UNCLAIMED
description: RAM memory
product: MCP79 Memory Controller
vendor: nVidia Corporation
physical id: 3.1
bus info: pci@0000:00:03.1
version: b1
width: 32 bits
clock: 66MHz (15.2ns)
configuration: latency=0
*-serial
description: SMBus
product: MCP79 SMBus
vendor: nVidia Corporation
physical id: 3.2
bus info: pci@0000:00:03.2
version: b1
width: 32 bits
clock: 66MHz
capabilities: pm cap_list
configuration: driver=nForce2_smbus latency=0
resources: irq:15 ioport:2180(size=64) ioport:2140(size=64) ioport:2100(size=64)
*-memory:2 UNCLAIMED
description: RAM memory
product: MCP79 Memory Controller
vendor: nVidia Corporation
physical id: 3.3
bus info: pci@0000:00:03.3
version: b1
width: 32 bits
clock: 66MHz (15.2ns)
configuration: latency=0
*-memory:3 UNCLAIMED
description: RAM memory
product: nVidia Corporation
vendor: nVidia Corporation
physical id: 3.4
bus info: pci@0000:00:03.4
version: b1
width: 32 bits
clock: 66MHz (15.2ns)
configuration: latency=0
*-processor UNCLAIMED
description: Co-processor
product: MCP79 Co-processor
vendor: nVidia Corporation
physical id: 3.5
bus info: pci@0000:00:03.5
version: b1
width: 32 bits
clock: 66MHz
capabilities: bus_master
configuration: latency=0 maxlatency=1 mingnt=3
resources: memory:d3400000-d347ffff
*-usb:0
description: USB Controller
product: MCP79 OHCI USB 1.1 Controller
vendor: nVidia Corporation
physical id: 4
bus info: pci@0000:00:04.0
version: b1
width: 32 bits
clock: 66MHz
capabilities: pm ohci bus_master cap_list
configuration: driver=ohci_hcd latency=0 maxlatency=1 mingnt=3
resources: irq:18 memory:d3488000-d3488fff
*-usb:1
description: USB Controller
product: MCP79 EHCI USB 2.0 Controller
vendor: nVidia Corporation
physical id: 4.1
bus info: pci@0000:00:04.1
version: b1
width: 32 bits
clock: 66MHz
capabilities: debug pm ehci bus_master cap_list
configuration: driver=ehci_hcd latency=0 maxlatency=1 mingnt=3
resources: irq:20 memory:d3489200-d34892ff
*-usb:2
description: USB Controller
product: MCP79 OHCI USB 1.1 Controller
vendor: nVidia Corporation
physical id: 6
bus info: pci@0000:00:06.0
version: b1
width: 32 bits
clock: 66MHz
capabilities: pm ohci bus_master cap_list
configuration: driver=ohci_hcd latency=0 maxlatency=1 mingnt=3
resources: irq:16 memory:d3487000-d3487fff
*-usb:3
description: USB Controller
product: MCP79 EHCI USB 2.0 Controller
vendor: nVidia Corporation
physical id: 6.1
bus info: pci@0000:00:06.1
version: b1
width: 32 bits
clock: 66MHz
capabilities: debug pm ehci bus_master cap_list
configuration: driver=ehci_hcd latency=0 maxlatency=1 mingnt=3
resources: irq:19 memory:d3489100-d34891ff
*-multimedia
description: Audio device
product: MCP79 High Definition Audio
vendor: nVidia Corporation
physical id: 8
bus info: pci@0000:00:08.0
version: b1
width: 32 bits
clock: 66MHz
capabilities: pm bus_master cap_list
configuration: driver=HDA Intel latency=0 maxlatency=5 mingnt=2
resources: irq:21 memory:d3480000-d3483fff
*-pci:0
description: PCI bridge
product: MCP79 PCI Bridge
vendor: nVidia Corporation
physical id: 9
bus info: pci@0000:00:09.0
version: b1
width: 32 bits
clock: 66MHz
capabilities: pci subtractive_decode bus_master cap_list
resources: memory:d3300000-d33fffff
*-network
description: Ethernet interface
product: MCP79 Ethernet
vendor: nVidia Corporation
physical id: a
bus info: pci@0000:00:0a.0
logical name: eth0
version: b1
serial:
capacity: 1GB/s
width: 32 bits
clock: 66MHz
capabilities: pm msi bus_master cap_list ethernet physical mii 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=forcedeth driverversion=0.64 latency=0 link=no maxlatency=20 mingnt=1 multicast=yes port=MII
resources: irq:27 memory:d3486000-d3486fff ioport:21e0(size=8) memory:d3489000-d34890ff memory:d3489300-d348930f
*-ide
description: IDE interface
product: MCP79 SATA Controller
vendor: nVidia Corporation
physical id: b
bus info: pci@0000:00:0b.0
logical name: scsi0
logical name: scsi1
version: b1
width: 32 bits
clock: 66MHz
capabilities: ide pm msi bus_master cap_list emulated
configuration: driver=ahci latency=0 maxlatency=1 mingnt=3
resources: irq:26 ioport:21d8(size=8) ioport:21ec(size=4) ioport:21d0(size=8) ioport:21e8(size=4) ioport:21c0(size=16) memory:d3484000-d3485fff
*-disk
description: ATA Disk
product: TOSHIBA MK2555GS
vendor: Toshiba
physical id: 0
bus info: scsi@0:0.0.0
logical name: /dev/sda
version: FH10
serial:
size: 232GiB (250GB)
capabilities: partitioned partitioned:dos
configuration: ansiversion=5
*-volume:0 UNCLAIMED
description: EFI GPT partition
physical id: 1
bus info: scsi@0:0.0.0,1
capacity: 200MiB
capabilities: primary nofs
*-volume:1
description: Darwin/OS X HFS+ partition
vendor: Mac OS X (journaled)
physical id: 2
bus info: scsi@0:0.0.0,2
logical name: /dev/sda2
logical name: /mnt/osx
version: 4
serial:
size: 111GiB
capacity: 111GiB
capabilities: primary journaled bootable osx hfsplus initialized
configuration: boot=osx checked=2009-06-25 14:34:32 created=2009-06-25 11:34:32 filesystem=hfsplus lastmountedby=HFSJ modified=2009-11-27 22:27:46 mount.fstype=hfsplus mount.options=ro,nosuid,nodev,noexec,relatime,umask=22,uid=0,gid=0,nls=utf8 state=mounted
*-volume:2
description: Linux swap volume
physical id: 3
bus info: scsi@0:0.0.0,3
logical name: /dev/sda3
version: 1
size: 3814MiB
capacity: 3814MiB
capabilities: primary nofs swap initialized
configuration: filesystem=swap pagesize=4096
*-volume:3
description: EXT3 volume
vendor: Linux
physical id: 4
bus info: scsi@0:0.0.0,4
logical name: /dev/sda4
logical name: /
version: 1.0
serial:
size: 117GiB
capacity: 117GiB
capabilities: primary bootable journaled extended_attributes large_files recover ext3 ext2 initialized
configuration: created=2009-09-16 05:05:33 filesystem=ext3 modified=2009-11-23 10:03:39 mount.fstype=ext3 mount.options=rw,relatime,errors=remount-ro,commit=600,data=ordered mounted=2009-11-27 22:28:26 state=mounted
*-cdrom
description: DVD writer
product: DVD RW AD-5960S
vendor: OPTIARC
physical id: 1
bus info: scsi@1:0.0.0
logical name: /dev/cdrom
logical name: /dev/cdrw
logical name: /dev/dvd
logical name: /dev/dvdrw
logical name: /dev/scd0
logical name: /dev/sr0
version: 2AP5
capabilities: removable audio cd-r cd-rw dvd dvd-r
configuration: ansiversion=5 status=open
*-pci:1
description: PCI bridge
product: MCP79 PCI Express Bridge
vendor: nVidia Corporation
physical id: 10
bus info: pci@0000:00:10.0
version: b1
width: 32 bits
clock: 33MHz
capabilities: pci pm msi normal_decode bus_master cap_list
resources: ioport:1000(size=4096) memory:d2000000-d30fffff ioport:c0000000(size=301989888)
*-display
description: VGA compatible controller
product: C79 [GeForce 9400M]
vendor: nVidia Corporation
physical id: 0
bus info: pci@0000:02:00.0
version: b1
width: 64 bits
clock: 33MHz
capabilities: pm msi vga_controller bus_master cap_list rom
configuration: driver=nvidia latency=0
resources: irq:22 memory:d2000000-d2ffffff memory:c0000000-cfffffff(prefetchable) memory:d0000000-d1ffffff(prefetchable) ioport:1000(size=128) memory:d3000000-d301ffff(prefetchable)
*-pci:2
description: PCI bridge
product: MCP79 PCI Express Bridge
vendor: nVidia Corporation
physical id: 15
bus info: pci@0000:00:15.0
version: b1
width: 32 bits
clock: 33MHz
capabilities: pci pm msi pciexpress normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:24 memory:d3200000-d32fffff
*-network
description: Wireless interface
product: BCM4322 802.11a/b/g/n Wireless LAN Controller
vendor: Broadcom Corporation
physical id: 0
bus info: pci@0000:03:00.0
logical name: eth2
version: 01
serial:
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=wl0 driverversion=5.10.91.9 ip=192.168.1.192 latency=0 multicast=yes wireless=IEEE 802.11abgn
resources: irq:23 memory:d3200000-d3203fff
*-pci:3
description: PCI bridge
product: MCP79 PCI Express Bridge
vendor: nVidia Corporation
physical id: 16
bus info: pci@0000:00:16.0
version: b1
width: 32 bits
clock: 33MHz
capabilities: pci pm msi pciexpress normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:25 memory:d3100000-d31fffff
*-firewire
description: FireWire (IEEE 1394)
product: FW643 PCI Express1394b Controller (PHY/Link)
vendor: Agere Systems
physical id: 0
bus info: pci@0000:04:00.0
version: 07
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress ohci bus_master cap_list
configuration: driver=firewire_ohci latency=0
resources: irq:22 memory:d3100000-d3100fff
*-scsi
physical id: 2
bus info: usb@2:5
logical name: scsi6
capabilities: emulated
*-disk
description: SCSI Disk
product: SD Card Reader
vendor: APPLE
physical id: 0.0.0
bus info: scsi@6:0.0.0
logical name: /dev/sdb
version: 1.00
capabilities: removable
*-medium
physical id: 0
logical name: /dev/sdb
*-battery
product: Unknown
vendor: Unknown
physical id: 1
version: Unknown
serial: Unknown
slot: Unknown
dmidecode:
Code:
# dmidecode 2.9
SMBIOS 2.4 present.
42 structures occupying 2094 bytes.
Table at 0x000E0000.
Handle 0x0000, DMI type 4, 35 bytes
Processor Information
Socket Designation: U2E1
Type: Central Processor
Family: Other
Manufacturer: Intel(R) Corporation
ID: 7A 06 01 00 FF FB EB BF
Version: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
Voltage: 1.6 V
External Clock: 266 MHz
Max Speed: 2530 MHz
Current Speed: 2530 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0x0002
L2 Cache Handle: Not Provided
L3 Cache Handle: Not Provided
Serial Number: Not Specified
Asset Tag: Unknown
Part Number: Not Specified
Handle 0x0001, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 KB
Maximum Size: 32 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 8-way Set-associative
Handle 0x0002, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 KB
Maximum Size: 32 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Data
Associativity: 8-way Set-associative
Handle 0x0003, DMI type 4, 35 bytes
Processor Information
Socket Designation: U2E1
Type: Central Processor
Family: Other
Manufacturer: Intel(R) Corporation
ID: 7A 06 01 00 FF FB EB BF
Version: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
Voltage: 1.6 V
External Clock: 266 MHz
Max Speed: 2530 MHz
Current Speed: 2530 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0x0005
L2 Cache Handle: Not Provided
L3 Cache Handle: Not Provided
Serial Number: Not Specified
Asset Tag: Unknown
Part Number: Not Specified
Handle 0x0004, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 KB
Maximum Size: 32 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 8-way Set-associative
Handle 0x0005, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 KB
Maximum Size: 32 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Data
Associativity: 8-way Set-associative
Handle 0x0006, DMI type 16, 15 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 32 GB
Error Information Handle: Not Provided
Number Of Devices: 2
Handle 0x0007, DMI type 19, 15 bytes
Memory Array Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x000FFFFFFFF
Range Size: 4 GB
Physical Array Handle: 0x0006
Partition Width: 0
Handle 0x0008, DMI type 17, 27 bytes
Memory Device
Array Handle: 0x0006
Error Information Handle: No Error
Total Width: Unknown
Data Width: 65508 bits
Size: 2048 MB
Form Factor: SODIMM
Set: None
Locator: DIMM0
Bank Locator: BANK 0
Type:
Type Detail: Synchronous
Speed: 1067 MHz (0.9 ns)
Manufacturer: 0x802C
Serial Number:
Asset Tag: Unknown
Part Number: 0x31364A53463235363634485A2D3147314631
Handle 0x0009, DMI type 130, 186 bytes
OEM-specific Type
Header and Data:
82 BA 09 00 08 00 00 00 B0 00 92 10 0B 03 02 11
00 09 03 52 01 08 0F 00 1C 00 69 78 69 3C 69 11
2C 95 70 03 3C 3C 01 2C 82 05 80 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 0F 11 05 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80
2C 08 09 16 DC 4A 6F 60 16 D8 31 36 4A 53 46 32
35 36 36 34 48 5A 2D 31 47 31 46 31 46 31 80 2C
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00
Handle 0x000A, DMI type 17, 27 bytes
Memory Device
Array Handle: 0x0006
Error Information Handle: No Error
Total Width: Unknown
Data Width: 65508 bits
Size: 2048 MB
Form Factor: SODIMM
Set: None
Locator: DIMM0
Bank Locator: BANK 1
Type:
Type Detail: Synchronous
Speed: 1067 MHz (0.9 ns)
Manufacturer: 0x802C
Serial Number:
Asset Tag: Unknown
Part Number: 0x31364A53463235363634485A2D3147314631
Handle 0x000B, DMI type 130, 186 bytes
OEM-specific Type
Header and Data:
82 BA 0B 00 0A 00 00 00 B0 00 92 10 0B 03 02 11
00 09 03 52 01 08 0F 00 1C 00 69 78 69 3C 69 11
2C 95 70 03 3C 3C 01 2C 82 05 80 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 0F 11 05 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80
2C 08 09 16 DC 4A 6F 3F 16 D8 31 36 4A 53 46 32
35 36 36 34 48 5A 2D 31 47 31 46 31 46 31 80 2C
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00
Handle 0x000C, DMI type 20, 19 bytes
Memory Device Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x000FFFFFFFF
Range Size: 4 GB
Physical Device Handle: 0x0008
Memory Array Mapped Address Handle: 0x0007
Partition Row Position: Unknown
Interleave Position: 1
Interleaved Data Depth: 1
Handle 0x000D, DMI type 20, 19 bytes
Memory Device Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x000FFFFFFFF
Range Size: 4 GB
Physical Device Handle: 0x000A
Memory Array Mapped Address Handle: 0x0007
Partition Row Position: Unknown
Interleave Position: 2
Interleaved Data Depth: 1
Handle 0x000E, DMI type 0, 24 bytes
BIOS Information
Vendor: Apple Inc.
Version: MBP55.88Z.00AC.B03.0906151708
Release Date: 06/15/09
ROM Size: 4096 kB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
ACPI is supported
IEEE 1394 boot is supported
Smart battery is supported
Function key-initiated network boot is supported
BIOS Revision: 0.1
Handle 0x000F, DMI type 1, 27 bytes
System Information
Manufacturer: Apple Inc.
Product Name: MacBookPro5,5
Version: 1.0
Serial Number:
UUID:
Wake-up Type: Power Switch
SKU Number: System SKU#
Family: MacBook
Handle 0x0010, DMI type 2, 16 bytes
Base Board Information
Manufacturer: Apple Inc.
Product Name: Mac-F2268AC8
Version: Not Specified
Serial Number: Base Board Serial#
Asset Tag: Base Board Asset Tag#
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Part Component
Chassis Handle: 0x0011
Type: Motherboard
Contained Object Handles: 0
Handle 0x0011, DMI type 3, 21 bytes
Chassis Information
Manufacturer: Apple Inc.
Type: Notebook
Lock: Not Present
Version: Mac-F2268AC8
Serial Number:
Asset Tag: Asset Tag#
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Other
Security Status: Other
OEM Information: 0x00000000
Height: Unspecified
Number Of Power Cords: Unspecified
Contained Elements: 0
Handle 0x0012, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: FireWire 800
External Connector Type: IEEE 1394
Port Type: Firewire (IEEE P1394)
Handle 0x0013, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: Ethernet
External Connector Type: RJ-45
Port Type: Network Port
Handle 0x0014, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: USB0
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0015, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: USB1
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0016, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: Other
External Reference Designator: Mini DisplayPort
External Connector Type: None
Port Type: Other
Handle 0x0017, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: Other
External Reference Designator: Microphone
External Connector Type: None
Port Type: Other
Handle 0x0018, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: Other
External Reference Designator: Speaker
External Connector Type: None
Port Type: Other
Handle 0x0019, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: Audio Line In
External Connector Type: Mini Jack (headphones)
Port Type: Audio Port
Handle 0x001A, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: Audio Line Out
External Connector Type: Mini Jack (headphones)
Port Type: Audio Port
Handle 0x001B, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: MagSafe DC Power
External Connector Type: Other
Port Type: Other
Handle 0x001C, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA Port A
Internal Connector Type: On Board IDE
External Reference Designator: None
External Connector Type: None
Port Type: Other
Handle 0x001D, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA Port B
Internal Connector Type: On Board IDE
External Reference Designator: None
External Connector Type: None
Port Type: Other
Handle 0x001E, DMI type 9, 13 bytes
System Slot Information
Designation: AirPort
Type: x1 PCI Express
Current Usage: Available
Length: Short
ID: 3
Characteristics:
3.3 V is provided
Hot-plug devices are supported
SMBus signal is supported
Handle 0x001F, DMI type 10, 6 bytes
On Board Device Information
Type: Video
Status: Enabled
Description: Nvidia G84 Video
Handle 0x0020, DMI type 10, 6 bytes
On Board Device Information
Type: Sound
Status: Enabled
Description: Azalia Audio Codec
Handle 0x0021, DMI type 10, 6 bytes
On Board Device Information
Type: Ethernet
Status: Enabled
Description: Yukon Ultra Ethernet Controller
Handle 0x0022, DMI type 10, 6 bytes
On Board Device Information
Type: Other
Status: Enabled
Description: Sata
Handle 0x0123, DMI type 12, 5 bytes
System Configuration Options
Handle 0x0124, DMI type 13, 22 bytes
BIOS Language Information
Installable Languages: 1
Currently Installed Language: Not Specified
Handle 0x0125, DMI type 22, 32 bytes
Portable Battery
Location: Unknown
Manufacturer: Unknown
Manufacture Date: Unknown
Serial Number: Unknown
Name: Unknown
Design Capacity: Unknown
Design Voltage: Unknown
SBDS Version: Unknown
Maximum Error: Unknown
SBDS Chemistry: Unknown
OEM-specific Information: 0x00000000
Handle 0x0126, DMI type 32, 20 bytes
System Boot Information
Status: No errors detected
Handle 0x0127, DMI type 131, 6 bytes
OEM-specific Type
Header and Data:
83 06 27 01 01 03
Handle 0x0128, DMI type 128, 88 bytes
OEM-specific Type
Header and Data:
80 58 28 01 03 00 00 00 03 14 00 C0 FF 7F 00 C0
01 02 03 00 00 00 00 00 00 00 C0 FF FF FF C3 FF
00 40 CB FF FF BF FF FF 00 00 C8 FF FF 3F CA FF
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00
Handle 0xFFFD, DMI type 127, 4 bytes
End Of Table
lsmod:
Code:
Module Size Used by
ppdev 5014 0
lp 7446 0
parport 27538 2 ppdev,lp
sco 7161 2
bridge 39054 0
stp 1440 1 bridge
bnep 9139 2
rfcomm 29133 8
l2cap 24624 16 bnep,rfcomm
acpi_cpufreq 6751 0
cpufreq_stats 2659 0
cpufreq_powersave 998 0
cpufreq_userspace 2408 0
cpufreq_conservative 5162 0
binfmt_misc 6303 1
uinput 6344 1
fuse 49262 1
nls_utf8 1208 1
hfsplus 65433 1
ext4 281631 0
jbd2 65772 1 ext4
crc16 1319 2 l2cap,ext4
nvidia_bl 4179 0
lib80211_crypt_tkip 7269 0
wl 1256906 0
lib80211 3526 2 lib80211_crypt_tkip,wl
sbp2 16667 0
ieee1394 61644 1 sbp2
loop 11463 0
snd_hda_codec_cirrus 8215 1
snd_hda_intel 18131 1
snd_hda_codec 53780 2 snd_hda_codec_cirrus,snd_hda_intel
snd_hwdep 5140 1 snd_hda_codec
snd_pcm_oss 31967 0
snd_mixer_oss 12366 1 snd_pcm_oss
snd_pcm 59655 3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd_seq_midi 4048 0
snd_rawmidi 14987 1 snd_seq_midi
snd_seq_midi_event 4628 1 snd_seq_midi
snd_seq 40673 2 snd_seq_midi,snd_seq_midi_event
snd_timer 15390 2 snd_pcm,snd_seq
snd_seq_device 4477 3 snd_seq_midi,snd_rawmidi,snd_seq
applesmc 20906 0
uvcvideo 51647 0
videodev 29593 1 uvcvideo
snd 43854 13 snd_hda_codec_cirrus,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
led_class 2401 1 applesmc
soundcore 4566 1 snd
v4l1_compat 11138 2 uvcvideo,videodev
shpchp 25864 0
joydev 8347 0
processor 29335 3 acpi_cpufreq
evdev 7240 24
pcspkr 1699 0
i2c_nforce2 5264 0
v4l2_compat_ioctl32 7946 1 videodev
snd_page_alloc 6009 2 snd_hda_intel,snd_pcm
hid_apple 4210 0
input_polldev 1951 1 applesmc
btusb 9721 0
bcm5974 6585 0
pci_hotplug 21171 1 shpchp
usbhid 30748 0
ac 2176 0
battery 4982 0
hid 62489 2 hid_apple,usbhid
bluetooth 41411 7 sco,bnep,rfcomm,l2cap,btusb
rfkill 12820 1 bluetooth
ext3 104984 1
jbd 36042 1 ext3
mbcache 4970 2 ext4,ext3
usb_storage 38169 0
sg 18296 3
sd_mod 29273 4
sr_mod 12346 0
cdrom 28535 1 sr_mod
crc_t10dif 1276 1 sd_mod
ata_generic 2983 0
ahci 31366 5
libata 130503 2 ata_generic,ahci
ohci_hcd 18940 0
firewire_ohci 19308 0
firewire_core 35952 1 firewire_ohci
crc_itu_t 1307 1 firewire_core
scsi_mod 120838 6 sbp2,usb_storage,sg,sd_mod,sr_mod,libata
ide_pci_generic 2788 0
nvidia 9495413 30
i2c_core 15008 3 videodev,i2c_nforce2,nvidia
ide_core 75698 1 ide_pci_generic
ehci_hcd 29682 0
forcedeth 45256 0
button 4618 0
thermal 11594 0
fan 3346 0
thermal_sys 11878 3 processor,thermal,fan
dmesg:
Code:
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 2.6.32-rc8 (root@mbp) (gcc version 4.3.4 (Debian 4.3.4-6) ) #1 SMP Sun Nov 22 04:26:54 EST 2009
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-rc8 root=UUID= ro
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 00000000ae72b000 (usable)
[ 0.000000] BIOS-e820: 00000000ae72b000 - 00000000ae92c000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000ae92c000 - 00000000af000000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000af000000 - 00000000bf000000 (reserved)
[ 0.000000] BIOS-e820: 00000000bf000000 - 00000000bf0c3000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000bf0c3000 - 00000000bf0c5000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bf0c5000 - 00000000bf0c7000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000bf0c7000 - 00000000bf0c9000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bf0c9000 - 00000000bfec5000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000bfec5000 - 00000000bfec7000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bfec7000 - 00000000bfec8000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000bfec8000 - 00000000bfeca000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bfeca000 - 00000000bfecd000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000bfecd000 - 00000000bfedf000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bfedf000 - 00000000bfef9000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000bfef9000 - 00000000bfeff000 (reserved)
[ 0.000000] BIOS-e820: 00000000bfeff000 - 00000000bff00000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000d3400000 - 00000000d3401000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ffc00000 - 0000000100000000 (reserved)
[ 0.000000] BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
[ 0.000000] DMI 2.4 present.
[ 0.000000] last_pfn = 0x140000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-FFFFF uncachable
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 disabled
[ 0.000000] 1 base 000000000 mask F80000000 write-back
[ 0.000000] 2 base 080000000 mask FC0000000 write-back
[ 0.000000] 3 base 100000000 mask FC0000000 write-back
[ 0.000000] 4 base 0BFF00000 mask FFFF00000 uncachable
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] e820 update range: 00000000bff00000 - 0000000100000000 (usable) ==> (reserved)
[ 0.000000] last_pfn = 0xae72b max_arch_pfn = 0x400000000
[ 0.000000] initial memory mapped : 0 - 20000000
[ 0.000000] init_memory_mapping: 0000000000000000-00000000ae72b000
[ 0.000000] 0000000000 - 00ae600000 page 2M
[ 0.000000] 00ae600000 - 00ae72b000 page 4k
[ 0.000000] kernel direct mapping tables up to ae72b000 @ 8000-d000
[ 0.000000] init_memory_mapping: 0000000100000000-0000000140000000
[ 0.000000] 0100000000 - 0140000000 page 2M
[ 0.000000] kernel direct mapping tables up to 140000000 @ b000-11000
[ 0.000000] RAMDISK: 373ec000 - 37fef3c9
[ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 APPLE )
[ 0.000000] ACPI: XSDT 00000000bfeee1c0 0007C (v01 APPLE Apple00 000000AC 01000013)
[ 0.000000] ACPI: FACP 00000000bfeec000 000F4 (v04 APPLE Apple00 000000AC Loki 0000005F)
[ 0.000000] ACPI: DSDT 00000000bfedf000 05B9E (v01 APPLE MacBookP 00050005 INTL 20061109)
[ 0.000000] ACPI: FACS 00000000bfecd000 00040
[ 0.000000] ACPI: HPET 00000000bfeeb000 00038 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: APIC 00000000bfeea000 00068 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: APIC 00000000bfee9000 00068 (v02 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: MCFG 00000000bfee8000 0003C (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: ASF! 00000000bfee7000 000A5 (v32 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: SBST 00000000bfee6000 00030 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: ECDT 00000000bfee5000 00053 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: SSDT 00000000bfec7000 004DC (v01 APPLE CpuPm 00003000 INTL 20061109)
[ 0.000000] ACPI: SSDT 00000000bfecc000 000A5 (v01 SataRe SataPri 00001000 INTL 20061109)
[ 0.000000] ACPI: SSDT 00000000bfecb000 0009F (v01 SataRe SataSec 00001000 INTL 20061109)
[ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
[ 0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-0000000140000000
[ 0.000000] Bootmem setup node 0 0000000000000000-0000000140000000
[ 0.000000] NODE_DATA [000000000000c000 - 0000000000013fff]
[ 0.000000] bootmap [0000000000014000 - 000000000003bfff] pages 28
[ 0.000000] (8 early reservations) ==> bootmem [0000000000 - 0140000000]
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
[ 0.000000] #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000]
[ 0.000000] #2 [0001000000 - 00015ef254] TEXT DATA BSS ==> [0001000000 - 00015ef254]
[ 0.000000] #3 [00373ec000 - 0037fef3c9] RAMDISK ==> [00373ec000 - 0037fef3c9]
[ 0.000000] #4 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
[ 0.000000] #5 [00015f0000 - 00015f0201] BRK ==> [00015f0000 - 00015f0201]
[ 0.000000] #6 [0000008000 - 000000b000] PGTABLE ==> [0000008000 - 000000b000]
[ 0.000000] #7 [000000b000 - 000000c000] PGTABLE ==> [000000b000 - 000000c000]
[ 0.000000] [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880028600000-ffff88002bbfffff] on node 0
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000000 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x00140000
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[3] active PFN ranges
[ 0.000000] 0: 0x00000000 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x000ae72b
[ 0.000000] 0: 0x00100000 -> 0x00140000
[ 0.000000] On node 0 totalpages: 976586
[ 0.000000] DMA zone: 56 pages used for memmap
[ 0.000000] DMA zone: 103 pages reserved
[ 0.000000] DMA zone: 3840 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 14280 pages used for memmap
[ 0.000000] DMA32 zone: 696163 pages, LIFO batch:31
[ 0.000000] Normal zone: 3584 pages used for memmap
[ 0.000000] Normal zone: 258560 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfed00000
[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 24
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 00000000ae72b000 - 00000000ae92c000
[ 0.000000] PM: Registered nosave memory: 00000000ae92c000 - 00000000af000000
[ 0.000000] PM: Registered nosave memory: 00000000af000000 - 00000000bf000000
[ 0.000000] PM: Registered nosave memory: 00000000bf000000 - 00000000bf0c3000
[ 0.000000] PM: Registered nosave memory: 00000000bf0c3000 - 00000000bf0c5000
[ 0.000000] PM: Registered nosave memory: 00000000bf0c5000 - 00000000bf0c7000
[ 0.000000] PM: Registered nosave memory: 00000000bf0c7000 - 00000000bf0c9000
[ 0.000000] PM: Registered nosave memory: 00000000bf0c9000 - 00000000bfec5000
[ 0.000000] PM: Registered nosave memory: 00000000bfec5000 - 00000000bfec7000
[ 0.000000] PM: Registered nosave memory: 00000000bfec7000 - 00000000bfec8000
[ 0.000000] PM: Registered nosave memory: 00000000bfec8000 - 00000000bfeca000
[ 0.000000] PM: Registered nosave memory: 00000000bfeca000 - 00000000bfecd000
[ 0.000000] PM: Registered nosave memory: 00000000bfecd000 - 00000000bfedf000
[ 0.000000] PM: Registered nosave memory: 00000000bfedf000 - 00000000bfef9000
[ 0.000000] PM: Registered nosave memory: 00000000bfef9000 - 00000000bfeff000
[ 0.000000] PM: Registered nosave memory: 00000000bfeff000 - 00000000bff00000
[ 0.000000] PM: Registered nosave memory: 00000000bff00000 - 00000000d3400000
[ 0.000000] PM: Registered nosave memory: 00000000d3400000 - 00000000d3401000
[ 0.000000] PM: Registered nosave memory: 00000000d3401000 - 00000000f0000000
[ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[ 0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000fec00000
[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fee00000
[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffc00000
[ 0.000000] PM: Registered nosave memory: 00000000ffc00000 - 0000000100000000
[ 0.000000] Allocating PCI resources starting at d3401000 (gap: d3401000:1cbff000)
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff880028200000 s80792 r8192 d21608 u1048576
[ 0.000000] pcpu-alloc: s80792 r8192 d21608 u1048576 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 958563
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-rc8 root=UUID= ro
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Initializing CPU#0
[ 0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[ 0.000000] Checking aperture...
[ 0.000000] No AGP bridge found
[ 0.000000] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.000000] Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000
[ 0.000000] software IO TLB at phys 0x20000000 - 0x24000000
[ 0.000000] Memory: 3766216k/5242880k available (2982k kernel code, 1336536k absent, 140128k reserved, 1533k data, 660k init)
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] NR_IRQS:4352 nr_irqs:424
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] spurious 8259A interrupt: IRQ7.
[ 0.000000] kmemleak: Early log buffer exceeded, please increase DEBUG_KMEMLEAK_EARLY_LOG_SIZE
[ 0.000000] kmemleak: Kernel memory leak detector disabled
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] hpet clockevent registered
[ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
[ 0.000000] Fast TSC calibration using PIT
[ 0.000000] Detected 2520.885 MHz processor.
[ 0.004005] Calibrating delay loop (skipped), value calculated using timer frequency.. 5041.77 BogoMIPS (lpj=10083540)
[ 0.004188] Security Framework initialized
[ 0.004250] SELinux: Disabled at boot.
[ 0.004582] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.008603] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.009653] Mount-cache hash table entries: 256
[ 0.009847] Initializing cgroup subsys ns
[ 0.009908] Initializing cgroup subsys cpuacct
[ 0.009968] Initializing cgroup subsys devices
[ 0.010027] Initializing cgroup subsys freezer
[ 0.010085] Initializing cgroup subsys net_cls
[ 0.010172] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.010272] CPU: L2 cache: 3072K
[ 0.010328] CPU 0/0x0 -> Node 0
[ 0.010386] CPU: Physical Processor ID: 0
[ 0.012009] CPU: Processor Core ID: 0
[ 0.012067] mce: CPU supports 6 MCE banks
[ 0.012129] CPU0: Thermal monitoring enabled (TM2)
[ 0.012190] using mwait in idle threads.
[ 0.012247] Performance Events: Core2 events, Intel PMU driver.
[ 0.012397] ... version: 2
[ 0.012454] ... bit width: 40
[ 0.012512] ... generic registers: 2
[ 0.012569] ... value mask: 000000ffffffffff
[ 0.012628] ... max period: 000000007fffffff
[ 0.012685] ... fixed-purpose events: 3
[ 0.012741] ... event mask: 0000000700000003
[ 0.013667] ACPI: Core revision 20090903
[ 0.025192] Setting APIC routing to flat
[ 0.025632] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.065384] CPU0: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz stepping 0a
[ 0.068001] Booting processor 1 APIC 0x1 ip 0x6000
[ 0.008000] Initializing CPU#1
[ 0.008000] Calibrating delay using timer specific routine.. 5041.35 BogoMIPS (lpj=10082702)
[ 0.008000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.008000] CPU: L2 cache: 3072K
[ 0.008000] CPU 1/0x1 -> Node 0
[ 0.008000] CPU: Physical Processor ID: 0
[ 0.008000] CPU: Processor Core ID: 1
[ 0.008000] CPU1: Thermal monitoring enabled (TM2)
[ 0.152031] CPU1: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz stepping 0a
[ 0.152649] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[ 0.156020] Brought up 2 CPUs
[ 0.156078] Total of 2 processors activated (10083.12 BogoMIPS).
[ 0.156684] CPU0 attaching sched-domain:
[ 0.156687] domain 0: span 0-1 level MC
[ 0.156689] groups: 0 1
[ 0.156694] CPU1 attaching sched-domain:
[ 0.156695] domain 0: span 0-1 level MC
[ 0.156697] groups: 1 0
[ 0.156763] Apple MacBookPro5 series board detected. Selecting PCI-method for reboots.
[ 0.156763] regulator: core version 0.5
[ 0.156763] NET: Registered protocol family 16
[ 0.156763] ACPI: bus type pci registered
[ 0.156763] PCI: MCFG configuration 0: base f0000000 segment 0 buses 0 - 255
[ 0.156763] PCI: MCFG area at f0000000 reserved in E820
[ 0.156763] PCI: updated MCFG configuration 0: base f0000000 segment 0 buses 0 - 63
[ 0.161537] PCI: Using MMCONFIG at f0000000 - f3ffffff
[ 0.161596] PCI: Using configuration type 1 for base access
[ 0.161666] bio: create slab at 0
[ 0.161666] ACPI: EC: EC description table is found, configuring boot EC
[ 0.165793] ACPI: BIOS _OSI(Linux) query ignored
[ 0.166362] ACPI: Interpreter enabled
[ 0.166421] ACPI: (supports S0 S3 S4 S5)
[ 0.166669] ACPI: Using IOAPIC for interrupt routing
[ 0.184215] ACPI: EC: GPE = 0x3f, I/O: command/status = 0x66, data = 0x62
[ 0.184284] ACPI: No dock devices found.
[ 0.184596] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.184682] pci 0000:00:03.0: reg 10 io port: [0x2000-0x20ff]
[ 0.184682] pci 0000:00:03.2: reg 10 io port: [0x2180-0x21bf]
[ 0.184682] pci 0000:00:03.2: reg 20 io port: [0x2140-0x217f]
[ 0.184682] pci 0000:00:03.2: reg 24 io port: [0x2100-0x213f]
[ 0.184682] pci 0000:00:03.2: PME# supported from D3hot D3cold
[ 0.184682] pci 0000:00:03.2: PME# disabled
[ 0.184682] pci 0000:00:03.5: reg 10 32bit mmio: [0xd3400000-0xd347ffff]
[ 0.184706] pci 0000:00:04.0: reg 10 32bit mmio: [0xd3488000-0xd3488fff]
[ 0.184732] pci 0000:00:04.0: supports D1 D2
[ 0.184733] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.184795] pci 0000:00:04.0: PME# disabled
[ 0.184877] pci 0000:00:04.1: reg 10 32bit mmio: [0xd3489200-0xd34892ff]
[ 0.184908] pci 0000:00:04.1: supports D1 D2
[ 0.184909] pci 0000:00:04.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.184972] pci 0000:00:04.1: PME# disabled
[ 0.185058] pci 0000:00:06.0: reg 10 32bit mmio: [0xd3487000-0xd3487fff]
[ 0.185084] pci 0000:00:06.0: supports D1 D2
[ 0.185085] pci 0000:00:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.185147] pci 0000:00:06.0: PME# disabled
[ 0.185229] pci 0000:00:06.1: reg 10 32bit mmio: [0xd3489100-0xd34891ff]
[ 0.185260] pci 0000:00:06.1: supports D1 D2
[ 0.185261] pci 0000:00:06.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.185324] pci 0000:00:06.1: PME# disabled
[ 0.185410] pci 0000:00:08.0: reg 10 32bit mmio: [0xd3480000-0xd3483fff]
[ 0.185436] pci 0000:00:08.0: PME# supported from D3hot D3cold
[ 0.185497] pci 0000:00:08.0: PME# disabled
[ 0.185609] pci 0000:00:0a.0: reg 10 32bit mmio: [0xd3486000-0xd3486fff]
[ 0.185613] pci 0000:00:0a.0: reg 14 io port: [0x21e0-0x21e7]
[ 0.185617] pci 0000:00:0a.0: reg 18 32bit mmio: [0xd3489000-0xd34890ff]
[ 0.185621] pci 0000:00:0a.0: reg 1c 32bit mmio: [0xd3489300-0xd348930f]
[ 0.185641] pci 0000:00:0a.0: supports D1 D2
[ 0.185643] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.185706] pci 0000:00:0a.0: PME# disabled
[ 0.185788] pci 0000:00:0b.0: reg 10 io port: [0x21d8-0x21df]
[ 0.185792] pci 0000:00:0b.0: reg 14 io port: [0x21ec-0x21ef]
[ 0.185795] pci 0000:00:0b.0: reg 18 io port: [0x21d0-0x21d7]
[ 0.185799] pci 0000:00:0b.0: reg 1c io port: [0x21e8-0x21eb]
[ 0.185803] pci 0000:00:0b.0: reg 20 io port: [0x21c0-0x21cf]
[ 0.185806] pci 0000:00:0b.0: reg 24 32bit mmio: [0xd3484000-0xd3485fff]
[ 0.185863] pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.185924] pci 0000:00:10.0: PME# disabled
[ 0.186199] pci 0000:00:15.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.186265] pci 0000:00:15.0: PME# disabled
[ 0.186567] pci 0000:00:16.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.186632] pci 0000:00:16.0: PME# disabled
[ 0.186769] pci 0000:00:09.0: transparent bridge
[ 0.188005] pci 0000:00:09.0: bridge 32bit mmio: [0xd3300000-0xd33fffff]
[ 0.188038] pci 0000:02:00.0: reg 10 32bit mmio: [0xd2000000-0xd2ffffff]
[ 0.188046] pci 0000:02:00.0: reg 14 64bit mmio pref: [0xc0000000-0xcfffffff]
[ 0.188055] pci 0000:02:00.0: reg 1c 64bit mmio pref: [0xd0000000-0xd1ffffff]
[ 0.188060] pci 0000:02:00.0: reg 24 io port: [0x1000-0x107f]
[ 0.188065] pci 0000:02:00.0: reg 30 32bit mmio pref: [0xd3000000-0xd301ffff]
[ 0.188116] pci 0000:00:10.0: bridge io port: [0x1000-0x1fff]
[ 0.188118] pci 0000:00:10.0: bridge 32bit mmio: [0xd2000000-0xd30fffff]
[ 0.188122] pci 0000:00:10.0: bridge 64bit mmio pref: [0xc0000000-0xd1ffffff]
[ 0.188328] pci 0000:03:00.0: reg 10 64bit mmio: [0xd3200000-0xd3203fff]
[ 0.188381] pci 0000:03:00.0: supports D1 D2
[ 0.188383] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.188446] pci 0000:03:00.0: PME# disabled
[ 0.188572] pci 0000:00:15.0: bridge 32bit mmio: [0xd3200000-0xd32fffff]
[ 0.188636] pci 0000:04:00.0: reg 10 64bit mmio: [0xd3100000-0xd3100fff]
[ 0.188688] pci 0000:04:00.0: supports D1 D2
[ 0.188690] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.188753] pci 0000:04:00.0: PME# disabled
[ 0.188876] pci 0000:00:16.0: bridge 32bit mmio: [0xd3100000-0xd31fffff]
[ 0.188922] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.189219] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.IXVE._PRT]
[ 0.244194] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 10 11 14 15) *0, disabled.
[ 0.244912] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 10 11 14 15) *0, disabled.
[ 0.245629] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 10 11 14 15) *0, disabled.
[ 0.246345] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 10 11 14 15) *0, disabled.
[ 0.247066] ACPI: PCI Interrupt Link [Z003] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.248218] ACPI: PCI Interrupt Link [Z004] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.249022] ACPI: PCI Interrupt Link [Z005] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.249826] ACPI: PCI Interrupt Link [Z006] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.250631] ACPI: PCI Interrupt Link [Z007] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.251439] ACPI: PCI Interrupt Link [Z008] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.252220] ACPI: PCI Interrupt Link [Z009] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.253028] ACPI: PCI Interrupt Link [Z00A] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.253833] ACPI: PCI Interrupt Link [Z00B] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.254637] ACPI: PCI Interrupt Link [Z00C] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.255441] ACPI: PCI Interrupt Link [Z00D] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.256268] ACPI: PCI Interrupt Link [Z00E] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.257072] ACPI: PCI Interrupt Link [Z00F] (IRQs 16 17 18 19 20 21 22 23) *10
[ 0.257831] ACPI: PCI Interrupt Link [Z00G] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.258635] ACPI: PCI Interrupt Link [Z00H] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.259439] ACPI: PCI Interrupt Link [Z00I] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.260216] ACPI: PCI Interrupt Link [Z00J] (IRQs 16 17 18 19 20 21 22 23) *7
[ 0.260969] ACPI: PCI Interrupt Link [Z00K] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.261772] ACPI: PCI Interrupt Link [Z00L] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.262575] ACPI: PCI Interrupt Link [Z00M] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.263381] ACPI: PCI Interrupt Link [Z00N] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.264215] ACPI: PCI Interrupt Link [Z00O] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.265018] ACPI: PCI Interrupt Link [Z00P] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.265822] ACPI: PCI Interrupt Link [Z00Q] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.266625] ACPI: PCI Interrupt Link [Z00R] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.267430] ACPI: PCI Interrupt Link [Z00S] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.268269] ACPI: PCI Interrupt Link [Z00T] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.269076] ACPI: PCI Interrupt Link [Z00U] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.269881] ACPI: PCI Interrupt Link [LSMB] (IRQs 16 17 18 19 20 21 22 23) *15
[ 0.270639] ACPI: PCI Interrupt Link [LUS0] (IRQs 16 17 18 19 20 21 22 23) *11
[ 0.271395] ACPI: PCI Interrupt Link [LUS2] (IRQs 16 17 18 19 20 21 22 23) *10
[ 0.272168] ACPI: PCI Interrupt Link [LMAC] (IRQs 16 17 18 19 20 21 22 23) *14
[ 0.272926] ACPI: PCI Interrupt Link [LAZA] (IRQs 16 17 18 19 20 21 22 23) *15
[ 0.273689] ACPI: PCI Interrupt Link [LGPU] (IRQs 16 17 18 19 20 21 22 23) *11
[ 0.274446] ACPI: PCI Interrupt Link [LPID] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.275250] ACPI: PCI Interrupt Link [LSI0] (IRQs 16 17 18 19 20 21 22 23) *11
[ 0.276015] ACPI: PCI Interrupt Link [LSI1] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[ 0.276820] ACPI: PCI Interrupt Link [Z000] (IRQs 16 17 18 19 20 21 22 23) *7
[ 0.277578] ACPI: PCI Interrupt Link [Z001] (IRQs 16 17 18 19 20 21 22 23) *5
[ 0.278331] ACPI: PCI Interrupt Link [LPMU] (IRQs 16 17 18 19 20 21 22 23) *14
[ 0.278937] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.278937] vgaarb: loaded
[ 0.278937] usbcore: registered new interface driver usbfs
[ 0.278937] usbcore: registered new interface driver hub
[ 0.278937] usbcore: registered new device driver usb
[ 0.278937] PCI: Using ACPI for IRQ routing
[ 0.280037] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31, 31
[ 0.280317] hpet0: 4 comparators, 64-bit 25.000000 MHz counter
[ 0.284008] Switching to clocksource tsc
[ 0.285068] pnp: PnP ACPI init
[ 0.285133] ACPI: bus type pnp registered
[ 0.292003] pnp: PnP ACPI: found 8 devices
[ 0.292061] ACPI: ACPI bus type pnp unregistered
[ 0.292127] system 00:01: iomem range 0xf0000000-0xf3ffffff has been reserved
[ 0.292192] system 00:04: iomem range 0xfed00000-0xfed003ff has been reserved
[ 0.292257] system 00:06: ioport range 0x400-0x47f has been reserved
[ 0.292317] system 00:06: ioport range 0x480-0x4ff has been reserved
[ 0.292378] system 00:06: ioport range 0x500-0x57f has been reserved
[ 0.292439] system 00:06: ioport range 0x580-0x5ff has been reserved
[ 0.299722] system 00:06: ioport range 0x800-0x87f has been reserved
[ 0.299783] system 00:06: ioport range 0x880-0x8ff has been reserved
[ 0.299844] system 00:06: ioport range 0x4d0-0x4d1 has been reserved
[ 0.299907] system 00:06: ioport range 0x295-0x296 has been reserved
[ 0.304864] pci 0000:00:09.0: PCI bridge, secondary bus 0000:01
[ 0.304924] pci 0000:00:09.0: IO window: disabled
[ 0.304985] pci 0000:00:09.0: MEM window: 0xd3300000-0xd33fffff
[ 0.305046] pci 0000:00:09.0: PREFETCH window: disabled
[ 0.305107] pci 0000:00:10.0: PCI bridge, secondary bus 0000:02
[ 0.305167] pci 0000:00:10.0: IO window: 0x1000-0x1fff
[ 0.305228] pci 0000:00:10.0: MEM window: 0xd2000000-0xd30fffff
[ 0.305289] pci 0000:00:10.0: PREFETCH window: 0x000000c0000000-0x000000d1ffffff
[ 0.305361] pci 0000:00:15.0: PCI bridge, secondary bus 0000:03
[ 0.305421] pci 0000:00:15.0: IO window: disabled
[ 0.305484] pci 0000:00:15.0: MEM window: 0xd3200000-0xd32fffff
[ 0.305549] pci 0000:00:15.0: PREFETCH window: disabled
[ 0.305614] pci 0000:00:16.0: PCI bridge, secondary bus 0000:04
[ 0.305673] pci 0000:00:16.0: IO window: disabled
[ 0.305740] pci 0000:00:16.0: MEM window: 0xd3100000-0xd31fffff
[ 0.305805] pci 0000:00:16.0: PREFETCH window: disabled
[ 0.305872] pci 0000:00:09.0: enabling device (0000 -> 0002)
[ 0.305935] pci 0000:00:09.0: setting latency timer to 64
[ 0.305941] pci 0000:00:10.0: setting latency timer to 64
[ 0.306271] ACPI: PCI Interrupt Link [Z00F] enabled at IRQ 23
[ 0.306333] alloc irq_desc for 23 on node -1
[ 0.306335] alloc kstat_irqs on node -1
[ 0.306340] pci 0000:00:15.0: PCI INT A -> Link[Z00F] -> GSI 23 (level, low) -> IRQ 23
[ 0.306417] pci 0000:00:15.0: setting latency timer to 64
[ 0.306743] ACPI: PCI Interrupt Link [Z00J] enabled at IRQ 22
[ 0.306803] alloc irq_desc for 22 on node -1
[ 0.306805] alloc kstat_irqs on node -1
[ 0.306808] pci 0000:00:16.0: PCI INT A -> Link[Z00J] -> GSI 22 (level, low) -> IRQ 22
[ 0.306885] pci 0000:00:16.0: setting latency timer to 64
[ 0.306890] pci_bus 0000:00: resource 0 io: [0x00-0xffff]
[ 0.306892] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[ 0.306895] pci_bus 0000:01: resource 1 mem: [0xd3300000-0xd33fffff]
[ 0.306896] pci_bus 0000:01: resource 3 io: [0x00-0xffff]
[ 0.306898] pci_bus 0000:01: resource 4 mem: [0x000000-0xffffffffffffffff]
[ 0.306900] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff]
[ 0.306902] pci_bus 0000:02: resource 1 mem: [0xd2000000-0xd30fffff]
[ 0.306904] pci_bus 0000:02: resource 2 pref mem [0xc0000000-0xd1ffffff]
[ 0.306906] pci_bus 0000:03: resource 1 mem: [0xd3200000-0xd32fffff]
[ 0.306908] pci_bus 0000:04: resource 1 mem: [0xd3100000-0xd31fffff]
[ 0.306959] NET: Registered protocol family 2
[ 0.307167] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.308287] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[ 0.312126] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.312672] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.312732] TCP reno registered
[ 0.312935] NET: Registered protocol family 1
[ 0.327276] pci 0000:02:00.0: Boot video device
[ 0.327321] Trying to unpack rootfs image as initramfs...
[ 0.568501] Freeing initrd memory: 12300k freed
[ 0.574520] audit: initializing netlink socket (disabled)
[ 0.574596] type=2000 audit(1259378898.571:1): initialized
[ 0.574961] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.575173] VFS: Disk quotas dquot_6.5.2
[ 0.575256] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.575369] msgmni has been set to 7379
[ 0.575549] alg: No test for stdrng (krng)
[ 0.575653] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 0.575724] io scheduler noop registered
[ 0.575781] io scheduler anticipatory registered
[ 0.575839] io scheduler deadline registered
[ 0.575911] io scheduler cfq registered (default)
[ 0.576263] alloc irq_desc for 24 on node -1
[ 0.576265] alloc kstat_irqs on node -1
[ 0.576285] pcieport 0000:00:15.0: irq 24 for MSI/MSI-X
[ 0.576304] pcieport 0000:00:15.0: setting latency timer to 64
[ 0.576665] alloc irq_desc for 25 on node -1
[ 0.576667] alloc kstat_irqs on node -1
[ 0.576683] pcieport 0000:00:16.0: irq 25 for MSI/MSI-X
[ 0.576702] pcieport 0000:00:16.0: setting latency timer to 64
[ 0.579513] Linux agpgart interface v0.103
[ 0.579573] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.581309] brd: module loaded
[ 0.581419] input: Macintosh mouse button emulation as /devices/virtual/input/input0
[ 0.581671] PNP: No PS/2 controller found. Probing ports directly.
[ 0.582585] i8042.c: No controller found.
[ 0.582737] mice: PS/2 mouse device common for all mice
[ 0.582826] Driver 'rtc_cmos' needs updating - please use bus_type methods
[ 0.582910] rtc_cmos 00:07: RTC can wake from S4
[ 0.583011] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
[ 0.583151] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
[ 0.583242] cpuidle: using governor ladder
[ 0.583300] cpuidle: using governor menu
[ 0.583360] No iBFT detected.
[ 0.583671] TCP cubic registered
[ 0.583769] NET: Registered protocol family 10
[ 0.584178] lo: Disabled Privacy Extensions
[ 0.584449] Mobile IPv6
[ 0.584506] NET: Registered protocol family 17
[ 0.584684] registered taskstats version 1
[ 0.585332] rtc_cmos 00:07: setting system clock to 2009-11-28 03:28:18 UTC (1259378898)
[ 0.585480] Freeing unused kernel memory: 660k freed
[ 0.585760] Write protecting the kernel read-only data: 4072k
[ 0.690259] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[ 0.690438] ACPI: Lid Switch [LID0]
[ 0.690542] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[ 0.690621] ACPI: Power Button [PWRB]
[ 0.690716] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
[ 0.690791] ACPI: Sleep Button [SLPB]
[ 0.690956] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[ 0.691031] ACPI: Power Button [PWRF]
[ 0.707515] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
[ 0.726180] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.736756] Uniform Multi-Platform E-IDE driver
[ 0.741066] ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 21
[ 0.741131] alloc irq_desc for 21 on node -1
[ 0.741133] alloc kstat_irqs on node -1
[ 0.741141] forcedeth 0000:00:0a.0: PCI INT A -> Link[LMAC] -> GSI 21 (level, low) -> IRQ 21
[ 0.741215] forcedeth 0000:00:0a.0: setting latency timer to 64
[ 0.766011] nvidia: module license 'NVIDIA' taints kernel.
[ 0.766076] Disabling lock debugging due to kernel taint
[ 0.804350] forcedeth 0000:00:0a.0: ifname eth0, PHY OUI 0x732 @ 1, addr
[ 0.804427] forcedeth 0000:00:0a.0: highdma csum pwrctl gbit lnktim msi desc-v3
[ 0.807469] ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 20
[ 0.807532] alloc irq_desc for 20 on node -1
[ 0.807534] alloc kstat_irqs on node -1
[ 0.807541] ehci_hcd 0000:00:04.1: PCI INT B -> Link[LUS2] -> GSI 20 (level, low) -> IRQ 20
[ 0.807638] ehci_hcd 0000:00:04.1: setting latency timer to 64
[ 0.807641] ehci_hcd 0000:00:04.1: EHCI Host Controller
[ 0.807753] ehci_hcd 0000:00:04.1: new USB bus registered, assigned bus number 1
[ 0.807848] ehci_hcd 0000:00:04.1: debug port 1
[ 0.807912] ehci_hcd 0000:00:04.1: cache line size of 32 is not supported
[ 0.807927] ehci_hcd 0000:00:04.1: irq 20, io mem 0xd3489200
[ 0.819108] ehci_hcd 0000:00:04.1: USB 2.0 started, EHCI 1.00
[ 0.819200] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.819261] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.819332] usb usb1: Product: EHCI Host Controller
[ 0.819391] usb usb1: Manufacturer: Linux 2.6.32-rc8 ehci_hcd
[ 0.819450] usb usb1: SerialNumber: 0000:00:04.1
[ 0.819559] usb usb1: configuration #1 chosen from 1 choice
[ 0.819641] hub 1-0:1.0: USB hub found
[ 0.819702] hub 1-0:1.0: 7 ports detected
[ 0.820165] ACPI: PCI Interrupt Link [Z001] enabled at IRQ 19
[ 0.820227] alloc irq_desc for 19 on node -1
[ 0.820228] alloc kstat_irqs on node -1
[ 0.820234] ehci_hcd 0000:00:06.1: PCI INT B -> Link[Z001] -> GSI 19 (level, low) -> IRQ 19
[ 0.820320] ehci_hcd 0000:00:06.1: setting latency timer to 64
[ 0.820322] ehci_hcd 0000:00:06.1: EHCI Host Controller
[ 0.820412] ehci_hcd 0000:00:06.1: new USB bus registered, assigned bus number 2
[ 0.820499] ehci_hcd 0000:00:06.1: debug port 1
[ 0.820563] ehci_hcd 0000:00:06.1: cache line size of 32 is not supported
[ 0.820578] ehci_hcd 0000:00:06.1: irq 19, io mem 0xd3489100
[ 0.831107] ehci_hcd 0000:00:06.1: USB 2.0 started, EHCI 1.00
[ 0.831198] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.831259] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.831330] usb usb2: Product: EHCI Host Controller
[ 0.831389] usb usb2: Manufacturer: Linux 2.6.32-rc8 ehci_hcd
[ 0.831448] usb usb2: SerialNumber: 0000:00:06.1
[ 0.831558] usb usb2: configuration #1 chosen from 1 choice
[ 0.831641] hub 2-0:1.0: USB hub found
[ 0.831704] hub 2-0:1.0: 5 ports detected
[ 0.980329] SCSI subsystem initialized
[ 0.983378] b43-pci-bridge 0000:03:00.0: power state changed by ACPI to D0
[ 0.983603] b43-pci-bridge 0000:03:00.0: PCI INT A -> Link[Z00F] -> GSI 23 (level, low) -> IRQ 23
[ 0.983681] b43-pci-bridge 0000:03:00.0: setting latency timer to 64
[ 0.987053] firewire_ohci 0000:04:00.0: PCI INT A -> Link[Z00J] -> GSI 22 (level, low) -> IRQ 22
[ 0.987135] firewire_ohci 0000:04:00.0: setting latency timer to 64
[ 0.988307] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.988701] ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 18
[ 0.988764] alloc irq_desc for 18 on node -1
[ 0.988766] alloc kstat_irqs on node -1
[ 0.988772] ohci_hcd 0000:00:04.0: PCI INT A -> Link[LUS0] -> GSI 18 (level, low) -> IRQ 18
[ 0.988854] ohci_hcd 0000:00:04.0: setting latency timer to 64
[ 0.988856] ohci_hcd 0000:00:04.0: OHCI Host Controller
[ 0.988966] ohci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 3
[ 0.989056] ohci_hcd 0000:00:04.0: irq 18, io mem 0xd3488000
[ 1.001231] libata version 3.00 loaded.
[ 1.028169] ssb: ERROR: PLL init unknown for device 4322
[ 1.028232] ssb: ERROR: PMU resource config unknown for device 4322
[ 1.042016] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.042077] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.042148] usb usb3: Product: OHCI Host Controller
[ 1.042207] usb usb3: Manufacturer: Linux 2.6.32-rc8 ohci_hcd
[ 1.042267] usb usb3: SerialNumber: 0000:00:04.0
[ 1.042376] usb usb3: configuration #1 chosen from 1 choice
[ 1.042458] hub 3-0:1.0: USB hub found
[ 1.042523] hub 3-0:1.0: 7 ports detected
[ 1.042684] ahci 0000:00:0b.0: version 3.0
[ 1.043030] ACPI: PCI Interrupt Link [LSI0] enabled at IRQ 17
[ 1.043092] alloc irq_desc for 17 on node -1
[ 1.043094] alloc kstat_irqs on node -1
[ 1.043100] ahci 0000:00:0b.0: PCI INT A -> Link[LSI0] -> GSI 17 (level, low) -> IRQ 17
[ 1.043197] alloc irq_desc for 26 on node -1
[ 1.043198] alloc kstat_irqs on node -1
[ 1.043205] ahci 0000:00:0b.0: irq 26 for MSI/MSI-X
[ 1.043254] ahci 0000:00:0b.0: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3 impl IDE mode
[ 1.043327] ahci 0000:00:0b.0: flags: 64bit ncq sntf pm led pmp pio slum part boh
[ 1.043399] ahci 0000:00:0b.0: setting latency timer to 64
[ 1.043522] scsi0 : ahci
[ 1.043692] scsi1 : ahci
[ 1.043814] scsi2 : ahci
[ 1.043936] scsi3 : ahci
[ 1.044223] scsi4 : ahci
[ 1.044344] scsi5 : ahci
[ 1.044531] ata1: SATA max UDMA/133 abar m8192@0xd3484000 port 0xd3484100 irq 26
[ 1.051835] ata2: SATA max UDMA/133 abar m8192@0xd3484000 port 0xd3484180 irq 26
[ 1.051904] ata3: DUMMY
[ 1.051958] ata4: DUMMY
[ 1.052016] ata5: DUMMY
[ 1.052071] ata6: DUMMY
[ 1.052524] ACPI: PCI Interrupt Link [Z000] enabled at IRQ 16
[ 1.052585] alloc irq_desc for 16 on node -1
[ 1.052587] alloc kstat_irqs on node -1
[ 1.052591] ohci_hcd 0000:00:06.0: PCI INT A -> Link[Z000] -> GSI 16 (level, low) -> IRQ 16
[ 1.052670] ohci_hcd 0000:00:06.0: setting latency timer to 64
[ 1.052672] ohci_hcd 0000:00:06.0: OHCI Host Controller
[ 1.052771] ohci_hcd 0000:00:06.0: new USB bus registered, assigned bus number 4
[ 1.052857] ohci_hcd 0000:00:06.0: irq 16, io mem 0xd3487000
[ 1.056220] ssb: Sonics Silicon Backplane found on PCI device 0000:03:00.0
[ 1.060008] firewire_ohci: Added fw-ohci device 0000:04:00.0, OHCI version 1.10
[ 1.110004] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.110066] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.110136] usb usb4: Product: OHCI Host Controller
[ 1.110193] usb usb4: Manufacturer: Linux 2.6.32-rc8 ohci_hcd
[ 1.110253] usb usb4: SerialNumber: 0000:00:06.0
[ 1.110351] usb usb4: configuration #1 chosen from 1 choice
[ 1.110433] hub 4-0:1.0: USB hub found
[ 1.110496] hub 4-0:1.0: 5 ports detected
[ 1.128008] usb 1-4: new high speed USB device using ehci_hcd and address 2
[ 1.219280] ACPI: PCI Interrupt Link [LPMU] enabled at IRQ 23
[ 1.219343] nvidia 0000:00:03.5: PCI INT B -> Link[LPMU] -> GSI 23 (level, low) -> IRQ 23
[ 1.219419] nvidia: probe of 0000:00:03.5 failed with error -1
[ 1.219801] ACPI: PCI Interrupt Link [LGPU] enabled at IRQ 22
[ 1.219862] nvidia 0000:02:00.0: PCI INT A -> Link[LGPU] -> GSI 22 (level, low) -> IRQ 22
[ 1.219937] nvidia 0000:02:00.0: setting latency timer to 64
[ 1.220052] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 190.42 Tue Oct 20 20:25:42 PDT 2009
[ 1.267837] usb 1-4: New USB device found, idVendor=05ac, idProduct=8507
[ 1.267900] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.267962] usb 1-4: Product: Built-in iSight
[ 1.268031] usb 1-4: Manufacturer: Apple Inc.
[ 1.268089] usb 1-4: SerialNumber:
[ 1.268210] usb 1-4: configuration #1 chosen from 1 choice
[ 1.536008] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 1.536080] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 1.538253] ata2.00: ATAPI: OPTIARC DVD RW AD-5960S, 2AP5, max UDMA/100, ATAPI AN
[ 1.540464] ata2.00: configured for UDMA/100
[ 1.560053] firewire_core: created device fw0: GUID 00264afffe1d5ea6, S800
[ 1.585333] ata1.00: ATA-8: TOSHIBA MK2555GSXF, FH105B, max UDMA/100
[ 1.585394] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 1.586250] ata1.00: configured for UDMA/100
[ 1.600084] scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK2555GS FH10 PQ: 0 ANSI: 5
[ 1.601787] scsi 1:0:0:0: CD-ROM OPTIARC DVD RW AD-5960S 2AP5 PQ: 0 ANSI: 5
[ 1.612343] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[ 1.612451] sd 0:0:0:0: [sda] Write Protect is off
[ 1.612513] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.612536] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.612706] sda:sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
[ 1.619400] Uniform CD-ROM driver Revision: 3.20
[ 1.619521] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 1.660011] usb 2-5: new high speed USB device using ehci_hcd and address 3
[ 1.702624] sda1 sda2 sda3 sda4
[ 1.703167] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.706278] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.706364] sr 1:0:0:0: Attached scsi generic sg1 type 5
[ 1.797323] usb 2-5: New USB device found, idVendor=05ac, idProduct=8403
[ 1.797387] usb 2-5: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[ 1.797448] usb 2-5: Product: Card Reader
[ 1.797506] usb 2-5: Manufacturer: Apple
[ 1.797563] usb 2-5: SerialNumber:
[ 1.797679] usb 2-5: configuration #1 chosen from 1 choice
[ 1.802534] Initializing USB Mass Storage driver...
[ 1.802694] scsi6 : SCSI emulation for USB Mass Storage devices
[ 1.802814] usbcore: registered new interface driver usb-storage
[ 1.802875] USB Mass Storage support registered.
[ 1.802980] usb-storage: device found at 3
[ 1.802981] usb-storage: waiting for device to settle before scanning
[ 2.023820] PM: Starting manual resume from disk
[ 2.100012] usb 3-5: new low speed USB device using ohci_hcd and address 2
[ 2.118119] kjournald starting. Commit interval 5 seconds
[ 2.118123] EXT3-fs: mounted filesystem with ordered data mode.
[ 2.314919] usb 3-5: New USB device found, idVendor=05ac, idProduct=8242
[ 2.314983] usb 3-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.315041] usb 3-5: Product: IR Receiver
[ 2.315099] usb 3-5: Manufacturer: Apple Computer, Inc.
[ 2.315226] usb 3-5: configuration #1 chosen from 1 choice
[ 2.628008] usb 3-6: new full speed USB device using ohci_hcd and address 3
[ 2.851872] usb 3-6: New USB device found, idVendor=05ac, idProduct=0236
[ 2.851934] usb 3-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.851996] usb 3-6: Product: Apple Internal Keyboard / Trackpad
[ 2.852059] usb 3-6: Manufacturer: Apple Inc.
[ 2.852161] usb 3-6: configuration #1 chosen from 1 choice
[ 3.164007] usb 4-1: new full speed USB device using ohci_hcd and address 2
[ 3.385822] usb 4-1: New USB device found, idVendor=0a5c, idProduct=4500
[ 3.385886] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.385948] usb 4-1: Product: BRCM2046 Hub
[ 3.386005] usb 4-1: Manufacturer: Apple Inc.
[ 3.386118] usb 4-1: configuration #1 chosen from 1 choice
[ 3.388841] hub 4-1:1.0: USB hub found
[ 3.391821] hub 4-1:1.0: 3 ports detected
[ 3.689797] usb 4-1.1: new full speed USB device using ohci_hcd and address 3
[ 3.812785] usb 4-1.1: New USB device found, idVendor=05ac, idProduct=8213
[ 3.812857] usb 4-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.812928] usb 4-1.1: Product: Bluetooth USB Host Controller
[ 3.812988] usb 4-1.1: Manufacturer: Apple Inc.
[ 3.813046] usb 4-1.1: SerialNumber:
[ 3.813166] usb 4-1.1: configuration #1 chosen from 1 choice
[ 4.262097] udev: starting version 147
[ 4.881982] Bluetooth: Core ver 2.15
[ 4.882318] NET: Registered protocol family 31
[ 4.882377] Bluetooth: HCI device and connection manager initialized
[ 4.882434] Bluetooth: HCI socket layer initialized
[ 4.968573] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 9 (20090903/nsrepair-132)
[ 4.968739] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 10 (20090903/nsrepair-132)
[ 4.968902] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 11 (20090903/nsrepair-132)
[ 4.969060] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 12 (20090903/nsrepair-132)
[ 4.981205] ACPI: Battery Slot [BAT0] (battery present)
[ 4.981667] ACPI: AC Adapter [ADP1] (off-line)
[ 5.020263] usbcore: registered new interface driver hiddev
[ 5.020469] usbcore: registered new interface driver usbhid
[ 5.020531] usbhid: v2.6:USB HID core driver
[ 5.395500] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 5.396325] input: bcm5974 as /devices/pci0000:00/0000:00:04.0/usb3/3-6/3-6:1.2/input/input5
[ 5.396439] usbcore: registered new interface driver bcm5974
[ 5.397716] Bluetooth: Generic Bluetooth USB driver ver 0.6
[ 5.397864] usbcore: registered new interface driver btusb
[ 5.401063] i2c i2c-0: nForce2 SMBus adapter at 0x2140
[ 5.401142] i2c i2c-1: nForce2 SMBus adapter at 0x2100
[ 5.401674] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 5.408667] ACPI: SSDT 00000000bfec9c18 002BC (v01 APPLE Cpu0Ist 00003000 INTL 20061109)
[ 5.409204] ACPI: SSDT 00000000bfec9918 002AD (v01 APPLE Cpu0Cst 00003001 INTL 20061109)
[ 5.410805] Monitor-Mwait will be used to enter C-1 state
[ 5.411013] Monitor-Mwait will be used to enter C-2 state
[ 5.411036] Monitor-Mwait will be used to enter C-3 state
[ 5.411043] Marking TSC unstable due to TSC halts in idle
[ 5.411190] processor LNXCPU:00: registered as cooling_device0
[ 5.411624] ACPI: SSDT 00000000bfec9f18 000C8 (v01 APPLE Cpu1Ist 00003000 INTL 20061109)
[ 5.411799] apple 0003:05AC:8242.0001: hiddev96,hidraw0: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:04.0-5/input0
[ 5.412064] ACPI: SSDT 00000000bfec8f18 00085 (v01 APPLE Cpu1Cst 00003000 INTL 20061109)
[ 5.412575] Switching to clocksource hpet
[ 5.412767] processor LNXCPU:01: registered as cooling_device1
[ 5.418128] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:04.0/usb3/3-6/3-6:1.0/input/input7
[ 5.418295] apple 0003:05AC:0236.0002: input,hidraw1: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:04.0-6/input0
[ 5.427831] apple 0003:05AC:0236.0003: hidraw2: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:04.0-6/input1
[ 5.429155] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 5.823653] Linux video capture interface: v2.00
[ 5.885153] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8507)
[ 5.890224] input: Built-in iSight as /devices/pci0000:00/0000:00:04.1/usb1/1-4/1-4:1.0/input/input8
[ 5.890346] usbcore: registered new interface driver uvcvideo
[ 5.890406] USB Video Class driver (v0.1.0)
[ 5.899533] applesmc: Apple MacBook Pro 5 detected:
[ 5.899594] applesmc: - Model with accelerometer
[ 5.899652] applesmc: - Model with light sensors and backlight
[ 5.906951] applesmc: - Model with 20 temperature sensors
[ 5.907789] applesmc: device has already been initialized (0xe0, 0xf8).
[ 5.907791] applesmc: device successfully initialized.
[ 5.908516] applesmc: 1 fans found.
[ 5.910460] input: applesmc as /devices/platform/applesmc.768/input/input9
[ 5.910613] Registered led device: smc::kbd_backlight
[ 5.910690] applesmc: driver successfully loaded.
[ 6.699638] ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
[ 6.699699] HDA Intel 0000:00:08.0: PCI INT A -> Link[LAZA] -> GSI 21 (level, low) -> IRQ 21
[ 6.699839] HDA Intel 0000:00:08.0: setting latency timer to 64
[ 6.804639] usb-storage: device scan complete
[ 6.806565] scsi 6:0:0:0: Direct-Access APPLE SD Card Reader 1.00 PQ: 0 ANSI: 0
[ 6.807153] sd 6:0:0:0: Attached scsi generic sg2 type 0
[ 6.808788] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[ 8.314186] Adding 3906240k swap on /dev/sda3. Priority:-1 extents:1 across:3906240k
[ 8.508096] EXT3 FS on sda4, internal journal
[ 8.673013] loop: module loaded
[ 8.755908] lib80211: common routines for IEEE802.11 drivers
[ 8.755971] lib80211_crypt: registered algorithm 'NULL'
[ 8.812379] b43-pci-bridge 0000:03:00.0: PCI INT A disabled
[ 8.862987] wl 0000:03:00.0: power state changed by ACPI to D0
[ 8.863219] wl 0000:03:00.0: PCI INT A -> Link[Z00F] -> GSI 23 (level, low) -> IRQ 23
[ 8.863297] wl 0000:03:00.0: setting latency timer to 64
[ 8.896974] lib80211_crypt: registered algorithm 'TKIP'
[ 8.897374] eth1: Broadcom BCM432b 802.11 Wireless Controller 5.10.91.9
[ 8.916149] udev: renamed network interface eth1 to eth2
[ 8.934271] nvidia_bl: Supported Nvidia graphics adapter 10de:0863:106b:00b9 detected
[ 9.458351] hfs: write access to a journaled filesystem is not supported, use the force option at your own risk, mounting read-only.
[ 12.202054] fuse init (API version 7.13)
[ 12.397328] applesmc: wait status failed: 5 != 0
[ 12.431850] applesmc: wait status failed: 5 != 0
[ 12.452357] applesmc: wait status failed: 5 != 0
[ 12.485226] applesmc: wait status failed: 5 != 0
[ 12.518093] applesmc: wait status failed: 5 != 0
[ 12.550960] applesmc: wait status failed: 5 != 0
[ 12.583826] applesmc: wait status failed: 5 != 0
[ 12.619341] applesmc: wait status failed: 5 != 0
[ 12.652209] applesmc: wait status failed: 5 != 0
[ 16.323649] input: ACPI Virtual Keyboard Device as /devices/virtual/input/input10
[ 30.769420] Bluetooth: L2CAP ver 2.14
[ 30.769504] Bluetooth: L2CAP socket layer initialized
[ 30.935951] Bluetooth: RFCOMM TTY layer initialized
[ 30.936065] Bluetooth: RFCOMM socket layer initialized
[ 30.936143] Bluetooth: RFCOMM ver 1.11
[ 31.271319] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 31.271387] Bluetooth: BNEP filters: protocol multicast
[ 31.393566] Bridge firewalling registered
[ 31.468658] Bluetooth: SCO (Voice Link) ver 0.6
[ 31.468739] Bluetooth: SCO socket layer initialized
[ 34.630667] applesmc: light sensor data length set to 10
[ 35.169216] lp: driver loaded but no devices found
[ 35.197692] ppdev: user-space parallel port driver
[ 40.089856] alloc irq_desc for 27 on node -1
[ 40.089864] alloc kstat_irqs on node -1
[ 40.089886] forcedeth 0000:00:0a.0: irq 27 for MSI/MSI-X
[ 40.090108] eth0: no link during initialization.
[ 40.091805] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 44.444007] eth2: no IPv6 routers present
[ 46.997379] hfs: filesystem is marked journaled, leaving read-only.
[ 86.139694] applesmc: wait status failed: 5 != 0
[ 86.174602] applesmc: wait status failed: 5 != 0
[ 86.208913] applesmc: wait status failed: 5 != 0
[ 86.242337] applesmc: wait status failed: 5 != 0
[ 86.275738] applesmc: wait status failed: 5 != 0
[ 86.309762] applesmc: wait status failed: 5 != 0
[ 86.343170] applesmc: wait status failed: 5 != 0
[ 86.380405] applesmc: wait status failed: 5 != 0
[ 86.413933] applesmc: wait status failed: 5 != 0