Skip to content

Commit 5c4fa41

Browse files
committedJul 10, 2017
Merge a lib change into staging
2 parents bfb7ef8 + 0246466 commit 5c4fa41

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎lib/systems/inspect.nix

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ rec {
88
"64bit" = { cpu = { bits = 64; }; };
99
i686 = { cpu = cpuTypes.i686; };
1010
x86_64 = { cpu = cpuTypes.x86_64; };
11+
PowerPC = { cpu = cpuTypes.powerpc; };
1112
x86 = { cpu = { family = "x86"; }; };
1213
Arm = { cpu = { family = "arm"; }; };
1314
Mips = { cpu = { family = "mips"; }; };

‎lib/systems/parse.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ rec {
4444
i686 = { bits = 32; significantByte = littleEndian; family = "x86"; };
4545
x86_64 = { bits = 64; significantByte = littleEndian; family = "x86"; };
4646
mips64el = { bits = 32; significantByte = littleEndian; family = "mips"; };
47-
powerpc = { bits = 32; significantByte = bigEndian; family = "powerpc"; };
47+
powerpc = { bits = 32; significantByte = bigEndian; family = "power"; };
4848
};
4949

5050
isVendor = isType "vendor";

0 commit comments

Comments
 (0)
Please sign in to comment.