Raspberry Pi 4:

"Broadcom BCM2711, Quad core Cortex-A72 (ARM v8) 64-bit SoC @ 1.5GHz"

Note to self: boot partition - config.txt

The raspberry pi 4 supports vulkan. It could possibly run ermine with effort.

(https://www.zdnet.com/article/raspberry-pi-4-graphics-win-open-source-vulkan-driver-support-is-coming/)

Change-Id: Ic58e87704a2a4d53bdf85816328126d652eec9ae
diff --git a/boards/pi4.gni b/boards/pi4.gni
new file mode 100644
index 0000000..db47011
--- /dev/null
+++ b/boards/pi4.gni
@@ -0,0 +1,20 @@
+# Copyright 2019 The Fuchsia Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//boards/arm64.gni")
+
+board_name = "pi4"
+
+board_package_labels = [
+  "//garnet/bin/thermd",
+  "//garnet/bin/thermd:config",
+
+  # Include all drivers for now.
+  "//garnet/packages/prod:drivers",
+  "//src/media/audio/bundles:virtual_audio_driver",
+]
+
+# partitions
+zircon_a_partition = "boot"
+zircon_r_partition = "recovery"
\ No newline at end of file