Remove the memsize check for lockdown bootloader.

We had a check here to prevent older evt2 devices from getting the
new bootloader, but evt2 are no longer being used and this check
is causing issues with evt3s that inadvertently have and old
bootloader that limits the ram to 2gb.

Change-Id: Iaee263ef9be43159740e7a57ee25a0592aeb6e12
diff --git a/ginstall/ginstall.py b/ginstall/ginstall.py
index 1d233c6..fd95163 100755
--- a/ginstall/ginstall.py
+++ b/ginstall/ginstall.py
@@ -771,10 +771,6 @@
   Raises:
     Fatal: if install fails
   """
-  if GetPlatform() == 'GFHD254' and GetMemTotal() < 4*1e9:
-    print 'Skipping bootloader on 2GB lockdown.'
-    return
-
   loader_start = loader.filelike.tell()
   installed = False
   for i in ['cfe', 'loader', 'loader0', 'loader1', 'flash0.bolt']: