Jump to content

how to change orange icons shows external disk in HS


ergot
 Share

6 posts in this topic

Recommended Posts

you need to edit dsdt to provide information

 

in my case 

Device (NVME)
                {
                    Name (_ADR, Zero)  // _ADR: Address
                    Name (_SUN, One)  // _SUN: Slot User Number
                    Method (_INI, 0, NotSerialized)  // _INI: Initialize
                    {
                        Store (0x0F, ^^H000._ADR)
                    }

                    Method (_DSM, 4, NotSerialized)  // _DSM: Device-Specific Method
                    {
                        If (LEqual (Arg2, Zero))
                        {
                            Return (Buffer (One)
                            {
                                 0x03                                           
                            })
                        }

                        Return (Package (0x0A)
                        {
                            "AAPL,slot-name", 
                            "Built In", 
                            "model", 
                            Buffer (0x16)
                            {
                                "Intel SSD 600p Series"
                            }, 

                            "built-in", 
                            Buffer (One)
                            {
                                 0x00                                           
                            }, 

                            "name", 
                            Buffer (0x22)
                            {
                                "Intel SSD 600p Series NVM Express"
                            }, 

                            "device_type", 
                            Buffer (0x10)
                            {
                                "NVMe Controller"
                            }
                        })
                    }
                }
            }

 

Link to comment
Share on other sites

 Share

×
×
  • Create New...