diff --git a/package/gluon-autoupdater/files/usr/sbin/autoupdater b/package/gluon-autoupdater/files/usr/sbin/autoupdater
index 40c5275087058110eadd94899fce408222c2595a..641e437b7bcd1de038b27d8056c50cfaa301c0cb 100755
--- a/package/gluon-autoupdater/files/usr/sbin/autoupdater
+++ b/package/gluon-autoupdater/files/usr/sbin/autoupdater
@@ -138,6 +138,10 @@ autoupdate() {
   if newer_than "$fw_version" "$my_version"; then
     echo "New version available"
 
+    # drop caches to make room for firmware image
+    sync
+    sysctl -w vm.drop_caches=3
+
     local fw_image=$(mktemp)
     fetch_firmware $MIRROR $fw_image || { rm -f $fw_image; return 1; }