|
Size: 4510
Comment:
|
Size: 4510
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 20: | Line 20: |
| As of linux-2.6 2.6.17-8, one patch should be applied to the linux-2.6 package: | As of linux-2.6 2.6.17-9, one patch should be applied to the linux-2.6 package: |
This page describes how to install Debian on a MacBook Pro.
The first step is to install and run [http://www.apple.com/macosx/bootcamp/ Boot Camp]. You can skip the step that allows you to create a Macintosh Drivers CD. At the Start Windows XP Installation step, you should insert a Debian installation CD.
If you press return at the ISOLINUX prompt, the kernel may panic while enabling the IO-APIC IRQs ([http://bugs.debian.org/381719 bug 381719]). To avoid this, enter "install noapic" at the ISOLINUX prompt.
When you reach the "Install the GRUB boot loader on a hard disk" step, switch to the second virtual console by pressing ctrl-option-F2, press return to start the shell, and then enter
chroot /target apt-get install refit /target/sbin/gptsync /dev/sda
and enter y at the prompt.
Switch back to the first virtual console by pressing ctrl-option-F1 and select <Go Back> in response to the "Install the GRUB boot loader to the master boot record". Choose "Install the LILO boot loader on a hard disk" from the main menu and choose /dev/sda for the LILO installation target.
Kernel
As of linux-2.6 2.6.17-9, one patch should be applied to the linux-2.6 package:
[http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff_plain;h=9effa978f1d51f6d0426ebabcf6cb32336bb3153;hp=73e487fdb75f8abf230968dbf73a3dc3b16808d3 Make the appletouch driver support the MacBook Pro touchpad] ([http://bugs.debian.org/382298 bug 382298])
and following configuration option should be set:
CONFIG_USB_APPLETOUCH=m
Once you've installed such a kernel, you'll need to ensure that the appletouch module is loaded before the usbhid module. You can do so by creating a file in /etc/modprobe.d that contains the following line:
install usbhid /sbin/modprobe appletouch && /sbin/modprobe --ignore-install usbhid $CMDLINE_OPTS
Using stock kernel and patch from svn
You can build your own kernel using the stock Linux kernel and the patches found in the [http://svn.sourceforge.net/viewvc/mactel-linux/trunk/ mactel-linux SVN]. Here is the steps to follow:
- download the source for the stock kernel from one of the kernel mirror,
- get the mactel-linux patches with svn:
svn co https://svn.sourceforge.net/svnroot/mactel-linux/trunk mactel-linux-trunk
- apply all the mactel-linux patches:
cd mactel-linux-trunk/kernel/mactel-patches-2.6.17 vi version.patch # if you are patching a kernel different than the svn one ./apply /where/you/have/the/kernel/sources
copy the config from the svn (trunk/kernel/mactel-patches-2.6.17/config-2.6.17-MBP) to your kernel dir, with name .config,
configure your kernel with make menuconfig, and control that CONFIG_FB_IMAC is not set,
build your kernel (fakeroot make-kpkg ...,
install your kernel (dpkg --install ...),
- reboot.
X Windows System
To use the X Windows System, install the non-free fglrx-driver package and, in the Device section of /etc/X11/xorg.conf, change the driver from "ati" to "fglrx".
Edit /etc/X11/xorg.conf and in the Module section, add the following line:
Load "synaptics"
Replace the contents of the ?InputDevice section with the "Configured Mouse" identifier with the following:
Identifier "Configured Mouse"
Driver "synaptics"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "MinSpeed" "1.0"
Option "MaxSpeed" "1.0"Once this is done, tapping the touchpad with two fingers should generate a middle-button click and tapping it with three fingers will generate a right-button click.
Note To have it working, you need to have a kernel with at least:
- CONFIG_INPUT_MOUSEDEV_PSAUX=y
- CONFIG_INPUT_EVDEV=y
- CONFIG_USB_HID=m
- CONFIG_USB_APPLETOUCH=m
Plan
Here's what needs to be done:
- Figure out how to use a free software graphics driver for the X Windows System.
- Figure out how to make tapping the touchpad with a single finger generate a left-button click.
- Figure out how to install ELILO.
- Figure out how to make the touchpad speed default to a usable value.
- Figure out how to suspend and resume.
- Figure out how to use the remote control.
