kikelodeon
Miembro reciente
kikelodeon:
http://www.osx86.net/view/1090-gma950-945_kexts.html
si te fijas la opcion mirror la tiene en off.
De todas maneras prueba a buscar algun kext compatible( no se si lo hay)
Un saludo.
ya lo veo ya de todos modos salen 2 resoluciones si te fijas una la del netbook y otra que pone 1920x1080 que es perfectamente la de un monitor :S si me ayudas a encontrarlo te lo agradeceria
encontre esto que es para activar el quartz extreme de la tarjeta con eso se consiguiria conectarlo a una pantalla externa
The patch for the GMA950 is well-known. There are no drivers for the GMA500 on Mac OS X, but to date no Eee's use the GMA500.
#!/bin/bash
# GMA Patch Version 20080708, by hagglebeef
# http://ipis-osx.wikidot.com/forum/t-91753/brightness-control
# Modified by diamondsw to remove references to a specific "Extensions" directory
# This script takes stock kexts, copies them, and patches the copies
# to include the device ID 0x27ae for the GMA950.
# The original kexts are not touched.
# This enables Quartz Extreme and Core Image on machines
# that show device ID 0x27ae in System Profiler.
# Make sure only root can run this script
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
exit 1
fi
# Copy stock kext; this way we keep the original as it is
rm -rf ./_AppleIntelIntegratedFramebuffer.kext
rm -rf ./_AppleIntelGMA950.kext
cp -r /System/Library/Extensions/AppleIntelIntegratedFramebuffer.kext ./_AppleIntelIntegratedFramebuffer.kext
cp -r /System/Library/Extensions/AppleIntelGMA950.kext ./_AppleIntelGMA950.kext
# Patch GMA950 ID 27ae into the drivers
perl -pi -e 's|\x86\x80\xA2\x27|\x86\x80\xAE\x27|g' ./_AppleIntelIntegratedFramebuffer.kext/AppleIntelIntegratedFramebuffer
perl -pi -e 's|\x86\x80\xA2\x27|\x86\x80\xAE\x27|g' ./_AppleIntelGMA950.kext/Contents/MacOS/AppleIntelGMA950
perl -pi -e 's|27A28086|27AE8086|g' ./_AppleIntelIntegratedFramebuffer.kext/Info.plist
perl -pi -e 's|27A28086|27AE8086|g' ./_AppleIntelGMA950.kext/Contents/Info.plist
#!/bin/bash
# GMA Patch Version 20080708, by hagglebeef
# http://ipis-osx.wikidot.com/forum/t-91753/brightness-control
# Modified by diamondsw to remove references to a specific "Extensions" directory
# This script takes stock kexts, copies them, and patches the copies
# to include the device ID 0x27ae for the GMA950.
# The original kexts are not touched.
# This enables Quartz Extreme and Core Image on machines
# that show device ID 0x27ae in System Profiler.
# Make sure only root can run this script
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
exit 1
fi
# Copy stock kext; this way we keep the original as it is
rm -rf ./_AppleIntelIntegratedFramebuffer.kext
rm -rf ./_AppleIntelGMA950.kext
cp -r /System/Library/Extensions/AppleIntelIntegratedFramebuffer.kext ./_AppleIntelIntegratedFramebuffer.kext
cp -r /System/Library/Extensions/AppleIntelGMA950.kext ./_AppleIntelGMA950.kext
# Patch GMA950 ID 27ae into the drivers
perl -pi -e 's|\x86\x80\xA2\x27|\x86\x80\xAE\x27|g' ./_AppleIntelIntegratedFramebuffer.kext/AppleIntelIntegratedFramebuffer
perl -pi -e 's|\x86\x80\xA2\x27|\x86\x80\xAE\x27|g' ./_AppleIntelGMA950.kext/Contents/MacOS/AppleIntelGMA950
perl -pi -e 's|27A28086|27AE8086|g' ./_AppleIntelIntegratedFramebuffer.kext/Info.plist
perl -pi -e 's|27A28086|27AE8086|g' ./_AppleIntelGMA950.kext/Contents/Info.plist
Última edición por un moderador: