diff options
| author | Misty De Meo | 2012-07-16 16:26:47 -0500 | 
|---|---|---|
| committer | Misty De Meo | 2012-07-16 16:26:47 -0500 | 
| commit | 8f4469c781b41fb016e5f186d68661a66ffc0b3a (patch) | |
| tree | 0bc50aa923e671f92d911d419147d9f5b740d957 | |
| parent | 955692990287eec22709f907032a3d0d77d1e1fd (diff) | |
| download | homebrew-8f4469c781b41fb016e5f186d68661a66ffc0b3a.tar.bz2 | |
Add Ivy Bridge CPU family
Fixes #13434.
| -rw-r--r-- | Library/Homebrew/hardware.rb | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/Library/Homebrew/hardware.rb b/Library/Homebrew/hardware.rb index 426ab4c49..20794be0a 100644 --- a/Library/Homebrew/hardware.rb +++ b/Library/Homebrew/hardware.rb @@ -29,8 +29,10 @@ class Hardware        :nehalem      when 0x573B5EEC # Arrandale        :arrandale -    when 0x5490B78C -      :sandybridge # Sandy bridge +    when 0x5490B78C # Sandy Bridge +      :sandybridge +    when 0x1F65E835 # Ivy Bridge +      :ivybridge      else        :dunno      end | 
