* http://download.ts.fujitsu.com/prim_supportcd/SVSSoftware/Software/Deployment/PRIMERGY%20Scripting/PRIMERGY%20Scripting%20Toolkit.msi
    (DOS utilities (spman.exe))
 
+Buster JRE:
+ * https://upload.glanzmann.de/oracle-java8-jre_8u241_amd64.deb
+
 How to flash:
  * Download the firmware from:
    http://support.ts.fujitsu.com/Download/ShowDescription.asp?SoftwareGUID=6DB401B3-B0BD-43CB-A3AA-6278B23FBCB0
 
        my @sections = ();
        while(<INIFILE>) {
                chomp;
-       
+
                next if (m/^#/);
-       
+
                if (m/^\s*\[(.*)\]\s*$/) {
                        push @sections, $1;
                        next;
                }
-       
+
                if (@sections) {
                        if (m/^\s*([^=]+)\s*=\s*(.*)\s*$/) {
                                ${$Ini{$sections[$#sections]}}{$1} = $2;