Contribute
Register

SOLUCIONADO: Error DSDTSE ayuda

Status
Not open for further replies.
Joined
May 8, 2012
Messages
6
Mac
  1. 0
Classic Mac
  1. 0
Mobile Phone
  1. 0
hola estoy intentando tener audio por hdmi y tengo un error en el dsdtse, creo que es por un corchete pero no doy con la solución.
Captura de pantalla 2012-06-07 a la(s) 20.56.35.png

adjunto el dsdt
muchas gracias
 

Attachments

  • Captura de pantalla 2012-06-07 a la(s) 20.56.35.png
    Captura de pantalla 2012-06-07 a la(s) 20.56.35.png
    169.9 KB · Views: 216
  • dsdt.dsl
    186.2 KB · Views: 130
Re: Error DSDTSE ayuda

Alex_fraile said:
hola estoy intentando tener audio por hdmi y tengo un error en el dsdtse, creo que es por un corchete pero no doy con la solución.
Captura de pantalla 2012-06-07 a la(s) 20.56.35.png

adjunto el dsdt
muchas gracias
There are two mistakes in the PEGP paste
1. last } is missing
2. Method (_STA, 0, NotSerialized) is missing

Current attached dsdt:
Code:
456           Device (HDAU)
                {
                    Name (_ADR, One)
                    Method (_DSM, 4, NotSerialized)
                    {
                        Store (Package (0x02)
                            {
                                "hda-gfx", 
                                Buffer (0x0A)
                                {
                                    "onboard-1"
                                }
                            }, Local0)
                          DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
                        Return (Local0)
                    }
                }
473       {
                Return (0x0F)
            }

477       Method (_CRS, 0, NotSerialized)

Correct PEGP dsdt edit:
Code:
456            Device (HDAU)
                {
                    Name (_ADR, One)
                    Method (_DSM, 4, NotSerialized)
                    {
                        Store (Package (0x02)
                            {
                                "hda-gfx", 
                                Buffer (0x0A)
                                {
                                    "onboard-1"
                                }
                            }, Local0)
                        DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
                        Return (Local0)
                    }
473           }
Add       }
Add
Add       Method (_STA, 0, NotSerialized)
            {
                Return (0x0F)
            }

480       Method (_CRS, 0, NotSerialized)
 
Re: Error DSDTSE ayuda

toleda said:
Alex_fraile said:
hola estoy intentando tener audio por hdmi y tengo un error en el dsdtse, creo que es por un corchete pero no doy con la solución.
Captura de pantalla 2012-06-07 a la(s) 20.56.35.png

adjunto el dsdt
muchas gracias
There are two mistakes in the PEGP paste
1. last } is missing
2. Method (_STA, 0, NotSerialized) is missing

Current attached dsdt:
Code:
456           Device (HDAU)
                {
                    Name (_ADR, One)
                    Method (_DSM, 4, NotSerialized)
                    {
                        Store (Package (0x02)
                            {
                                "hda-gfx", 
                                Buffer (0x0A)
                                {
                                    "onboard-1"
                                }
                            }, Local0)
                          DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
                        Return (Local0)
                    }
                }
473       {
                Return (0x0F)
            }

477       Method (_CRS, 0, NotSerialized)

Correct PEGP dsdt edit:
Code:
456            Device (HDAU)
                {
                    Name (_ADR, One)
                    Method (_DSM, 4, NotSerialized)
                    {
                        Store (Package (0x02)
                            {
                                "hda-gfx", 
                                Buffer (0x0A)
                                {
                                    "onboard-1"
                                }
                            }, Local0)
                        DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
                        Return (Local0)
                    }
473           }
Add       }
Add
Add       Method (_STA, 0, NotSerialized)
            {
                Return (0x0F)
            }

480       Method (_CRS, 0, NotSerialized)

Muchas gracias¡¡ ahora no me da error. Lo consigo instalar sin problema pero al reiniciar sigo sin tener audio.
He visto que en el post "Lion HDMI Audio - Part 3b: Kext Edits - Nvidia" pone:

"This guide applies to Mac OS X 10.7.2 only.
10.7.2 Update: GT430 - DVI port working

yo tengo el lion 10.7.3 y una tarjeta gráfica Asus nVidia GT 430 1 Gb GDDR3, ¿me vale aunque tenga la verion 10.7.3?
Muchas gracias
 
Status
Not open for further replies.
Back
Top