3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #84732 from cleverca22/fix-rpi-platforms

device-tree_rpi: fix platforms
This commit is contained in:
Graham Christensen 2020-04-08 12:43:30 -04:00 committed by GitHub
commit ab931c607b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,4 +30,7 @@ stdenvNoCC.mkDerivation {
# Compatible overlays that may be used
overlays = "${raspberrypifw}/share/raspberrypi/boot/overlays";
};
meta = with stdenvNoCC.lib; {
platforms = [ "armv6l-linux" "armv7l-linux" "aarch64-linux" ];
};
}