diff --git a/_multibuild b/_multibuild
index 8d9c72b..c837226 100644
--- a/_multibuild
+++ b/_multibuild
@@ -69,6 +69,7 @@
rpi
rpi2
rpi3
+ rpi4
sifivefu540
snow
socfpgade0nanosoc
diff --git a/u-boot.changes b/u-boot.changes
index 8ca648a..415dd27 100644
--- a/u-boot.changes
+++ b/u-boot.changes
@@ -1,3 +1,8 @@
+-------------------------------------------------------------------
+Wed Oct 9 08:08:32 UTC 2019 - Matthias Brugger
+
+- Enable RaspberryPi4 builds
+
-------------------------------------------------------------------
Tue Oct 8 19:19:43 UTC 2019 - Guillaume GARDET
diff --git a/u-boot.spec b/u-boot.spec
index 0acd2d1..5448007 100644
--- a/u-boot.spec
+++ b/u-boot.spec
@@ -41,7 +41,7 @@
%define is_riscv64 0
%define tools_only 0
-%if "%target" == "rpi" || "%target" == "rpi2" || "%target" == "rpi3"
+%if "%target" == "rpi" || "%target" == "rpi2" || "%target" == "rpi3" || "%target" == "rpi4"
%define is_rpi 1
%if "%target" == "rpi"
%define is_armv6 1
@@ -49,7 +49,7 @@
%if "%target" == "rpi2"
%define is_armv7 1
%endif
-%if "%target" == "rpi3"
+%if "%target" == "rpi3" || "%target" == "rpi4"
%define is_armv8 1
%endif
%endif